From a3d43441131f117498a5aea8794fd58003e73338 Mon Sep 17 00:00:00 2001 From: dominik-zeglen Date: Wed, 25 Sep 2019 11:26:46 +0200 Subject: [PATCH 01/23] Add data-tc tags --- .../AttributeList/AttributeList.tsx | 33 +++++++++++++++---- src/attributes/queries.ts | 5 +++ src/attributes/types/AttributeList.ts | 8 +++++ .../components/CategoryList/CategoryList.tsx | 6 ++-- .../CollectionList/CollectionList.tsx | 10 ++++-- .../ProductTypeAttributes.tsx | 14 ++++++-- .../ProductTypeList/ProductTypeList.tsx | 4 ++- 7 files changed, 66 insertions(+), 14 deletions(-) diff --git a/src/attributes/components/AttributeList/AttributeList.tsx b/src/attributes/components/AttributeList/AttributeList.tsx index 715a2badb..17afe3b17 100644 --- a/src/attributes/components/AttributeList/AttributeList.tsx +++ b/src/attributes/components/AttributeList/AttributeList.tsx @@ -13,7 +13,7 @@ import Skeleton from "@saleor/components/Skeleton"; import TableHead from "@saleor/components/TableHead"; import TablePagination from "@saleor/components/TablePagination"; import { translateBoolean } from "@saleor/intl"; -import { renderCollection } from "@saleor/misc"; +import { maybe, renderCollection } from "@saleor/misc"; import { ListActions, ListProps } from "@saleor/types"; import { AttributeList_attributes_edges_node } from "../../types/AttributeList"; @@ -139,6 +139,11 @@ const AttributeList: React.StatelessComponent = ({ key={attribute ? attribute.id : "skeleton"} onClick={attribute && onRowClick(attribute.id)} className={classes.link} + data-tc="id" + data-tc-id={maybe(() => attribute.id)} + data-tc-values={JSON.stringify( + maybe(() => attribute.values, []) + )} > = ({ onChange={() => toggle(attribute.id)} /> - + {attribute ? attribute.slug : } - + {attribute ? attribute.name : } - + attribute.visibleInStorefront)} + > {attribute ? ( translateBoolean(attribute.visibleInStorefront, intl) ) : ( )} - + attribute.filterableInDashboard + )} + > {attribute ? ( translateBoolean(attribute.filterableInDashboard, intl) ) : ( )} - + attribute.filterableInStorefront + )} + > {attribute ? ( translateBoolean(attribute.filterableInStorefront, intl) ) : ( diff --git a/src/attributes/queries.ts b/src/attributes/queries.ts index 66f82d08d..f8850d581 100644 --- a/src/attributes/queries.ts +++ b/src/attributes/queries.ts @@ -72,6 +72,11 @@ const attributeList = gql` edges { node { ...AttributeFragment + values { + id + name + slug + } } } pageInfo { diff --git a/src/attributes/types/AttributeList.ts b/src/attributes/types/AttributeList.ts index d5f296707..ad5050ce5 100644 --- a/src/attributes/types/AttributeList.ts +++ b/src/attributes/types/AttributeList.ts @@ -8,6 +8,13 @@ import { AttributeFilterInput } from "./../../types/globalTypes"; // GraphQL query operation: AttributeList // ==================================================== +export interface AttributeList_attributes_edges_node_values { + __typename: "AttributeValue"; + id: string; + name: string | null; + slug: string | null; +} + export interface AttributeList_attributes_edges_node { __typename: "Attribute"; id: string; @@ -16,6 +23,7 @@ export interface AttributeList_attributes_edges_node { visibleInStorefront: boolean; filterableInDashboard: boolean; filterableInStorefront: boolean; + values: (AttributeList_attributes_edges_node_values | null)[] | null; } export interface AttributeList_attributes_edges { diff --git a/src/categories/components/CategoryList/CategoryList.tsx b/src/categories/components/CategoryList/CategoryList.tsx index dc18b965a..5ae05489e 100644 --- a/src/categories/components/CategoryList/CategoryList.tsx +++ b/src/categories/components/CategoryList/CategoryList.tsx @@ -17,7 +17,7 @@ import Checkbox from "@saleor/components/Checkbox"; import Skeleton from "@saleor/components/Skeleton"; import TableHead from "@saleor/components/TableHead"; import TablePagination from "@saleor/components/TablePagination"; -import { renderCollection } from "@saleor/misc"; +import { maybe, renderCollection } from "@saleor/misc"; import { ListActions, ListProps } from "@saleor/types"; const styles = (theme: Theme) => @@ -126,6 +126,8 @@ const CategoryList = withStyles(styles, { name: "CategoryList" })( onClick={category ? onRowClick(category.id) : undefined} key={category ? category.id : "skeleton"} selected={isSelected} + data-tc="id" + data-tc-id={maybe(() => category.id)} > toggle(category.id)} /> - + {category && category.name ? category.name : } diff --git a/src/collections/components/CollectionList/CollectionList.tsx b/src/collections/components/CollectionList/CollectionList.tsx index 68d7302df..aeca0420e 100644 --- a/src/collections/components/CollectionList/CollectionList.tsx +++ b/src/collections/components/CollectionList/CollectionList.tsx @@ -122,6 +122,8 @@ const CollectionList = withStyles(styles, { name: "CollectionList" })( onClick={collection ? onRowClick(collection.id) : undefined} key={collection ? collection.id : "skeleton"} selected={isSelected} + data-tc="id" + data-tc-id={maybe(() => collection.id)} > toggle(collection.id)} /> - + {maybe( () => collection.name, @@ -143,7 +145,11 @@ const CollectionList = withStyles(styles, { name: "CollectionList" })( )} - + collection.isPublished)} + > {maybe( () => ( + attribute.id)} index={attributeIndex || 0} + data-tc="id" + data-tc-id={maybe(() => attribute.id)} > toggle(attribute.id)} /> - + {maybe(() => attribute.name) ? ( attribute.name ) : ( )} - + {maybe(() => attribute.slug) ? ( attribute.slug ) : ( diff --git a/src/productTypes/components/ProductTypeList/ProductTypeList.tsx b/src/productTypes/components/ProductTypeList/ProductTypeList.tsx index 536ec3b90..05cbb2825 100644 --- a/src/productTypes/components/ProductTypeList/ProductTypeList.tsx +++ b/src/productTypes/components/ProductTypeList/ProductTypeList.tsx @@ -124,6 +124,8 @@ const ProductTypeList = withStyles(styles, { name: "ProductTypeList" })( key={productType ? productType.id : "skeleton"} onClick={productType ? onRowClick(productType.id) : undefined} selected={isSelected} + data-tc="id" + data-tc-id={maybe(() => productType.id)} > {productType ? ( <> - {productType.name} + {productType.name} {maybe(() => productType.hasVariants) ? intl.formatMessage({ From 8b7e92b39210a440291c33cf41d485cd88621712 Mon Sep 17 00:00:00 2001 From: dominik-zeglen Date: Wed, 25 Sep 2019 11:27:59 +0200 Subject: [PATCH 02/23] Update snapshots --- .../__snapshots__/Stories.test.ts.snap | 266 +++++++++++++++++- 1 file changed, 261 insertions(+), 5 deletions(-) diff --git a/src/storybook/__snapshots__/Stories.test.ts.snap b/src/storybook/__snapshots__/Stories.test.ts.snap index ff25993c7..cedf09a8c 100644 --- a/src/storybook/__snapshots__/Stories.test.ts.snap +++ b/src/storybook/__snapshots__/Stories.test.ts.snap @@ -10868,6 +10868,9 @@ exports[`Storyshots Views / Attributes / Attribute list default 1`] = ` > author Author Yes Yes No box-size Box Size No Yes No brand Brand No No Yes candy-box-size Candy Box Size No Yes Yes coffee-genre Coffee Genre Yes Yes Yes collar Collar Yes No Yes color Color Yes No No cover Cover No Yes No flavor Flavor Yes Yes Yes language Language Yes No Yes publisher Publisher Yes Yes Yes size Size Yes Yes Yes @@ -11675,6 +11807,8 @@ exports[`Storyshots Views / Attributes / Attribute list loading 1`] = ` > Lorem ipsum dolor @@ -13279,6 +13421,8 @@ exports[`Storyshots Views / Categories / Category list default 1`] = ` Mauris vehicula tortor vulputate @@ -13313,6 +13458,8 @@ exports[`Storyshots Views / Categories / Category list default 1`] = ` Excepteur sint occaecat cupidatat non proident @@ -13347,6 +13495,8 @@ exports[`Storyshots Views / Categories / Category list default 1`] = ` Ut enim ad minim veniam @@ -13381,6 +13532,8 @@ exports[`Storyshots Views / Categories / Category list default 1`] = ` Duis aute irure dolor in reprehenderit @@ -13415,6 +13569,8 @@ exports[`Storyshots Views / Categories / Category list default 1`] = ` Neque porro quisquam est @@ -14051,6 +14208,7 @@ exports[`Storyshots Views / Categories / Category list loading 1`] = ` > Summer collection @@ -25287,6 +25451,8 @@ exports[`Storyshots Views / Collections / Collection list default 1`] = `
Winter sale @@ -25325,6 +25494,8 @@ exports[`Storyshots Views / Collections / Collection list default 1`] = `
Vintage vibes @@ -25363,6 +25537,8 @@ exports[`Storyshots Views / Collections / Collection list default 1`] = `
Merry Christmas @@ -25401,6 +25580,8 @@ exports[`Storyshots Views / Collections / Collection list default 1`] = `
80s Miami @@ -25439,6 +25623,8 @@ exports[`Storyshots Views / Collections / Collection list default 1`] = `
Yellow Submarine 2019 @@ -25477,6 +25666,8 @@ exports[`Storyshots Views / Collections / Collection list default 1`] = `
Author author @@ -78889,6 +79088,8 @@ exports[`Storyshots Views / Product types / Product type details default 1`] = ` Language language @@ -78984,6 +79187,8 @@ exports[`Storyshots Views / Product types / Product type details default 1`] = ` Publisher publisher @@ -79367,6 +79574,7 @@ exports[`Storyshots Views / Product types / Product type details form errors 1`] />
Author author @@ -79545,6 +79757,8 @@ exports[`Storyshots Views / Product types / Product type details form errors 1`] Language language @@ -79640,6 +79856,8 @@ exports[`Storyshots Views / Product types / Product type details form errors 1`] Publisher publisher @@ -80024,6 +80244,7 @@ exports[`Storyshots Views / Product types / Product type details loading 1`] = ` />
- Candy + + Candy + @@ -80973,6 +81204,8 @@ exports[`Storyshots Views / Product types / Product types list default 1`] = ` - E-books + + E-books + @@ -81012,6 +81249,8 @@ exports[`Storyshots Views / Product types / Product types list default 1`] = ` - Mugs + + Mugs + @@ -81051,6 +81294,8 @@ exports[`Storyshots Views / Product types / Product types list default 1`] = ` - Coffee + + Coffee + @@ -81090,6 +81339,8 @@ exports[`Storyshots Views / Product types / Product types list default 1`] = ` - T-Shirt + + T-Shirt + @@ -81396,6 +81651,7 @@ exports[`Storyshots Views / Product types / Product types list loading 1`] = ` > Date: Wed, 25 Sep 2019 11:29:40 +0200 Subject: [PATCH 03/23] Update changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index d6de444ff..c85282781 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,3 +24,4 @@ All notable, unreleased changes to this project will be documented in this file. - Add search bars - #172 by @dominik-zeglen - Add sorting to product list - #173 by @dominik-zeglen - Add Heroku integration - #175 by @bogdal +- Add testcafe tags to attributes, categories, collections and product types - #178 by @dominik-zeglen From 3db58aa9693ee4ce47ed7fce41c35c00cb824d64 Mon Sep 17 00:00:00 2001 From: Krzysztof Bialoglowicz Date: Thu, 26 Sep 2019 10:24:13 +0200 Subject: [PATCH 04/23] Fix menu item hover --- src/components/AppLayout/MenuList.tsx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/components/AppLayout/MenuList.tsx b/src/components/AppLayout/MenuList.tsx index 30dbfb43d..362bde67a 100644 --- a/src/components/AppLayout/MenuList.tsx +++ b/src/components/AppLayout/MenuList.tsx @@ -44,10 +44,16 @@ const styles = (theme: Theme) => boxShadow: "0px 0px 12px 1px rgba(0,0,0,0.2)" }, menuItemHover: { + "& p": { + transition: "color 0.5s ease" + }, "& path": { transition: "fill 0.5s ease" }, "&:hover": { + "& p": { + color: theme.palette.primary.main + }, "& path": { fill: theme.palette.primary.main }, From f916e5ec45bdaff2c15e3770d4bbd62fae3860e4 Mon Sep 17 00:00:00 2001 From: Krzysztof Bialoglowicz Date: Thu, 26 Sep 2019 10:27:42 +0200 Subject: [PATCH 05/23] Fix menu icons --- assets/images/menu-catalog-icon.svg | 4 ++-- assets/images/menu-configure-icon.svg | 4 ++-- assets/images/menu-customers-icon.svg | 4 ++-- assets/images/menu-discounts-icon.svg | 4 ++-- assets/images/menu-home-icon.svg | 4 ++-- assets/images/menu-orders-icon.svg | 4 ++-- 6 files changed, 12 insertions(+), 12 deletions(-) diff --git a/assets/images/menu-catalog-icon.svg b/assets/images/menu-catalog-icon.svg index e0493e429..6b67b5aac 100644 --- a/assets/images/menu-catalog-icon.svg +++ b/assets/images/menu-catalog-icon.svg @@ -1,3 +1,3 @@ - - + + diff --git a/assets/images/menu-configure-icon.svg b/assets/images/menu-configure-icon.svg index c4c51120c..c1defe727 100644 --- a/assets/images/menu-configure-icon.svg +++ b/assets/images/menu-configure-icon.svg @@ -1,3 +1,3 @@ - - + + diff --git a/assets/images/menu-customers-icon.svg b/assets/images/menu-customers-icon.svg index d4c59accf..b46a2fc1e 100644 --- a/assets/images/menu-customers-icon.svg +++ b/assets/images/menu-customers-icon.svg @@ -1,3 +1,3 @@ - - + + diff --git a/assets/images/menu-discounts-icon.svg b/assets/images/menu-discounts-icon.svg index eec576e2b..6f15dce79 100644 --- a/assets/images/menu-discounts-icon.svg +++ b/assets/images/menu-discounts-icon.svg @@ -1,3 +1,3 @@ - - + + diff --git a/assets/images/menu-home-icon.svg b/assets/images/menu-home-icon.svg index 034cdd320..f91bd00a1 100644 --- a/assets/images/menu-home-icon.svg +++ b/assets/images/menu-home-icon.svg @@ -1,3 +1,3 @@ - - + + diff --git a/assets/images/menu-orders-icon.svg b/assets/images/menu-orders-icon.svg index d7204b499..1e97d098d 100644 --- a/assets/images/menu-orders-icon.svg +++ b/assets/images/menu-orders-icon.svg @@ -1,3 +1,3 @@ - - + + From 291c53683eb6c0edf5cca0eb7d6c221455424d87 Mon Sep 17 00:00:00 2001 From: Krzysztof Bialoglowicz Date: Thu, 26 Sep 2019 10:54:53 +0200 Subject: [PATCH 06/23] Add bar when menu opended --- src/components/AppLayout/MenuList.tsx | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/components/AppLayout/MenuList.tsx b/src/components/AppLayout/MenuList.tsx index 362bde67a..1a1870b47 100644 --- a/src/components/AppLayout/MenuList.tsx +++ b/src/components/AppLayout/MenuList.tsx @@ -107,6 +107,14 @@ const styles = (theme: Theme) => top: 15, width: 0 }, + "&:before": { + borderLeft: `solid 2px ${theme.palette.primary.main}`, + content: "''", + height: 33, + left: -25, + position: "absolute", + top: 8 + }, position: "relative" }, menuListItemText: { From eded02232af3d0fa52482aa71e18312709f4430a Mon Sep 17 00:00:00 2001 From: dominik-zeglen Date: Thu, 26 Sep 2019 13:01:08 +0200 Subject: [PATCH 07/23] Sync translations --- locale/ar.json | 2 +- locale/ar.po | 958 ++++++++++++++++++++++------------ locale/az.json | 2 +- locale/az.po | 958 ++++++++++++++++++++++------------ locale/bg.json | 2 +- locale/bg.po | 958 ++++++++++++++++++++++------------ locale/bn.json | 2 +- locale/bn.po | 958 ++++++++++++++++++++++------------ locale/ca.json | 2 +- locale/ca.po | 958 ++++++++++++++++++++++------------ locale/cs.json | 2 +- locale/cs.po | 958 ++++++++++++++++++++++------------ locale/da.json | 2 +- locale/da.po | 958 ++++++++++++++++++++++------------ locale/de.json | 2 +- locale/de.po | 958 ++++++++++++++++++++++------------ locale/el.json | 2 +- locale/el.po | 958 ++++++++++++++++++++++------------ locale/es.json | 2 +- locale/es.po | 966 ++++++++++++++++++++++------------ locale/es_CO.json | 2 +- locale/es_CO.po | 958 ++++++++++++++++++++++------------ locale/et.json | 2 +- locale/et.po | 1207 ++++++++++++++++++++++++++----------------- locale/fa.json | 2 +- locale/fa.po | 958 ++++++++++++++++++++++------------ locale/fr.json | 2 +- locale/fr.po | 1037 +++++++++++++++++++++++-------------- locale/hi.json | 2 +- locale/hi.po | 958 ++++++++++++++++++++++------------ locale/hu.json | 2 +- locale/hu.po | 958 ++++++++++++++++++++++------------ locale/hy.json | 2 +- locale/hy.po | 958 ++++++++++++++++++++++------------ locale/id.json | 2 +- locale/id.po | 958 ++++++++++++++++++++++------------ locale/is.json | 2 +- locale/is.po | 958 ++++++++++++++++++++++------------ locale/it.json | 2 +- locale/it.po | 958 ++++++++++++++++++++++------------ locale/ja.json | 2 +- locale/ja.po | 958 ++++++++++++++++++++++------------ locale/ko.json | 2 +- locale/ko.po | 958 ++++++++++++++++++++++------------ locale/mn.json | 2 +- locale/mn.po | 958 ++++++++++++++++++++++------------ locale/nb.json | 2 +- locale/nb.po | 958 ++++++++++++++++++++++------------ locale/nl.json | 2 +- locale/nl.po | 958 ++++++++++++++++++++++------------ locale/pl.json | 2 +- locale/pl.po | 958 ++++++++++++++++++++++------------ locale/pt.json | 2 +- locale/pt.po | 958 ++++++++++++++++++++++------------ locale/pt_BR.json | 2 +- locale/pt_BR.po | 958 ++++++++++++++++++++++------------ locale/ro.json | 2 +- locale/ro.po | 958 ++++++++++++++++++++++------------ locale/ru.json | 2 +- locale/ru.po | 958 ++++++++++++++++++++++------------ locale/sk.json | 2 +- locale/sk.po | 958 ++++++++++++++++++++++------------ locale/sl.json | 2 +- locale/sl.po | 958 ++++++++++++++++++++++------------ locale/sq.json | 2 +- locale/sq.po | 958 ++++++++++++++++++++++------------ locale/sr.json | 2 +- locale/sr.po | 958 ++++++++++++++++++++++------------ locale/sv.json | 2 +- locale/sv.po | 958 ++++++++++++++++++++++------------ locale/th.json | 2 +- locale/th.po | 958 ++++++++++++++++++++++------------ locale/tr.json | 2 +- locale/tr.po | 967 ++++++++++++++++++++++------------ locale/uk.json | 2 +- locale/uk.po | 958 ++++++++++++++++++++++------------ locale/vi.json | 2 +- locale/vi.po | 958 ++++++++++++++++++++++------------ locale/zh-Hans.json | 2 +- locale/zh-Hans.po | 958 ++++++++++++++++++++++------------ locale/zh-Hant.json | 2 +- locale/zh-Hant.po | 958 ++++++++++++++++++++++------------ 82 files changed, 25554 insertions(+), 14151 deletions(-) diff --git a/locale/ar.json b/locale/ar.json index 415714f89..48c97d9b3 100644 --- a/locale/ar.json +++ b/locale/ar.json @@ -1 +1 @@ -{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.350498821":"إضافة سمة","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.2519239682":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"الاسم","src.categories.components.CategoryProducts.636461959":"الاسم","src.collections.components.CollectionProducts.636461959":"الاسم","src.products.components.ProductDetailsForm.636461959":"الاسم","src.collections.components.CollectionDetails.636461959":"الاسم","src.components.ProductList.636461959":"الاسم","src.discounts.components.SaleInfo.636461959":"الاسم","src.discounts.components.SaleList.636461959":"الاسم","src.discounts.components.SaleSummary.636461959":"الاسم","menuItemDialogNameLabel":"الاسم","src.products.components.ProductVariants.636461959":"الاسم","src.shipping.components.ShippingZoneRates.636461959":"الاسم","src.shipping.components.ShippingZonesList.636461959":"الاسم","src.staff.components.StaffList.636461959":"الاسم","src.translations.components.TranslationsEntitiesList.636461959":"الاسم","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.254756045":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.3182284913":"","src.auth.components.LoginPage.109182747":"تسجيل الدخول","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"","src.categories.views.2004894945":"","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.3229914152":"","src.categories.components.CategoryList.435697837":"","src.categories.components.CategoryList.2159874182":"التصنيفات الفرعية","src.categories.components.CategoryUpdatePage.2159874182":"التصنيفات الفرعية","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.228151782":"إضافة تصنيف","src.categories.components.CategoryProducts.2968663655":"المنتجات","src.categories.components.CategoryUpdatePage.2968663655":"المنتجات","src.discounts.components.DiscountCategories.2968663655":"المنتجات","src.discounts.components.DiscountCollections.2968663655":"المنتجات","src.products":"المنتجات","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryProducts.3554578821":"أضف منتج","src.categories.components.CategoryProductsCard.3554578821":"أضف منتج","src.categories.components.CategoryProducts.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProducts.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.categories.components.CategoryProductsCard.4164156574":"","src.categories.views.1754466114":"","src.categories.views.1140231710":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.712767046":"","src.categories.views.299584400":"","src.categories.views.844574071":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.collections.components.CollectionCreatePage.3958681866":"إضافة مجموعة","src.collections.components.CollectionListPage.3958681866":"إضافة مجموعة","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"توافر","src.availability":"","src.collections.components.CollectionList.3640454975":"منشور","src.collections.components.CollectionProducts.3640454975":"منشور","src.discounts.components.DiscountProducts.3640454975":"منشور","src.components.ProductList.3640454975":"منشور","src.products.components.ProductListPage.3640454975":"منشور","src.pages.components.PageList.3640454975":"منشور","src.products.views.ProductList.published":"منشور","src.collections.components.CollectionList.2341910657":"غير منشور","src.collections.components.CollectionProducts.2341910657":"غير منشور","src.discounts.components.DiscountProducts.2341910657":"غير منشور","src.components.ProductList.2341910657":"غير منشور","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.686910896":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"","src.collections.views.2402899582":"","src.collections.views.2237014112":"عدم النشر","src.pages.views.2237014112":"عدم النشر","src.products.views.ProductList.2237014112":"عدم النشر","src.collections.views.1547167026":"نشر","src.pages.views.1547167026":"نشر","src.products.views.ProductList.1547167026":"نشر","src.collections.views.2823425739":"","src.collections.views.1348793822":"","src.collections.views.2637364047":"","src.collections.views.3944356444":"","src.collections.views.3817188998":"","src.collections.views.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"تسجيل خروج","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.4057224233":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"","src.components.ErrorMessageCard.2845142593":"","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.FilterBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"إضافة","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.ProductList.1134347598":"السعر","src.orders.components.OrderDraftDetailsProducts.1134347598":"السعر","src.orders.components.OrderFulfillment.1134347598":"السعر","src.products.components.ProductListPage.1134347598":"السعر","src.products.components.ProductPricing.1134347598":"السعر","src.orders.components.OrderUnfulfilledItems.1134347598":"السعر","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"السعر","src.shipping.components.ShippingZoneRates.1134347598":"السعر","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"وضوح","src.pages.components.PageList.1459686496":"وضوح","src.products.components.ProductListFilter.1459686496":"وضوح","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"مخفي","src.products.views.ProductList.hidden":"مخفي","src.components.VisibilityCard.1815688500":"","src.components.VisibilityCard.2001551496":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","configurationMenuStaff":"","configurationMenuShipping":"","configurationMenuTaxes":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","src.customers.components.CustomerAddress.1320082647":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"عنوان الفاتورة","src.customers.components.CustomerAddresses.3517722732":"عنوان الشحن","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"العنوان","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"ملاحظات ","src.orders.components.OrderCustomerNote.1520756907":"ملاحظات ","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"ملاحظة","src.customers.components.CustomerDetails.577013340":"ملاحظة","src.customers.components.CustomerCreatePage.1934221653":"أضف زبون","src.customers.components.CustomerListPage.1934221653":"أضف زبون","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerOrders.3878642352":"طلبات الشراء الحديثة","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"تاريخ","src.orders.components.OrderDraftList.4205493358":"تاريخ","src.orders.components.OrderList.4205493358":"تاريخ","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"الحالة","src.orders.components.OrderListFilter.1756106276":"الحالة","src.products.components.ProductListFilter.1756106276":"الحالة","src.products.components.ProductVariants.1756106276":"الحالة","src.customers.components.CustomerOrders.878013594":"المجموع","src.orders.components.OrderDraftDetailsProducts.878013594":"المجموع","src.orders.components.OrderDraftDetailsSummary.878013594":"المجموع","src.orders.components.OrderDraftList.878013594":"المجموع","src.orders.components.OrderFulfillment.878013594":"المجموع","src.orders.components.OrderUnfulfilledItems.878013594":"المجموع","src.orders.components.OrderList.878013594":"المجموع","src.orders.components.OrderPayment.878013594":"المجموع","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.1946482599":"","src.customers.views.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"قيمة","src.discounts.components.SaleSummary.1148029984":"قيمة","src.discounts.components.VoucherList.1148029984":"قيمة","src.discounts.components.VoucherSummary.1148029984":"قيمة","src.discounts.components.VoucherValue.1148029984":"قيمة","src.products.components.ProductAttributes.1148029984":"قيمة","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.1742771332":"","src.discounts.components.SalePricing.1099355007":"","src.products.components.ProductPricing.1099355007":"","src.products.components.ProductVariantPrice.1099355007":"","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"الدول","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"كود","src.discounts.components.VoucherSummary.78726751":"كود","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.1536809153":"إضافة قسيمة شرائية","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"منتجات محددة","src.discounts.shipment":"الشحن","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.2809303671":"","src.discounts.views.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.367317371":"","src.discounts.views.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"إلغاء","src.orders.views.OrderList.3528672691":"إلغاء","src.confirm":"","src.delete":"","src.edit":"تعديل","src.manage":"","src.remove":"إزالة","src.save":"قم بالحفظ","src.show":"","src.undo":"","src.attributes":"سمات","src.products.components.ProductAttributes.4153345096":"سمات","src.categories":"تصنيفات","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"مجموعات","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"إعفاء","src.customers":"الزبائن","src.draftOrders":"","src.home":"الصفحة الرئيسية","src.navigation":"تصفح الموقع","src.orders":"طلبات الشراء","src.pages":"صفحات","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"تنزيلات","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"الضرائب","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"الضرائب","src.taxes.components.CountryListPage.3955023266":"الضرائب","src.translations":"","src.vouchers":"قسائم شرائية","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"","src.partiallyPaid":"","src.partiallyRefunded":"","src.refunded":"","src.unpaid":"","src.cancelled":"","src.draft":"مسودة","src.fulfilled":"استوفى","src.orders.views.OrderList.fulfilled":"استوفى","src.orders.components.OrderListFilter.1712863026":"استوفى","src.partiallyFulfilled":"تم جزئياً","src.unfulfilled":"لم يتم تنفيذها","src.orders.views.OrderList.unfulfilled":"لم يتم تنفيذها","src.orders.components.OrderListFilter.1751787272":"لم يتم تنفيذها","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","src.1395232177":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"الرابط","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"إلغاء الطلب","src.orders.components.OrderDetailsPage.1854613983":"إلغاء الطلب","src.orders.components.OrderDraftPage.1854613983":"إلغاء الطلب","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"زبون","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"زبون","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"","src.orders.components.OrderCustomerEditDialog.1411666943":"","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.500287069":"إزالة مسودة طلب الشراء","src.orders.components.OrderDraftCancelDialog.3199827590":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"منتج","src.orders.components.OrderUnfulfilledItems.1895667608":"منتج","src.orders.components.OrderDraftDetailsProducts.2796503714":"عدد","src.orders.components.OrderFulfillment.2796503714":"عدد","src.orders.components.OrderFulfillmentDialog.2796503714":"عدد","src.orders.components.OrderUnfulfilledItems.2796503714":"عدد","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"المبلغ الإجمالي","src.orders.components.OrderPayment.781550514":"المبلغ الإجمالي","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"إنشاء أمر شراء","src.orders.components.OrderListPage.2826235371":"إنشاء أمر شراء","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"","src.orders.components.OrderFulfillmentCancelDialog.732594284":"","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"وحدة حفظ الأوراق المالية","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"رقم التتبع","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.2574162126":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"تم دفع المبلغ بالكامل","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"تم تقديم الطلب.","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"الدفع","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2943502192":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"الشحن","src.productTypes.components.ProductTypeShipping.1325966144":"الشحن","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"الشحن","src.orders.components.OrderPayment.3768782744":"","src.orders.components.OrderPayment.2320183694":"المبلغ المقبوض","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"قبض","src.orders.components.OrderPayment.2845258362":"استرداد المال المدفوع","src.orders.components.OrderPayment.2444197639":"","src.orders.components.OrderPayment.3500506678":"","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"كمية","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.2775402904":"","src.products.components.ProductListPage.2775402904":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.3880993240":"","src.orders.views.1161115149":"","src.orders.views.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.755314116":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"العنوان ","src.pages.components.PageList.1124600214":"العنوان ","src.pages.components.PageInfo.1116746286":"","src.translations.components.TranslationsPagesPage.1116746286":"","src.pages.components.PageList.3478065224":"","src.pages.components.PageSlug.3478065224":"","src.productTypes.components.ProductTypeAttributes.3478065224":"","src.pages.components.PageList.3767550649":"غير منشور","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.1767905232":"أضف صفحة","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.3785394515":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"قيم ","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"","src.products.components.ProductVariantImages.3240888698":"","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"","src.products.components.ProductVariantStock.3841616483":"","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListPage.821159718":"","src.products.components.ProductListPage.1421689426":"","src.products.components.ProductListPage.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"","prodictStockInventoryLabel":"","src.products.components.ProductVariantStock.3490038570":"","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"","src.products.components.ProductVariants.2153006789":"","src.products.components.ProductVariantNavigation.2845381934":"","src.products.components.ProductVariants.2845381934":"","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1542417144":"","src.products.views.1591632382":"","src.products.views.490753666":"","src.products.views.672103788":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.1694086800":"","src.products.views.ProductList.224127438":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.products.views.2178905289":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1756957616":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.889729490":"أضف نوع المنتج","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.4080551769":"","src.productTypes.views.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.352297149":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2474410767":"أضف منطقة شحن","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.254167659":"","src.shipping.views.ShippingZoneDetails.1790261672":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"مفتاح","src.siteSettings.components.SiteSettingsKeys.2446088470":"مفتاح","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.3490059488":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"الاذونات","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.3247064221":"فعال","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.802625341":"","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"المستخدم فعال","src.staff.views.2240444792":"","src.staff.views.2728048444":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file +{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.3824684885":"","src.attributes.components.AttributeListPage.2417065806":"","src.attributes.components.AttributeListPage.3916653510":"","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.4048785456":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"الاسم","src.categories.components.CategoryProductList.636461959":"الاسم","src.components.ProductList.636461959":"الاسم","src.products.components.ProductList.636461959":"الاسم","src.collections.components.CollectionDetails.636461959":"الاسم","src.collections.components.CollectionProducts.636461959":"الاسم","src.products.components.ProductDetailsForm.636461959":"الاسم","src.discounts.components.SaleInfo.636461959":"الاسم","src.discounts.components.SaleList.636461959":"الاسم","src.discounts.components.SaleSummary.636461959":"الاسم","menuItemDialogNameLabel":"الاسم","src.plugins.components.PluginsList.636461959":"الاسم","src.products.components.ProductVariants.636461959":"الاسم","src.shipping.components.ShippingZoneRates.636461959":"الاسم","src.shipping.components.ShippingZonesList.636461959":"الاسم","src.staff.components.StaffList.636461959":"الاسم","src.translations.components.TranslationsEntitiesList.636461959":"الاسم","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.351422234":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.109182747":"تسجيل الدخول","src.auth.components.LoginPage.4028609483":"","src.auth.components.NewPasswordPage.1915811227":"","src.auth.components.NewPasswordPage.1254879564":"","src.auth.components.NewPasswordPage.2799926859":"","src.auth.components.NewPasswordPage.4253911811":"","src.auth.components.NewPasswordPage.2342634351":"","src.auth.components.ResetPasswordPage.2370700732":"","src.auth.components.ResetPasswordPage.3663311080":"","src.auth.components.ResetPasswordSuccessPage.4066297200":"","src.auth.components.ResetPasswordSuccessPage.2245157344":"","src.auth.views.2388238158":"","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"","src.categories.views.2004894945":"","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.2159874182":"التصنيفات الفرعية","src.categories.components.CategoryUpdatePage.2159874182":"التصنيفات الفرعية","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.1140231710":"","src.categories.views.1140231710":"","src.categories.components.CategoryListPage.4294878092":"","src.categories.components.CategoryListPage.3841025483":"","src.translations.components.TranslationsEntitiesListPage.3841025483":"","src.categories.components.CategoryProductList.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductList.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProductList.3640454975":"منشور","src.components.ProductList.3640454975":"منشور","src.products.components.ProductList.3640454975":"منشور","src.products.components.ProductListPage.3640454975":"منشور","productStatusLabel":"منشور","src.collections.components.CollectionList.3640454975":"منشور","src.collections.components.CollectionProducts.3640454975":"منشور","src.discounts.components.DiscountProducts.3640454975":"منشور","src.pages.components.PageList.3640454975":"منشور","src.products.views.ProductList.published":"منشور","src.categories.components.CategoryProductList.1134347598":"السعر","src.orders.components.OrderFulfillment.1134347598":"السعر","src.products.components.ProductList.1134347598":"السعر","src.products.components.ProductListPage.1134347598":"السعر","src.products.components.ProductPricing.1134347598":"السعر","src.components.ProductList.1134347598":"السعر","src.orders.components.OrderDraftDetailsProducts.1134347598":"السعر","src.orders.components.OrderUnfulfilledItems.1134347598":"السعر","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"السعر","src.shipping.components.ShippingZoneRates.1134347598":"السعر","src.categories.components.CategoryProductList.2341910657":"غير منشور","src.products.components.ProductList.2341910657":"غير منشور","src.collections.components.CollectionList.2341910657":"غير منشور","src.collections.components.CollectionProducts.2341910657":"غير منشور","src.discounts.components.DiscountProducts.2341910657":"غير منشور","src.components.ProductList.2341910657":"غير منشور","src.categories.components.CategoryProductList.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.products.components.ProductList.1657559629":"","src.categories.components.CategoryProducts.4164156574":"","src.categories.components.CategoryProducts.3554578821":"أضف منتج","src.categories.components.CategoryUpdatePage.2968663655":"المنتجات","src.discounts.components.DiscountCategories.2968663655":"المنتجات","src.discounts.components.DiscountCollections.2968663655":"المنتجات","src.products":"المنتجات","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryUpdatePage.3229914152":"","src.categories.components.CategoryUpdatePage.770296100":"","src.categories.views.1754466114":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.CategoryList.3488150607":"","src.categories.views.712767046":"","src.categories.views.CategoryList.712767046":"","src.categories.views.299584400":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.categories.views.CategoryList.2144707585":"","src.collections.components.CollectionCreatePage.3958681866":"إضافة مجموعة","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionCreatePage.2001551496":"","src.collections.components.CollectionDetailsPage.2001551496":"","src.pages.components.PageDetailsPage.2001551496":"","src.products.components.ProductCreatePage.2001551496":"","src.products.components.ProductUpdatePage.2001551496":"","src.collections.components.CollectionCreatePage.1815688500":"","src.collections.components.CollectionDetailsPage.1815688500":"","src.pages.components.PageDetailsPage.1815688500":"","src.products.components.ProductCreatePage.1815688500":"","src.products.components.ProductUpdatePage.1815688500":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"توافر","src.availability":"","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionListPage.686910896":"","src.collections.views.686910896":"","src.collections.components.CollectionListPage.1631917001":"","src.collections.components.CollectionListPage.4057224233":"","src.components.AssignCollectionDialog.4057224233":"","src.translations.components.TranslationsEntitiesListPage.4057224233":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"","src.collections.views.2402899582":"","src.collections.views.CollectionList.2237014112":"عدم النشر","src.pages.views.2237014112":"عدم النشر","src.products.views.ProductList.2237014112":"عدم النشر","src.collections.views.CollectionList.1547167026":"نشر","src.pages.views.1547167026":"نشر","src.products.views.ProductList.1547167026":"نشر","src.collections.views.CollectionList.2823425739":"","src.collections.views.CollectionList.1348793822":"","src.collections.views.CollectionList.2637364047":"","src.collections.views.CollectionList.3944356444":"","src.collections.views.CollectionList.3817188998":"","src.collections.views.CollectionList.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"تسجيل خروج","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"","src.components.ErrorMessageCard.2845142593":"","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.Filter.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.Filter.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.FilterBar.2340527467":"","src.components.SearchBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"إضافة","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"وضوح","src.pages.components.PageList.1459686496":"وضوح","src.products.components.ProductListFilter.1459686496":"وضوح","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"مخفي","src.products.views.ProductList.hidden":"مخفي","src.components.VisibilityCard.292404896":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","src.configuration.2326418019":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","src.configuration.3655543906":"","configurationMenuShipping":"","configurationMenuTaxes":"","src.configuration.3140151600":"","configurationMenuStaff":"","src.configuration.1233229030":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","configurationPluginsPages":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"عنوان الفاتورة","src.customers.components.CustomerAddresses.3517722732":"عنوان الشحن","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"العنوان","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"ملاحظات ","src.orders.components.OrderCustomerNote.1520756907":"ملاحظات ","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"ملاحظة","src.customers.components.CustomerDetails.577013340":"ملاحظة","src.customers.components.CustomerCreatePage.1934221653":"أضف زبون","src.customers.components.CustomerListPage.1934221653":"أضف زبون","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerListPage.477293306":"","src.customers.components.CustomerListPage.1643417013":"","src.customers.components.CustomerOrders.3878642352":"طلبات الشراء الحديثة","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"تاريخ","src.orders.components.OrderDraftList.4205493358":"تاريخ","src.orders.components.OrderList.4205493358":"تاريخ","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"الحالة","src.orders.components.OrderListFilter.1756106276":"الحالة","src.plugins.components.PluginInfo.1756106276":"الحالة","src.products.components.ProductListFilter.1756106276":"الحالة","src.products.components.ProductVariants.1756106276":"الحالة","src.customers.components.CustomerOrders.878013594":"المجموع","src.orders.components.OrderDraftDetailsProducts.878013594":"المجموع","src.orders.components.OrderDraftDetailsSummary.878013594":"المجموع","src.orders.components.OrderDraftList.878013594":"المجموع","src.orders.components.OrderFulfillment.878013594":"المجموع","src.orders.components.OrderUnfulfilledItems.878013594":"المجموع","src.orders.components.OrderList.878013594":"المجموع","src.orders.components.OrderPayment.878013594":"المجموع","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.CustomerList.1946482599":"","src.customers.views.CustomerList.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","src.discounts.components.SaleListPage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"قيمة","src.discounts.components.SaleSummary.1148029984":"قيمة","src.discounts.components.VoucherList.1148029984":"قيمة","src.discounts.components.VoucherSummary.1148029984":"قيمة","src.discounts.components.VoucherValue.1148029984":"قيمة","src.products.components.ProductAttributes.1148029984":"قيمة","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.3907768880":"","src.discounts.components.SaleListPage.1866913828":"","src.translations.components.TranslationsEntitiesListPage.1866913828":"","src.discounts.components.SalePricing.1099355007":"","src.products.components.ProductPricing.1099355007":"","src.products.components.ProductVariantPrice.1099355007":"","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"الدول","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"كود","src.discounts.components.VoucherSummary.78726751":"كود","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.614836274":"","src.discounts.components.VoucherListPage.1112241061":"","src.discounts.components.VoucherListPage.1930485532":"","src.translations.components.TranslationsEntitiesListPage.1930485532":"","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"منتجات محددة","src.discounts.shipment":"الشحن","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.SaleList.2809303671":"","src.discounts.views.SaleList.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.VoucherList.367317371":"","src.discounts.views.VoucherList.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.somethingWentWrong":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"إلغاء","src.orders.views.OrderList.3528672691":"إلغاء","src.confirm":"","src.delete":"","src.edit":"تعديل","src.manage":"","src.remove":"إزالة","src.save":"قم بالحفظ","src.show":"","src.undo":"","src.attributes":"سمات","src.products.components.ProductAttributes.4153345096":"سمات","src.categories":"تصنيفات","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"مجموعات","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"إعفاء","src.customers":"الزبائن","src.draftOrders":"","src.home":"الصفحة الرئيسية","src.navigation":"تصفح الموقع","src.orders":"طلبات الشراء","src.pages":"صفحات","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.plugins":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"تنزيلات","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"الضرائب","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"الضرائب","src.taxes.components.CountryListPage.3955023266":"الضرائب","src.translations":"","src.vouchers":"قسائم شرائية","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"","src.partiallyPaid":"","src.partiallyRefunded":"","src.refunded":"","src.unpaid":"","src.cancelled":"","src.draft":"مسودة","src.fulfilled":"استوفى","src.orders.views.OrderList.fulfilled":"استوفى","src.orders.components.OrderListFilter.1712863026":"استوفى","src.partiallyFulfilled":"تم جزئياً","src.unfulfilled":"لم يتم تنفيذها","src.orders.views.OrderList.unfulfilled":"لم يتم تنفيذها","src.orders.components.OrderListFilter.1751787272":"لم يتم تنفيذها","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"الرابط","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"إلغاء الطلب","src.orders.components.OrderDetailsPage.1854613983":"إلغاء الطلب","src.orders.components.OrderDraftPage.1854613983":"إلغاء الطلب","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"زبون","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"زبون","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"","src.orders.components.OrderCustomerEditDialog.1411666943":"","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.632633254":"","src.orders.components.OrderDraftCancelDialog.36681973":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"منتج","src.orders.components.OrderUnfulfilledItems.1895667608":"منتج","src.orders.components.OrderDraftDetailsProducts.2796503714":"عدد","src.orders.components.OrderFulfillment.2796503714":"عدد","src.orders.components.OrderFulfillmentDialog.2796503714":"عدد","src.orders.components.OrderUnfulfilledItems.2796503714":"عدد","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"المبلغ الإجمالي","src.orders.components.OrderPayment.781550514":"المبلغ الإجمالي","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"إنشاء أمر شراء","src.orders.components.OrderListPage.2826235371":"إنشاء أمر شراء","src.orders.components.OrderDraftListPage.551325728":"","src.orders.components.OrderDraftListPage.77765281":"","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"","src.orders.components.OrderFulfillmentCancelDialog.732594284":"","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"وحدة حفظ الأوراق المالية","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"رقم التتبع","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.4067959693":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"تم دفع المبلغ بالكامل","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"تم تقديم الطلب.","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"الدفع","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2415661583":"","src.orders.views.OrderList.readyToCapture":"","src.orders.components.OrderListFilter.2222765704":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"الشحن","src.productTypes.components.ProductTypeShipping.1325966144":"الشحن","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"الشحن","src.orders.components.OrderPayment.3768782744":"","src.orders.components.OrderPayment.2320183694":"المبلغ المقبوض","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"قبض","src.orders.components.OrderPayment.2845258362":"استرداد المال المدفوع","src.orders.components.OrderPayment.2444197639":"","src.orders.components.OrderPayment.3500506678":"","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"كمية","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.1542417144":"","src.products.components.ProductListPage.1542417144":"","src.products.views.1542417144":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.OrderDraftList.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.OrderDraftList.1648805446":"","src.orders.views.OrderDraftList.1161115149":"","src.orders.views.OrderDraftList.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.1068617485":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"العنوان ","src.pages.components.PageList.1124600214":"العنوان ","src.pages.components.PageInfo.1116746286":"","src.translations.components.TranslationsPagesPage.1116746286":"","src.pages.components.PageList.3478065224":"","src.pages.components.PageSlug.3478065224":"","src.productTypes.components.ProductTypeAttributes.3478065224":"","src.pages.components.PageList.3767550649":"غير منشور","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.3785394515":"","src.pages.views.3785394515":"","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.plugins.components.PluginInfo.3425535100":"","src.plugins.components.PluginsDetailsPage.3425535100":"","src.plugins.components.PluginInfo.1049131348":"","src.plugins.components.PluginInfo.4013064767":"","src.plugins.components.PluginsDetailsPage.3352026836":"","src.plugins.components.PluginsDetailsPage.2277745418":"","src.plugins.components.PluginsDetailsPage.1970881031":"","src.plugins.components.PluginSettings.1970881031":"","src.plugins.components.PluginsDetailsPage.4241018152":"","src.plugins.components.PluginsList.3247064221":"فعال","src.staff.components.StaffList.3247064221":"فعال","src.plugins.components.PluginsList.4120604650":"","src.plugins.components.PluginsList.666641390":"","src.plugins.views.100549097":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"قيم ","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"","src.products.components.ProductVariantImages.3240888698":"","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"","src.products.components.ProductVariantStock.3841616483":"","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListFilter.821159718":"","src.products.components.ProductListFilter.1421689426":"","src.products.components.ProductListFilter.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"","prodictStockInventoryLabel":"","src.products.components.ProductVariantStock.3490038570":"","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"","src.products.components.ProductVariants.2153006789":"","src.products.components.ProductVariantNavigation.2845381934":"","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.3989383405":"","src.products.views.3989383405":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1591632382":"","src.products.views.1731766393":"","src.products.views.2880386427":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1217376589":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.3479705616":"","src.productTypes.components.ProductTypeListPage.1776073799":"","src.productTypes.components.ProductTypeListPage.3420445375":"","src.translations.components.TranslationsEntitiesListPage.3420445375":"","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.ProductTypeList.4080551769":"","src.productTypes.views.ProductTypeList.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRates.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2673544109":"","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.1947090060":"","src.shipping.views.ShippingZoneDetails.131963671":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"مفتاح","src.siteSettings.components.SiteSettingsKeys.2446088470":"مفتاح","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.1481503299":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"الاذونات","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.797461521":"","src.staff.components.StaffListPage.2852350932":"","src.staff.components.StaffListPage.61043583":"","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"المستخدم فعال","src.staff.views.1308770978":"","src.staff.views.8878988":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.2105464697":"","src.translations.components.TranslationsEntitiesListPage.2559018090":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file diff --git a/locale/ar.po b/locale/ar.po index 269fc687e..0b81f447d 100644 --- a/locale/ar.po +++ b/locale/ar.po @@ -5,7 +5,7 @@ # msgid "" msgstr "" -"POT-Creation-Date: 2019-09-06T13:56:36.897Z\n" +"POT-Creation-Date: 2019-09-16T15:25:09.340Z\n" "Last-Translator: Patryk Zawadzki , 2019\n" "Language-Team: Arabic (https://www.transifex.com/mirumee/teams/34782/ar/)\n" "MIME-Version: 1.0\n" @@ -143,22 +143,6 @@ msgctxt "create new menu item, header" msgid "Add Item" msgstr "" -#. [menuCreateDialogHeader] - dialog header -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json -msgctxt "dialog header" -msgid "Add Menu" -msgstr "" - -#. [menuListPageAddMenu] - button -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json -msgctxt "button" -msgid "Add Menu" -msgstr "" - #. [src.siteSettings.components.SiteSettingsKeyDialog.1238948746] - dialog #. header #. defaultMessage is: @@ -168,14 +152,6 @@ msgctxt "dialog header" msgid "Add New Authorization Key" msgstr "" -#. [src.pages.components.PageDetailsPage.755314116] - page header -#. defaultMessage is: -#. Add Page -#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json -msgctxt "page header" -msgid "Add Page" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.2892088870] - dialog header #. defaultMessage is: #. Add Price Rate @@ -184,38 +160,6 @@ msgctxt "dialog header" msgid "Add Price Rate" msgstr "" -#. [src.orders.components.OrderProductAddDialog.2775402904] - dialog header -#. defaultMessage is: -#. Add Product -#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json -msgctxt "dialog header" -msgid "Add Product" -msgstr "" - -#. [src.products.components.ProductListPage.2775402904] - button -#. defaultMessage is: -#. Add Product -#: build/locale/src/products/components/ProductListPage/ProductListPage.json -msgctxt "button" -msgid "Add Product" -msgstr "" - -#. [src.discounts.components.SaleListPage.1742771332] - button -#. defaultMessage is: -#. Add Sale -#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json -msgctxt "button" -msgid "Add Sale" -msgstr "" - -#. [src.staff.components.StaffAddMemberDialog.3490059488] - dialog header -#. defaultMessage is: -#. Add Staff Member -#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json -msgctxt "dialog header" -msgid "Add Staff Member" -msgstr "" - #. [src.attributes.components.AttributeValueEditDialog.1841790893] - add #. attribute value #. defaultMessage is: @@ -225,14 +169,6 @@ msgctxt "add attribute value" msgid "Add Value" msgstr "" -#. [src.products.views.2178905289] - header -#. defaultMessage is: -#. Add Variant -#: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "header" -msgid "Add Variant" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.1397795758] - add weight #. based shipping method, dialog header #. defaultMessage is: @@ -250,14 +186,6 @@ msgctxt "button" msgid "Add address" msgstr "" -#. [src.attributes.components.AttributeListPage.350498821] - button -#. defaultMessage is: -#. Add attribute -#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json -msgctxt "button" -msgid "Add attribute" -msgstr "إضافة سمة" - #. [src.siteSettings.components.SiteSettingsKeyDialog.50561933] - button #. defaultMessage is: #. Add authentication @@ -266,14 +194,6 @@ msgctxt "button" msgid "Add authentication" msgstr "" -#. [src.categories.components.CategoryListPage.228151782] - button -#. defaultMessage is: -#. Add category -#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json -msgctxt "button" -msgid "Add category" -msgstr "إضافة تصنيف" - #. [src.collections.components.CollectionCreatePage.3958681866] - page header #. defaultMessage is: #. Add collection @@ -282,14 +202,6 @@ msgctxt "page header" msgid "Add collection" msgstr "إضافة مجموعة" -#. [src.collections.components.CollectionListPage.3958681866] - button -#. defaultMessage is: -#. Add collection -#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json -msgctxt "button" -msgid "Add collection" -msgstr "إضافة مجموعة" - #. [src.customers.components.CustomerCreatePage.1934221653] - page header #. defaultMessage is: #. Add customer @@ -322,14 +234,6 @@ msgctxt "button" msgid "Add key" msgstr "" -#. [menuItemsAddItem] - add new menu item -#. defaultMessage is: -#. Add new item -#: build/locale/src/navigation/components/MenuItems/MenuItems.json -msgctxt "add new menu item" -msgid "Add new item" -msgstr "" - #. [menuItemsPlaceholder] #. defaultMessage is: #. Add new menu item to begin creating menu @@ -364,14 +268,6 @@ msgctxt "button" msgid "Add or Edit Link" msgstr "" -#. [src.pages.components.PageListPage.1767905232] - button -#. defaultMessage is: -#. Add page -#: build/locale/src/pages/components/PageListPage/PageListPage.json -msgctxt "button" -msgid "Add page" -msgstr "أضف صفحة" - #. [src.categories.components.CategoryProducts.3554578821] - button #. defaultMessage is: #. Add product @@ -380,14 +276,6 @@ msgctxt "button" msgid "Add product" msgstr "أضف منتج" -#. [src.productTypes.components.ProductTypeListPage.889729490] - button -#. defaultMessage is: -#. Add product type -#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json -msgctxt "button" -msgid "Add product type" -msgstr "أضف نوع المنتج" - #. [src.orders.components.OrderDraftDetails.2528459381] - button #. defaultMessage is: #. Add products @@ -396,14 +284,6 @@ msgctxt "button" msgid "Add products" msgstr "" -#. [src.shipping.components.ShippingZoneRates.352297149] - button -#. defaultMessage is: -#. Add rate -#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json -msgctxt "button" -msgid "Add rate" -msgstr "" - #. [src.categories.components.CategoryCreatePage.2563994280] #. defaultMessage is: #. Add search engine title and description to make this category easier to @@ -465,30 +345,6 @@ msgctxt "button" msgid "Add shipping carrier" msgstr "" -#. [src.shipping.components.ShippingZonesList.2474410767] - button -#. defaultMessage is: -#. Add shipping zone -#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json -msgctxt "button" -msgid "Add shipping zone" -msgstr "أضف منطقة شحن" - -#. [src.staff.components.StaffListPage.802625341] - button -#. defaultMessage is: -#. Add staff member -#: build/locale/src/staff/components/StaffListPage/StaffListPage.json -msgctxt "button" -msgid "Add staff member" -msgstr "" - -#. [src.categories.components.CategoryList.435697837] - button -#. defaultMessage is: -#. Add subcategory -#: build/locale/src/categories/components/CategoryList/CategoryList.json -msgctxt "button" -msgid "Add subcategory" -msgstr "" - #. [src.attributes.components.AttributeProperties.673770329] - add attribute #. as column in product list table #. defaultMessage is: @@ -516,35 +372,14 @@ msgctxt "dialog header" msgid "Add tracking code" msgstr "" -#. [src.attributes.components.AttributeValues.254756045] - add attribute value -#. button -#. defaultMessage is: -#. Add value -#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json -msgctxt "add attribute value button" -msgid "Add value" -msgstr "" - #. [src.products.components.ProductVariantNavigation.2845381934] - button #. defaultMessage is: #. Add variant -#. [src.products.components.ProductVariants.2845381934] - button -#. defaultMessage is: -#. Add variant #: build/locale/src/products/components/ProductVariantNavigation/ProductVariantNavigation.json -#: build/locale/src/products/components/ProductVariants/ProductVariants.json msgctxt "button" msgid "Add variant" msgstr "" -#. [src.discounts.components.VoucherListPage.1536809153] - button -#. defaultMessage is: -#. Add voucher -#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json -msgctxt "button" -msgid "Add voucher" -msgstr "إضافة قسيمة شرائية" - #. [src.attributes.views.AttributeDetails.634268988] - added new attribute #. value #. defaultMessage is: @@ -602,14 +437,6 @@ msgctxt "description" msgid "Address line 2" msgstr "" -#. [src.customers.components.CustomerAddress.1320082647] - addres card header -#. defaultMessage is: -#. Address {addressNumber} -#: build/locale/src/customers/components/CustomerAddress/CustomerAddress.json -msgctxt "addres card header" -msgid "Address {addressNumber}" -msgstr "" - #. [src.attributes.components.AttributeValues.1565474525] - attribute values #. list: slug column header #. defaultMessage is: @@ -659,6 +486,46 @@ msgctxt "tax rate" msgid "Agricultural supplies" msgstr "" +#. [src.attributes.components.AttributeListPage.2417065806] - tab name +#. defaultMessage is: +#. All Attributes +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "tab name" +msgid "All Attributes" +msgstr "" + +#. [src.categories.components.CategoryListPage.4294878092] - tab name +#. defaultMessage is: +#. All Categories +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "tab name" +msgid "All Categories" +msgstr "" + +#. [src.collections.components.CollectionListPage.1631917001] - tab name +#. defaultMessage is: +#. All Collections +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "tab name" +msgid "All Collections" +msgstr "" + +#. [src.customers.components.CustomerListPage.477293306] - tab name +#. defaultMessage is: +#. All Customers +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "tab name" +msgid "All Customers" +msgstr "" + +#. [src.orders.components.OrderDraftListPage.551325728] - tab name +#. defaultMessage is: +#. All Drafts +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "tab name" +msgid "All Drafts" +msgstr "" + #. [src.orders.components.OrderListPage.875489544] - tab name #. defaultMessage is: #. All Orders @@ -676,22 +543,54 @@ msgctxt "section header" msgid "All Photos" msgstr "" -#. [src.products.components.ProductListPage.821159718] - tab name +#. [src.productTypes.components.ProductTypeListPage.1776073799] - tab name +#. defaultMessage is: +#. All Product Types +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "tab name" +msgid "All Product Types" +msgstr "" + +#. [src.products.components.ProductListFilter.821159718] - tab name #. defaultMessage is: #. All Products -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "tab name" msgid "All Products" msgstr "" -#. [src.categories.components.CategoryList.3229914152] - section header +#. [src.discounts.components.SaleListPage.3907768880] - tab name +#. defaultMessage is: +#. All Sales +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "tab name" +msgid "All Sales" +msgstr "" + +#. [src.staff.components.StaffListPage.2852350932] - tab name +#. defaultMessage is: +#. All Staff Members +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "tab name" +msgid "All Staff Members" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.3229914152] - section header #. defaultMessage is: #. All Subcategories -#: build/locale/src/categories/components/CategoryList/CategoryList.json +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json msgctxt "section header" msgid "All Subcategories" msgstr "" +#. [src.discounts.components.VoucherListPage.1112241061] - tab name +#. defaultMessage is: +#. All Vouchers +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "tab name" +msgid "All Vouchers" +msgstr "" + #. [src.taxes.components.TaxConfiguration.142803418] #. defaultMessage is: #. All products prices are entered with tax included @@ -799,6 +698,14 @@ msgctxt "description" msgid "Are you sure you want to delete collection's image?" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.36681973] +#. defaultMessage is: +#. Are you sure you want to delete draft #{number}? +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "description" +msgid "Are you sure you want to delete draft #{number}?" +msgstr "" + #. [menuDetailsDeleteMenuContent] #. defaultMessage is: #. Are you sure you want to delete menu {menuName}? @@ -815,6 +722,14 @@ msgctxt "description" msgid "Are you sure you want to delete this address from users address book?" msgstr "" +#. [src.products.views.2880386427] +#. defaultMessage is: +#. Are you sure you want to delete this image? +#: build/locale/src/products/views/ProductImage.json +msgctxt "description" +msgid "Are you sure you want to delete this image?" +msgstr "" + #. [src.attributes.components.AttributeDeleteDialog.3738429348] - dialog #. content #. defaultMessage is: @@ -865,12 +780,7 @@ msgstr "" #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this attribute} #. other{{displayQuantity} categories}}? -#. [src.categories.views.844574071] -#. defaultMessage is: -#. Are you sure you want to delete {counter,plural,one{this attribute} -#. other{{displayQuantity} categories}}? #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this attribute} " @@ -888,22 +798,33 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.2497542455] +#. [src.categories.views.CategoryList.2144707585] +#. defaultMessage is: +#. Are you sure you want to delete {counter,plural,one{this category} +#. other{{displayQuantity} categories}}? +#: build/locale/src/categories/views/CategoryList/CategoryList.json +msgctxt "description" +msgid "" +"Are you sure you want to delete {counter,plural,one{this category} " +"other{{displayQuantity} categories}}?" +msgstr "" + +#. [src.collections.views.CollectionList.2497542455] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this collection} " "other{{displayQuantity} collections}}?" msgstr "" -#. [src.customers.views.409347866] +#. [src.customers.views.CustomerList.409347866] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this customer} #. other{{displayQuantity} customers}}? -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this customer} " @@ -921,11 +842,11 @@ msgid "" "other{{displayQuantity} menus}}?" msgstr "" -#. [src.orders.views.1389231130] - dialog content +#. [src.orders.views.OrderDraftList.1389231130] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this order draft} #. other{{displayQuantity} orderDrafts}}? -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this order draft} " @@ -943,11 +864,11 @@ msgid "" "other{{displayQuantity} pages}}?" msgstr "" -#. [src.productTypes.views.2294091098] - dialog content +#. [src.productTypes.views.ProductTypeList.2294091098] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this product type} #. other{{displayQuantity} product types}}? -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this product type} " @@ -965,11 +886,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.discounts.views.2516361175] - dialog content +#. [src.discounts.views.SaleList.2516361175] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this sale} #. other{{displayQuantity} sales}}? -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this sale} " @@ -998,17 +919,33 @@ msgid "" "other{{displayQuantity} variants}}?" msgstr "" -#. [src.discounts.views.1791926983] - dialog content +#. [src.discounts.views.VoucherList.1791926983] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this voucher} #. other{{displayQuantity} vouchers}}? -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this voucher} " "other{{displayQuantity} vouchers}}?" msgstr "" +#. [src.shipping.views.ShippingZoneDetails.131963671] - unassign country +#. defaultMessage is: +#. Are you sure you want to delete {countryName} from this shipping zone? +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country" +msgid "Are you sure you want to delete {countryName} from this shipping zone?" +msgstr "" + +#. [src.staff.views.8878988] +#. defaultMessage is: +#. Are you sure you want to delete {email} from staff members? +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "description" +msgid "Are you sure you want to delete {email} from staff members?" +msgstr "" + #. [src.customers.views.1927691511] - delete customer, dialog content #. defaultMessage is: #. Are you sure you want to delete {email}? @@ -1123,11 +1060,11 @@ msgctxt "description" msgid "Are you sure you want to mark this order as paid?" msgstr "" -#. [src.collections.views.1348793822] +#. [src.collections.views.CollectionList.1348793822] #. defaultMessage is: #. Are you sure you want to publish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to publish {counter,plural,one{this collection} " @@ -1156,30 +1093,6 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.orders.components.OrderDraftCancelDialog.3199827590] -#. defaultMessage is: -#. Are you sure you want to remove draft #{number}? -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "description" -msgid "Are you sure you want to remove draft #{number}?" -msgstr "" - -#. [src.products.views.672103788] -#. defaultMessage is: -#. Are you sure you want to remove this image? -#: build/locale/src/products/views/ProductImage.json -msgctxt "description" -msgid "Are you sure you want to remove this image?" -msgstr "" - -#. [src.shipping.views.ShippingZoneDetails.1790261672] - unassign country -#. defaultMessage is: -#. Are you sure you want to remove {countryName} from this shipping zone? -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country" -msgid "Are you sure you want to remove {countryName} from this shipping zone?" -msgstr "" - #. [src.staff.views.3945766678] #. defaultMessage is: #. Are you sure you want to remove {email} avatar? @@ -1188,14 +1101,6 @@ msgctxt "description" msgid "Are you sure you want to remove {email} avatar?" msgstr "" -#. [src.staff.views.2728048444] -#. defaultMessage is: -#. Are you sure you want to remove {email} from staff members? -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "description" -msgid "Are you sure you want to remove {email} from staff members?" -msgstr "" - #. [src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450] #. defaultMessage is: #. Are you sure you want to unassign {attributeName} from {productTypeName}? @@ -1276,11 +1181,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.3944356444] +#. [src.collections.views.CollectionList.3944356444] #. defaultMessage is: #. Are you sure you want to unpublish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to unpublish {counter,plural,one{this collection} " @@ -1441,6 +1346,15 @@ msgctxt "button" msgid "Assign products" msgstr "" +#. [src.attributes.components.AttributeValues.351422234] - assign attribute +#. value button +#. defaultMessage is: +#. Assign value +#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json +msgctxt "assign attribute value button" +msgid "Assign value" +msgstr "" + #. [src.attributes.components.AttributeDetails.3605174225] - attribute's slug #. short code label #. defaultMessage is: @@ -1519,6 +1433,14 @@ msgctxt "product attributes, section header" msgid "Attributes" msgstr "سمات" +#. [src.configuration.2326418019] +#. defaultMessage is: +#. Attributes and Product Typess +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Attributes and Product Typess" +msgstr "" + #. [src.attributes.views.AttributeList.3218248395] - deleted multiple #. attributes #. defaultMessage is: @@ -2302,6 +2224,22 @@ msgctxt "description" msgid "Country area" msgstr "" +#. [menuCreateDialogHeader] - dialog header +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json +msgctxt "dialog header" +msgid "Create Menu" +msgstr "" + +#. [menuListPageAddMenu] - button +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json +msgctxt "button" +msgid "Create Menu" +msgstr "" + #. [src.attributes.components.AttributePage.2855501559] - page title #. defaultMessage is: #. Create New Attribute @@ -2326,6 +2264,30 @@ msgctxt "header" msgid "Create New Shipping Zone" msgstr "" +#. [src.pages.components.PageDetailsPage.1068617485] - page header +#. defaultMessage is: +#. Create Page +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page header" +msgid "Create Page" +msgstr "" + +#. [src.orders.components.OrderProductAddDialog.1542417144] - dialog header +#. defaultMessage is: +#. Create Product +#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json +msgctxt "dialog header" +msgid "Create Product" +msgstr "" + +#. [src.products.components.ProductListPage.1542417144] - button +#. defaultMessage is: +#. Create Product +#: build/locale/src/products/components/ProductListPage/ProductListPage.json +msgctxt "button" +msgid "Create Product" +msgstr "" + #. [src.products.views.1542417144] - window title #. defaultMessage is: #. Create Product @@ -2358,11 +2320,19 @@ msgctxt "page header" msgid "Create Sale" msgstr "" -#. [src.products.views.2362587265] - window title +#. [src.discounts.components.SaleListPage.3866518732] - button +#. defaultMessage is: +#. Create Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "button" +msgid "Create Sale" +msgstr "" + +#. [src.products.views.2362587265] - header #. defaultMessage is: #. Create Variant #: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "window title" +msgctxt "header" msgid "Create Variant" msgstr "" @@ -2374,6 +2344,22 @@ msgctxt "page header" msgid "Create Voucher" msgstr "" +#. [src.attributes.components.AttributeListPage.3824684885] - button +#. defaultMessage is: +#. Create attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "button" +msgid "Create attribute" +msgstr "" + +#. [src.categories.components.CategoryListPage.1140231710] - button +#. defaultMessage is: +#. Create category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "button" +msgid "Create category" +msgstr "" + #. [src.categories.views.1140231710] - window title #. defaultMessage is: #. Create category @@ -2382,6 +2368,14 @@ msgctxt "window title" msgid "Create category" msgstr "" +#. [src.collections.components.CollectionListPage.686910896] - button +#. defaultMessage is: +#. Create collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "button" +msgid "Create collection" +msgstr "" + #. [src.collections.views.686910896] - window title #. defaultMessage is: #. Create collection @@ -2398,6 +2392,14 @@ msgctxt "window title" msgid "Create customer" msgstr "" +#. [menuItemsAddItem] - add new menu item +#. defaultMessage is: +#. Create new item +#: build/locale/src/navigation/components/MenuItems/MenuItems.json +msgctxt "add new menu item" +msgid "Create new item" +msgstr "" + #. [src.orders.components.OrderDraftListPage.2826235371] - button #. defaultMessage is: #. Create order @@ -2410,6 +2412,14 @@ msgctxt "button" msgid "Create order" msgstr "إنشاء أمر شراء" +#. [src.pages.components.PageListPage.3785394515] - button +#. defaultMessage is: +#. Create page +#: build/locale/src/pages/components/PageListPage/PageListPage.json +msgctxt "button" +msgid "Create page" +msgstr "" + #. [src.pages.views.3785394515] - header #. defaultMessage is: #. Create page @@ -2421,11 +2431,55 @@ msgstr "" #. [src.shipping.components.ShippingZoneRateDialog.16061680] - button #. defaultMessage is: #. Create rate +#. [src.shipping.components.ShippingZoneRates.16061680] - button +#. defaultMessage is: +#. Create rate #: build/locale/src/shipping/components/ShippingZoneRateDialog/ShippingZoneRateDialog.json +#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json msgctxt "button" msgid "Create rate" msgstr "" +#. [src.shipping.components.ShippingZonesList.2673544109] - button +#. defaultMessage is: +#. Create shipping zone +#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json +msgctxt "button" +msgid "Create shipping zone" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.770296100] - button +#. defaultMessage is: +#. Create subcategory +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json +msgctxt "button" +msgid "Create subcategory" +msgstr "" + +#. [src.products.components.ProductVariants.3989383405] - button +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/components/ProductVariants/ProductVariants.json +msgctxt "button" +msgid "Create variant" +msgstr "" + +#. [src.products.views.3989383405] - window title +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/views/ProductVariantCreate.json +msgctxt "window title" +msgid "Create variant" +msgstr "" + +#. [src.discounts.components.VoucherListPage.614836274] - button +#. defaultMessage is: +#. Create voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "button" +msgid "Create voucher" +msgstr "" + #. [src.collections.views.1597339737] #. defaultMessage is: #. Created collection @@ -2472,7 +2526,11 @@ msgstr "" #. [src.components.FilterBar.2340527467] #. defaultMessage is: #. Custom Filter +#. [src.components.SearchBar.2340527467] +#. defaultMessage is: +#. Custom Filter #: build/locale/src/components/FilterBar/FilterBar.json +#: build/locale/src/components/SearchBar/SearchBar.json msgctxt "description" msgid "Custom Filter" msgstr "" @@ -2728,10 +2786,18 @@ msgctxt "dialog title" msgid "Delete Collection" msgstr "" -#. [src.orders.views.1161115149] - dialog header +#. [src.products.views.1731766393] - dialog header +#. defaultMessage is: +#. Delete Image +#: build/locale/src/products/views/ProductImage.json +msgctxt "dialog header" +msgid "Delete Image" +msgstr "" + +#. [src.orders.views.OrderDraftList.1161115149] - dialog header #. defaultMessage is: #. Delete Order Drafts -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog header" msgid "Delete Order Drafts" msgstr "" @@ -2769,10 +2835,10 @@ msgctxt "dialog header" msgid "Delete Product Type" msgstr "" -#. [src.productTypes.views.4080551769] - dialog header +#. [src.productTypes.views.ProductTypeList.4080551769] - dialog header #. defaultMessage is: #. Delete Product Types -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog header" msgid "Delete Product Types" msgstr "" @@ -2801,10 +2867,10 @@ msgctxt "dialog header" msgid "Delete Sale" msgstr "" -#. [src.discounts.views.2809303671] - dialog header +#. [src.discounts.views.SaleList.2809303671] - dialog header #. defaultMessage is: #. Delete Sales -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog header" msgid "Delete Sales" msgstr "" @@ -2818,9 +2884,13 @@ msgctxt "custom search delete, dialog header" msgid "Delete Search" msgstr "" +#. [src.components.Filter.2173195312] - button +#. defaultMessage is: +#. Delete Search #. [src.components.TableFilter.2173195312] - button #. defaultMessage is: #. Delete Search +#: build/locale/src/components/Filter/FilterSearch.json #: build/locale/src/components/TableFilter/FilterChips.json msgctxt "button" msgid "Delete Search" @@ -2887,10 +2957,10 @@ msgctxt "dialog header" msgid "Delete Voucher" msgstr "" -#. [src.discounts.views.367317371] - dialog header +#. [src.discounts.views.VoucherList.367317371] - dialog header #. defaultMessage is: #. Delete Vouchers -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog header" msgid "Delete Vouchers" msgstr "" @@ -2924,11 +2994,11 @@ msgstr "" #. [src.categories.views.712767046] - dialog title #. defaultMessage is: #. Delete categories -#. [src.categories.views.712767046] - dialog title +#. [src.categories.views.CategoryList.712767046] - dialog title #. defaultMessage is: #. Delete categories #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "dialog title" msgid "Delete categories" msgstr "" @@ -2945,10 +3015,10 @@ msgctxt "dialog title" msgid "Delete category" msgstr "" -#. [src.collections.views.3817188998] - dialog title +#. [src.collections.views.CollectionList.3817188998] - dialog title #. defaultMessage is: #. Delete collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Delete collections" msgstr "" @@ -2961,14 +3031,31 @@ msgctxt "dialog header" msgid "Delete customer" msgstr "" -#. [src.customers.views.1946482599] - dialog header +#. [src.customers.views.CustomerList.1946482599] - dialog header #. defaultMessage is: #. Delete customers -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "dialog header" msgid "Delete customers" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.632633254] - dialog header +#. defaultMessage is: +#. Delete draft order +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "dialog header" +msgid "Delete draft order" +msgstr "" + +#. [src.shipping.views.ShippingZoneDetails.1947090060] - unassign country, +#. dialog header +#. defaultMessage is: +#. Delete from shipping zone +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country, dialog header" +msgid "Delete from shipping zone" +msgstr "" + #. [src.collections.views.942133001] - dialog title #. defaultMessage is: #. Delete image @@ -3029,6 +3116,14 @@ msgctxt "description" msgid "Deleted collection" msgstr "المجموعه المحذوفه" +#. [src.orders.views.OrderDraftList.1648805446] +#. defaultMessage is: +#. Deleted draft orders +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json +msgctxt "description" +msgid "Deleted draft orders" +msgstr "" + #. [menuListDeletedMenu] #. defaultMessage is: #. Deleted menu @@ -3628,14 +3723,6 @@ msgctxt "order history message" msgid "Fulfilled {quantity} items" msgstr "" -#. [src.orders.components.OrderListFilter.2943502192] - order -#. defaultMessage is: -#. Fulfillment Status -#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json -msgctxt "order" -msgid "Fulfillment Status" -msgstr "" - #. [src.orders.components.OrderHistory.3081292385] - order history message #. defaultMessage is: #. Fulfillment confirmation was sent to customer @@ -3792,12 +3879,12 @@ msgctxt "description" msgid "If empty, the preview shows what will be autogenerated." msgstr "" -#. [src.attributes.components.AttributeProperties.2519239682] +#. [src.attributes.components.AttributeProperties.4048785456] #. defaultMessage is: -#. If enable this attribute can be used as a column in product table. +#. If enabled this attribute can be used as a column in product table. #: build/locale/src/attributes/components/AttributeProperties/AttributeProperties.json msgctxt "description" -msgid "If enable this attribute can be used as a column in product table." +msgid "If enabled this attribute can be used as a column in product table." msgstr "" #. [src.attributes.components.AttributeProperties.787251583] @@ -3903,6 +3990,22 @@ msgctxt "product variant stock" msgid "Inventory" msgstr "" +#. [src.staff.components.StaffAddMemberDialog.1481503299] - dialog header +#. defaultMessage is: +#. Invite Staff Member +#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json +msgctxt "dialog header" +msgid "Invite Staff Member" +msgstr "" + +#. [src.staff.components.StaffListPage.797461521] - button +#. defaultMessage is: +#. Invite staff member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "button" +msgid "Invite staff member" +msgstr "" + #. [src.productTypes.components.ProductTypeShipping.2143413921] - switch #. button #. defaultMessage is: @@ -4255,6 +4358,14 @@ msgctxt "voucher requirement" msgid "Minimum quantity of items" msgstr "" +#. [src.configuration.1233229030] +#. defaultMessage is: +#. Miscellaneous +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Miscellaneous" +msgstr "" + #. [src.attributes.components.AttributeDetails.3334509011] - product attribute #. type #. defaultMessage is: @@ -5087,6 +5198,14 @@ msgctxt "description" msgid "Order History" msgstr "" +#. [src.orders.components.OrderListFilter.2222765704] +#. defaultMessage is: +#. Order Status +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +msgctxt "description" +msgid "Order Status" +msgstr "" + #. [src.orders.components.OrderHistory.1230178536] - order history message #. defaultMessage is: #. Order address was updated @@ -5103,13 +5222,13 @@ msgctxt "order history message" msgid "Order confirmation was sent to customer" msgstr "" -#. [src.orders.views.1872939752] +#. [src.orders.views.OrderDraftList.1872939752] #. defaultMessage is: #. Order draft succesfully created #. [src.orders.views.OrderList.1872939752] #. defaultMessage is: #. Order draft succesfully created -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json #: build/locale/src/orders/views/OrderList/OrderList.json msgctxt "description" msgid "Order draft succesfully created" @@ -5774,6 +5893,14 @@ msgctxt "description" msgid "Product Name" msgstr "" +#. [src.configuration.3655543906] +#. defaultMessage is: +#. Product Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Product Settings" +msgstr "" + #. [src.discounts.components.DiscountProducts.4257289053] #. defaultMessage is: #. Product Type @@ -5932,12 +6059,12 @@ msgctxt "order history message" msgid "Products were added to draft order" msgstr "" -#. [src.orders.components.OrderHistory.2574162126] - order history message +#. [src.orders.components.OrderHistory.4067959693] - order history message #. defaultMessage is: -#. Products were removed from draft order +#. Products were deleted from draft order #: build/locale/src/orders/components/OrderHistory/OrderHistory.json msgctxt "order history message" -msgid "Products were removed from draft order" +msgid "Products were deleted from draft order" msgstr "" #. [src.properties] @@ -5964,10 +6091,10 @@ msgctxt "description" msgid "Provided email address does not exist in our database." msgstr "" -#. [src.collections.views.1547167026] - publish collections +#. [src.collections.views.CollectionList.1547167026] - publish collections #. defaultMessage is: #. Publish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "publish collections" msgid "Publish" msgstr "نشر" @@ -6004,10 +6131,10 @@ msgctxt "dialog header" msgid "Publish Products" msgstr "" -#. [src.collections.views.2823425739] - dialog title +#. [src.collections.views.CollectionList.2823425739] - dialog title #. defaultMessage is: #. Publish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Publish collections" msgstr "" @@ -6181,6 +6308,18 @@ msgctxt "shipping method price" msgid "Rate Price" msgstr "" +#. [src.orders.components.OrderListFilter.2415661583] - order status +#. defaultMessage is: +#. Ready to Capture +#. [src.orders.views.OrderList.readyToCapture] - order status +#. defaultMessage is: +#. Ready to Capture +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +#: build/locale/src/orders/views/OrderList/filters.json +msgctxt "order status" +msgid "Ready to Capture" +msgstr "" + #. [src.customers.components.CustomerOrders.3878642352] - section header #. defaultMessage is: #. Recent orders @@ -6229,22 +6368,14 @@ msgctxt "switch button" msgid "Release all stock allocated to this order" msgstr "" -#. [src.auth.components.LoginPage.3182284913] - login -#. defaultMessage is: -#. Remember me -#: build/locale/src/auth/components/LoginPage/LoginPage.json -msgctxt "login" -msgid "Remember me" -msgstr "" - #. [src.categories.views.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. -#. [src.categories.views.3488150607] +#. [src.categories.views.CategoryList.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "description" msgid "Remember this will also delete all products assigned to this category." msgstr "" @@ -6257,39 +6388,6 @@ msgctxt "button" msgid "Remove" msgstr "إزالة" -#. [src.products.views.490753666] - dialog header -#. defaultMessage is: -#. Remove Image -#: build/locale/src/products/views/ProductImage.json -msgctxt "dialog header" -msgid "Remove Image" -msgstr "" - -#. [src.orders.components.OrderDraftCancelDialog.500287069] - dialog header -#. defaultMessage is: -#. Remove draft order -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "dialog header" -msgid "Remove draft order" -msgstr "إزالة مسودة طلب الشراء" - -#. [src.shipping.views.ShippingZoneDetails.254167659] - unassign country, -#. dialog header -#. defaultMessage is: -#. Remove from shipping zone -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country, dialog header" -msgid "Remove from shipping zone" -msgstr "" - -#. [src.orders.views.3880993240] -#. defaultMessage is: -#. Removed draft orders -#: build/locale/src/orders/views/OrderDraftList.json -msgctxt "description" -msgid "Removed draft orders" -msgstr "" - #. [src.pages.views.1457312643] #. defaultMessage is: #. Removed page @@ -6455,6 +6553,18 @@ msgctxt "button" msgid "Save" msgstr "قم بالحفظ" +#. [src.components.Filter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#. [src.components.TableFilter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#: build/locale/src/components/Filter/FilterSearch.json +#: build/locale/src/components/TableFilter/FilterChips.json +msgctxt "button" +msgid "Save Custom Search" +msgstr "" + #. [src.components.SaveFilterTabDialog.1514415736] - save filter tab, header #. defaultMessage is: #. Save Custom Search @@ -6463,14 +6573,6 @@ msgctxt "save filter tab, header" msgid "Save Custom Search" msgstr "" -#. [src.components.TableFilter.1514415736] - button -#. defaultMessage is: -#. Save Custom Search -#: build/locale/src/components/TableFilter/FilterChips.json -msgctxt "button" -msgid "Save Custom Search" -msgstr "" - #. [src.products.components.ProductVariantCreatePage.2853608829] - button #. defaultMessage is: #. Save variant @@ -6487,6 +6589,14 @@ msgctxt "description" msgid "Saved changes" msgstr "" +#. [src.attributes.components.AttributeListPage.3916653510] +#. defaultMessage is: +#. Search Attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "description" +msgid "Search Attribute" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.902296540] #. defaultMessage is: #. Search Attributes @@ -6503,10 +6613,30 @@ msgctxt "description" msgid "Search Categories" msgstr "" +#. [src.categories.components.CategoryListPage.3841025483] +#. defaultMessage is: +#. Search Category +#. [src.translations.components.TranslationsEntitiesListPage.3841025483] +#. defaultMessage is: +#. Search Category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Category" +msgstr "" + +#. [src.collections.components.CollectionListPage.4057224233] +#. defaultMessage is: +#. Search Collection #. [src.components.AssignCollectionDialog.4057224233] #. defaultMessage is: #. Search Collection +#. [src.translations.components.TranslationsEntitiesListPage.4057224233] +#. defaultMessage is: +#. Search Collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json #: build/locale/src/components/AssignCollectionDialog/AssignCollectionDialog.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json msgctxt "description" msgid "Search Collection" msgstr "" @@ -6519,6 +6649,14 @@ msgctxt "description" msgid "Search Countries" msgstr "" +#. [src.customers.components.CustomerListPage.1643417013] +#. defaultMessage is: +#. Search Customer +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "description" +msgid "Search Customer" +msgstr "" + #. [src.orders.components.OrderCustomer.2433460203] #. defaultMessage is: #. Search Customers @@ -6527,6 +6665,14 @@ msgctxt "description" msgid "Search Customers" msgstr "" +#. [src.orders.components.OrderDraftListPage.77765281] +#. defaultMessage is: +#. Search Draft +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "description" +msgid "Search Draft" +msgstr "" + #. [src.translations.components.TranslationsCategoriesPage.1406947243] #. defaultMessage is: #. Search Engine Description @@ -6607,6 +6753,34 @@ msgctxt "description" msgid "Search Orders..." msgstr "" +#. [src.translations.components.TranslationsEntitiesListPage.2559018090] +#. defaultMessage is: +#. Search Page +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Page" +msgstr "" + +#. [src.translations.components.TranslationsEntitiesListPage.2105464697] +#. defaultMessage is: +#. Search Product +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product" +msgstr "" + +#. [src.productTypes.components.ProductTypeListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#. [src.translations.components.TranslationsEntitiesListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product Type" +msgstr "" + #. [src.components.AssignProductDialog.2850255786] #. defaultMessage is: #. Search Products @@ -6619,14 +6793,46 @@ msgctxt "description" msgid "Search Products" msgstr "" -#. [src.products.components.ProductListPage.3550330425] +#. [src.products.components.ProductListFilter.3550330425] #. defaultMessage is: #. Search Products... -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Search Products..." msgstr "" +#. [src.discounts.components.SaleListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#. [src.translations.components.TranslationsEntitiesListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Sale" +msgstr "" + +#. [src.staff.components.StaffListPage.61043583] +#. defaultMessage is: +#. Search Staff Member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "description" +msgid "Search Staff Member" +msgstr "" + +#. [src.discounts.components.VoucherListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#. [src.translations.components.TranslationsEntitiesListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Voucher" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.524117994] #. defaultMessage is: #. Search by attribute name @@ -6733,10 +6939,10 @@ msgctxt "description" msgid "Select all orders where:" msgstr "" -#. [src.products.components.ProductListPage.1421689426] +#. [src.products.components.ProductListFilter.1421689426] #. defaultMessage is: #. Select all products where: -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Select all products where:" msgstr "" @@ -6822,6 +7028,14 @@ msgctxt "description" msgid "Set plugin as Active" msgstr "" +#. [src.components.VisibilityCard.292404896] +#. defaultMessage is: +#. Set publication date +#: build/locale/src/components/VisibilityCard/VisibilityCard.json +msgctxt "description" +msgid "Set publication date" +msgstr "" + #. [src.discounts.shipment] - voucher discount #. defaultMessage is: #. Shipment @@ -7087,6 +7301,14 @@ msgctxt "staff section name" msgid "Staff Members" msgstr "" +#. [src.configuration.3140151600] +#. defaultMessage is: +#. Staff Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Staff Settings" +msgstr "" + #. [src.standard] - tax rate #. defaultMessage is: #. Standard @@ -8071,10 +8293,10 @@ msgctxt "payment status" msgid "Unpaid" msgstr "" -#. [src.collections.views.2237014112] - unpublish collections +#. [src.collections.views.CollectionList.2237014112] - unpublish collections #. defaultMessage is: #. Unpublish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "unpublish collections" msgid "Unpublish" msgstr "عدم النشر" @@ -8111,10 +8333,10 @@ msgctxt "dialog header" msgid "Unpublish Products" msgstr "" -#. [src.collections.views.2637364047] - dialog title +#. [src.collections.views.CollectionList.2637364047] - dialog title #. defaultMessage is: #. Unpublish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Unpublish collections" msgstr "" @@ -8614,6 +8836,22 @@ msgctxt "description" msgid "ZIP / Postal code" msgstr "" +#. [src.productTypes.components.ProductTypeListPage.3479705616] - button +#. defaultMessage is: +#. create product type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "button" +msgid "create product type" +msgstr "" + +#. [src.staff.views.1308770978] - dialog header +#. defaultMessage is: +#. delete Staff User +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "dialog header" +msgid "delete Staff User" +msgstr "" + #. [orderPaymentVATDoesNotApply] - vat not included in order price #. defaultMessage is: #. does not apply @@ -8687,19 +8925,35 @@ msgctxt "product status is set as" msgid "is set as" msgstr "" -#. [src.staff.views.2240444792] - dialog header -#. defaultMessage is: -#. remove Staff User -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "dialog header" -msgid "remove Staff User" -msgstr "" - -#. [src.components.VisibilityCard.1815688500] +#. [src.collections.components.CollectionCreatePage.1815688500] - collection #. defaultMessage is: #. since {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.1815688500] - collection +#. defaultMessage is: +#. since {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "since {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.1815688500] - page +#. defaultMessage is: +#. since {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "since {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#. [src.products.components.ProductUpdatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "since {date}" msgstr "" @@ -8727,11 +8981,35 @@ msgctxt "weight" msgid "to {value} {unit}" msgstr "" -#. [src.components.VisibilityCard.2001551496] +#. [src.collections.components.CollectionCreatePage.2001551496] - collection #. defaultMessage is: #. will be visible from {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.2001551496] - collection +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "will be visible from {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.2001551496] - page +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "will be visible from {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#. [src.products.components.ProductUpdatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "will be visible from {date}" msgstr "" diff --git a/locale/az.json b/locale/az.json index d84ec54d6..ade3c01ca 100644 --- a/locale/az.json +++ b/locale/az.json @@ -1 +1 @@ -{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.350498821":"","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.2519239682":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"Adı","src.categories.components.CategoryProducts.636461959":"Adı","src.collections.components.CollectionProducts.636461959":"Adı","src.products.components.ProductDetailsForm.636461959":"Adı","src.collections.components.CollectionDetails.636461959":"Adı","src.components.ProductList.636461959":"Adı","src.discounts.components.SaleInfo.636461959":"Adı","src.discounts.components.SaleList.636461959":"Adı","src.discounts.components.SaleSummary.636461959":"Adı","menuItemDialogNameLabel":"Adı","src.products.components.ProductVariants.636461959":"Adı","src.shipping.components.ShippingZoneRates.636461959":"Adı","src.shipping.components.ShippingZonesList.636461959":"Adı","src.staff.components.StaffList.636461959":"Adı","src.translations.components.TranslationsEntitiesList.636461959":"Adı","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.254756045":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.3182284913":"","src.auth.components.LoginPage.109182747":"","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"","src.categories.views.2004894945":"","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.3229914152":"","src.categories.components.CategoryList.435697837":"","src.categories.components.CategoryList.2159874182":"","src.categories.components.CategoryUpdatePage.2159874182":"","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.228151782":"","src.categories.components.CategoryProducts.2968663655":"Məhsullar","src.categories.components.CategoryUpdatePage.2968663655":"Məhsullar","src.discounts.components.DiscountCategories.2968663655":"Məhsullar","src.discounts.components.DiscountCollections.2968663655":"Məhsullar","src.products":"Məhsullar","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryProducts.3554578821":"","src.categories.components.CategoryProductsCard.3554578821":"","src.categories.components.CategoryProducts.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProducts.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.categories.components.CategoryProductsCard.4164156574":"","src.categories.views.1754466114":"","src.categories.views.1140231710":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.712767046":"","src.categories.views.299584400":"","src.categories.views.844574071":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.collections.components.CollectionCreatePage.3958681866":"","src.collections.components.CollectionListPage.3958681866":"","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"","src.availability":"","src.collections.components.CollectionList.3640454975":"Dərc olundu","src.collections.components.CollectionProducts.3640454975":"Dərc olundu","src.discounts.components.DiscountProducts.3640454975":"Dərc olundu","src.components.ProductList.3640454975":"Dərc olundu","src.products.components.ProductListPage.3640454975":"Dərc olundu","src.pages.components.PageList.3640454975":"Dərc olundu","src.products.views.ProductList.published":"Dərc olundu","src.collections.components.CollectionList.2341910657":"Dərc olunmadı","src.collections.components.CollectionProducts.2341910657":"Dərc olunmadı","src.discounts.components.DiscountProducts.2341910657":"Dərc olunmadı","src.components.ProductList.2341910657":"Dərc olunmadı","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.686910896":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"","src.collections.views.2402899582":"","src.collections.views.2237014112":"","src.pages.views.2237014112":"","src.products.views.ProductList.2237014112":"","src.collections.views.1547167026":"","src.pages.views.1547167026":"","src.products.views.ProductList.1547167026":"","src.collections.views.2823425739":"","src.collections.views.1348793822":"","src.collections.views.2637364047":"","src.collections.views.3944356444":"","src.collections.views.3817188998":"","src.collections.views.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.4057224233":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"","src.components.ErrorMessageCard.2845142593":"","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.FilterBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.ProductList.1134347598":"","src.orders.components.OrderDraftDetailsProducts.1134347598":"","src.orders.components.OrderFulfillment.1134347598":"","src.products.components.ProductListPage.1134347598":"","src.products.components.ProductPricing.1134347598":"","src.orders.components.OrderUnfulfilledItems.1134347598":"","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"","src.shipping.components.ShippingZoneRates.1134347598":"","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"","src.pages.components.PageList.1459686496":"","src.products.components.ProductListFilter.1459686496":"","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"","src.products.views.ProductList.hidden":"","src.components.VisibilityCard.1815688500":"","src.components.VisibilityCard.2001551496":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","configurationMenuStaff":"","configurationMenuShipping":"","configurationMenuTaxes":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","src.customers.components.CustomerAddress.1320082647":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"","src.customers.components.CustomerAddresses.3517722732":"","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"Qeydlər","src.orders.components.OrderCustomerNote.1520756907":"Qeydlər","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"Qeyd","src.customers.components.CustomerDetails.577013340":"Qeyd","src.customers.components.CustomerCreatePage.1934221653":"","src.customers.components.CustomerListPage.1934221653":"","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerOrders.3878642352":"","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"","src.orders.components.OrderDraftList.4205493358":"","src.orders.components.OrderList.4205493358":"","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"","src.orders.components.OrderListFilter.1756106276":"","src.products.components.ProductListFilter.1756106276":"","src.products.components.ProductVariants.1756106276":"","src.customers.components.CustomerOrders.878013594":"","src.orders.components.OrderDraftDetailsProducts.878013594":"","src.orders.components.OrderDraftDetailsSummary.878013594":"","src.orders.components.OrderDraftList.878013594":"","src.orders.components.OrderFulfillment.878013594":"","src.orders.components.OrderUnfulfilledItems.878013594":"","src.orders.components.OrderList.878013594":"","src.orders.components.OrderPayment.878013594":"","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.1946482599":"","src.customers.views.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"Dəyəri","src.discounts.components.SaleSummary.1148029984":"Dəyəri","src.discounts.components.VoucherList.1148029984":"Dəyəri","src.discounts.components.VoucherSummary.1148029984":"Dəyəri","src.discounts.components.VoucherValue.1148029984":"Dəyəri","src.products.components.ProductAttributes.1148029984":"Dəyəri","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.1742771332":"","src.discounts.components.SalePricing.1099355007":"","src.products.components.ProductPricing.1099355007":"","src.products.components.ProductVariantPrice.1099355007":"","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"","src.discounts.components.VoucherSummary.78726751":"","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.1536809153":"","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"","src.discounts.shipment":"","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.2809303671":"","src.discounts.views.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.367317371":"","src.discounts.views.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"","src.orders.views.OrderList.3528672691":"","src.confirm":"","src.delete":"","src.edit":"","src.manage":"","src.remove":"","src.save":"","src.show":"","src.undo":"","src.attributes":"","src.products.components.ProductAttributes.4153345096":"","src.categories":"Kateqoriyalar","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"","src.customers":"","src.draftOrders":"","src.home":"","src.navigation":"","src.orders":"","src.pages":"","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"","src.taxes.components.CountryListPage.3955023266":"","src.translations":"","src.vouchers":"","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"","src.partiallyPaid":"","src.partiallyRefunded":"","src.refunded":"","src.unpaid":"","src.cancelled":"","src.draft":"","src.fulfilled":"","src.orders.views.OrderList.fulfilled":"","src.orders.components.OrderListFilter.1712863026":"","src.partiallyFulfilled":"","src.unfulfilled":"","src.orders.views.OrderList.unfulfilled":"","src.orders.components.OrderListFilter.1751787272":"","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","src.1395232177":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"Keçid","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"","src.orders.components.OrderDetailsPage.1854613983":"","src.orders.components.OrderDraftPage.1854613983":"","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"","src.orders.components.OrderCustomerEditDialog.1411666943":"","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.500287069":"","src.orders.components.OrderDraftCancelDialog.3199827590":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"","src.orders.components.OrderUnfulfilledItems.1895667608":"","src.orders.components.OrderDraftDetailsProducts.2796503714":"Miqdarı","src.orders.components.OrderFulfillment.2796503714":"Miqdarı","src.orders.components.OrderFulfillmentDialog.2796503714":"Miqdarı","src.orders.components.OrderUnfulfilledItems.2796503714":"Miqdarı","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"","src.orders.components.OrderPayment.781550514":"","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"","src.orders.components.OrderListPage.2826235371":"","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"","src.orders.components.OrderFulfillmentCancelDialog.732594284":"","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.2574162126":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2943502192":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"","src.productTypes.components.ProductTypeShipping.1325966144":"","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"","src.orders.components.OrderPayment.3768782744":"","src.orders.components.OrderPayment.2320183694":"","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"","src.orders.components.OrderPayment.2845258362":"","src.orders.components.OrderPayment.2444197639":"","src.orders.components.OrderPayment.3500506678":"","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.2775402904":"","src.products.components.ProductListPage.2775402904":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.3880993240":"","src.orders.views.1161115149":"","src.orders.views.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.755314116":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"","src.pages.components.PageList.1124600214":"","src.pages.components.PageInfo.1116746286":"","src.translations.components.TranslationsPagesPage.1116746286":"","src.pages.components.PageList.3478065224":"","src.pages.components.PageSlug.3478065224":"","src.productTypes.components.ProductTypeAttributes.3478065224":"","src.pages.components.PageList.3767550649":"","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.1767905232":"","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.3785394515":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"","src.products.components.ProductVariantImages.3240888698":"","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"","src.products.components.ProductVariantStock.3841616483":"","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListPage.821159718":"","src.products.components.ProductListPage.1421689426":"","src.products.components.ProductListPage.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"","prodictStockInventoryLabel":"","src.products.components.ProductVariantStock.3490038570":"","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"","src.products.components.ProductVariants.2153006789":"","src.products.components.ProductVariantNavigation.2845381934":"","src.products.components.ProductVariants.2845381934":"","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1542417144":"","src.products.views.1591632382":"","src.products.views.490753666":"","src.products.views.672103788":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.1694086800":"","src.products.views.ProductList.224127438":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.products.views.2178905289":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1756957616":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.889729490":"","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.4080551769":"","src.productTypes.views.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.352297149":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2474410767":"","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.254167659":"","src.shipping.views.ShippingZoneDetails.1790261672":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"","src.siteSettings.components.SiteSettingsKeys.2446088470":"","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.3490059488":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.3247064221":"Aktiv","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.802625341":"","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"İstifadəçi aktivdir","src.staff.views.2240444792":"","src.staff.views.2728048444":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file +{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.3824684885":"","src.attributes.components.AttributeListPage.2417065806":"","src.attributes.components.AttributeListPage.3916653510":"","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.4048785456":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"Adı","src.categories.components.CategoryProductList.636461959":"Adı","src.components.ProductList.636461959":"Adı","src.products.components.ProductList.636461959":"Adı","src.collections.components.CollectionDetails.636461959":"Adı","src.collections.components.CollectionProducts.636461959":"Adı","src.products.components.ProductDetailsForm.636461959":"Adı","src.discounts.components.SaleInfo.636461959":"Adı","src.discounts.components.SaleList.636461959":"Adı","src.discounts.components.SaleSummary.636461959":"Adı","menuItemDialogNameLabel":"Adı","src.plugins.components.PluginsList.636461959":"Adı","src.products.components.ProductVariants.636461959":"Adı","src.shipping.components.ShippingZoneRates.636461959":"Adı","src.shipping.components.ShippingZonesList.636461959":"Adı","src.staff.components.StaffList.636461959":"Adı","src.translations.components.TranslationsEntitiesList.636461959":"Adı","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.351422234":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.109182747":"","src.auth.components.LoginPage.4028609483":"","src.auth.components.NewPasswordPage.1915811227":"","src.auth.components.NewPasswordPage.1254879564":"","src.auth.components.NewPasswordPage.2799926859":"","src.auth.components.NewPasswordPage.4253911811":"","src.auth.components.NewPasswordPage.2342634351":"","src.auth.components.ResetPasswordPage.2370700732":"","src.auth.components.ResetPasswordPage.3663311080":"","src.auth.components.ResetPasswordSuccessPage.4066297200":"","src.auth.components.ResetPasswordSuccessPage.2245157344":"","src.auth.views.2388238158":"","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"","src.categories.views.2004894945":"","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.2159874182":"","src.categories.components.CategoryUpdatePage.2159874182":"","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.1140231710":"","src.categories.views.1140231710":"","src.categories.components.CategoryListPage.4294878092":"","src.categories.components.CategoryListPage.3841025483":"","src.translations.components.TranslationsEntitiesListPage.3841025483":"","src.categories.components.CategoryProductList.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductList.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProductList.3640454975":"Dərc olundu","src.components.ProductList.3640454975":"Dərc olundu","src.products.components.ProductList.3640454975":"Dərc olundu","src.products.components.ProductListPage.3640454975":"Dərc olundu","productStatusLabel":"Dərc olundu","src.collections.components.CollectionList.3640454975":"Dərc olundu","src.collections.components.CollectionProducts.3640454975":"Dərc olundu","src.discounts.components.DiscountProducts.3640454975":"Dərc olundu","src.pages.components.PageList.3640454975":"Dərc olundu","src.products.views.ProductList.published":"Dərc olundu","src.categories.components.CategoryProductList.1134347598":"","src.orders.components.OrderFulfillment.1134347598":"","src.products.components.ProductList.1134347598":"","src.products.components.ProductListPage.1134347598":"","src.products.components.ProductPricing.1134347598":"","src.components.ProductList.1134347598":"","src.orders.components.OrderDraftDetailsProducts.1134347598":"","src.orders.components.OrderUnfulfilledItems.1134347598":"","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"","src.shipping.components.ShippingZoneRates.1134347598":"","src.categories.components.CategoryProductList.2341910657":"Dərc olunmadı","src.products.components.ProductList.2341910657":"Dərc olunmadı","src.collections.components.CollectionList.2341910657":"Dərc olunmadı","src.collections.components.CollectionProducts.2341910657":"Dərc olunmadı","src.discounts.components.DiscountProducts.2341910657":"Dərc olunmadı","src.components.ProductList.2341910657":"Dərc olunmadı","src.categories.components.CategoryProductList.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.products.components.ProductList.1657559629":"","src.categories.components.CategoryProducts.4164156574":"","src.categories.components.CategoryProducts.3554578821":"","src.categories.components.CategoryUpdatePage.2968663655":"Məhsullar","src.discounts.components.DiscountCategories.2968663655":"Məhsullar","src.discounts.components.DiscountCollections.2968663655":"Məhsullar","src.products":"Məhsullar","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryUpdatePage.3229914152":"","src.categories.components.CategoryUpdatePage.770296100":"","src.categories.views.1754466114":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.CategoryList.3488150607":"","src.categories.views.712767046":"","src.categories.views.CategoryList.712767046":"","src.categories.views.299584400":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.categories.views.CategoryList.2144707585":"","src.collections.components.CollectionCreatePage.3958681866":"","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionCreatePage.2001551496":"","src.collections.components.CollectionDetailsPage.2001551496":"","src.pages.components.PageDetailsPage.2001551496":"","src.products.components.ProductCreatePage.2001551496":"","src.products.components.ProductUpdatePage.2001551496":"","src.collections.components.CollectionCreatePage.1815688500":"","src.collections.components.CollectionDetailsPage.1815688500":"","src.pages.components.PageDetailsPage.1815688500":"","src.products.components.ProductCreatePage.1815688500":"","src.products.components.ProductUpdatePage.1815688500":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"","src.availability":"","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionListPage.686910896":"","src.collections.views.686910896":"","src.collections.components.CollectionListPage.1631917001":"","src.collections.components.CollectionListPage.4057224233":"","src.components.AssignCollectionDialog.4057224233":"","src.translations.components.TranslationsEntitiesListPage.4057224233":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"","src.collections.views.2402899582":"","src.collections.views.CollectionList.2237014112":"","src.pages.views.2237014112":"","src.products.views.ProductList.2237014112":"","src.collections.views.CollectionList.1547167026":"","src.pages.views.1547167026":"","src.products.views.ProductList.1547167026":"","src.collections.views.CollectionList.2823425739":"","src.collections.views.CollectionList.1348793822":"","src.collections.views.CollectionList.2637364047":"","src.collections.views.CollectionList.3944356444":"","src.collections.views.CollectionList.3817188998":"","src.collections.views.CollectionList.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"","src.components.ErrorMessageCard.2845142593":"","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.Filter.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.Filter.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.FilterBar.2340527467":"","src.components.SearchBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"","src.pages.components.PageList.1459686496":"","src.products.components.ProductListFilter.1459686496":"","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"","src.products.views.ProductList.hidden":"","src.components.VisibilityCard.292404896":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","src.configuration.2326418019":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","src.configuration.3655543906":"","configurationMenuShipping":"","configurationMenuTaxes":"","src.configuration.3140151600":"","configurationMenuStaff":"","src.configuration.1233229030":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","configurationPluginsPages":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"","src.customers.components.CustomerAddresses.3517722732":"","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"Qeydlər","src.orders.components.OrderCustomerNote.1520756907":"Qeydlər","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"Qeyd","src.customers.components.CustomerDetails.577013340":"Qeyd","src.customers.components.CustomerCreatePage.1934221653":"","src.customers.components.CustomerListPage.1934221653":"","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerListPage.477293306":"","src.customers.components.CustomerListPage.1643417013":"","src.customers.components.CustomerOrders.3878642352":"","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"","src.orders.components.OrderDraftList.4205493358":"","src.orders.components.OrderList.4205493358":"","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"","src.orders.components.OrderListFilter.1756106276":"","src.plugins.components.PluginInfo.1756106276":"","src.products.components.ProductListFilter.1756106276":"","src.products.components.ProductVariants.1756106276":"","src.customers.components.CustomerOrders.878013594":"","src.orders.components.OrderDraftDetailsProducts.878013594":"","src.orders.components.OrderDraftDetailsSummary.878013594":"","src.orders.components.OrderDraftList.878013594":"","src.orders.components.OrderFulfillment.878013594":"","src.orders.components.OrderUnfulfilledItems.878013594":"","src.orders.components.OrderList.878013594":"","src.orders.components.OrderPayment.878013594":"","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.CustomerList.1946482599":"","src.customers.views.CustomerList.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","src.discounts.components.SaleListPage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"Dəyəri","src.discounts.components.SaleSummary.1148029984":"Dəyəri","src.discounts.components.VoucherList.1148029984":"Dəyəri","src.discounts.components.VoucherSummary.1148029984":"Dəyəri","src.discounts.components.VoucherValue.1148029984":"Dəyəri","src.products.components.ProductAttributes.1148029984":"Dəyəri","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.3907768880":"","src.discounts.components.SaleListPage.1866913828":"","src.translations.components.TranslationsEntitiesListPage.1866913828":"","src.discounts.components.SalePricing.1099355007":"","src.products.components.ProductPricing.1099355007":"","src.products.components.ProductVariantPrice.1099355007":"","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"","src.discounts.components.VoucherSummary.78726751":"","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.614836274":"","src.discounts.components.VoucherListPage.1112241061":"","src.discounts.components.VoucherListPage.1930485532":"","src.translations.components.TranslationsEntitiesListPage.1930485532":"","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"","src.discounts.shipment":"","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.SaleList.2809303671":"","src.discounts.views.SaleList.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.VoucherList.367317371":"","src.discounts.views.VoucherList.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.somethingWentWrong":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"","src.orders.views.OrderList.3528672691":"","src.confirm":"","src.delete":"","src.edit":"","src.manage":"","src.remove":"","src.save":"","src.show":"","src.undo":"","src.attributes":"","src.products.components.ProductAttributes.4153345096":"","src.categories":"Kateqoriyalar","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"","src.customers":"","src.draftOrders":"","src.home":"","src.navigation":"","src.orders":"","src.pages":"","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.plugins":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"","src.taxes.components.CountryListPage.3955023266":"","src.translations":"","src.vouchers":"","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"","src.partiallyPaid":"","src.partiallyRefunded":"","src.refunded":"","src.unpaid":"","src.cancelled":"","src.draft":"","src.fulfilled":"","src.orders.views.OrderList.fulfilled":"","src.orders.components.OrderListFilter.1712863026":"","src.partiallyFulfilled":"","src.unfulfilled":"","src.orders.views.OrderList.unfulfilled":"","src.orders.components.OrderListFilter.1751787272":"","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"Keçid","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"","src.orders.components.OrderDetailsPage.1854613983":"","src.orders.components.OrderDraftPage.1854613983":"","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"","src.orders.components.OrderCustomerEditDialog.1411666943":"","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.632633254":"","src.orders.components.OrderDraftCancelDialog.36681973":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"","src.orders.components.OrderUnfulfilledItems.1895667608":"","src.orders.components.OrderDraftDetailsProducts.2796503714":"Miqdarı","src.orders.components.OrderFulfillment.2796503714":"Miqdarı","src.orders.components.OrderFulfillmentDialog.2796503714":"Miqdarı","src.orders.components.OrderUnfulfilledItems.2796503714":"Miqdarı","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"","src.orders.components.OrderPayment.781550514":"","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"","src.orders.components.OrderListPage.2826235371":"","src.orders.components.OrderDraftListPage.551325728":"","src.orders.components.OrderDraftListPage.77765281":"","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"","src.orders.components.OrderFulfillmentCancelDialog.732594284":"","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.4067959693":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2415661583":"","src.orders.views.OrderList.readyToCapture":"","src.orders.components.OrderListFilter.2222765704":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"","src.productTypes.components.ProductTypeShipping.1325966144":"","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"","src.orders.components.OrderPayment.3768782744":"","src.orders.components.OrderPayment.2320183694":"","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"","src.orders.components.OrderPayment.2845258362":"","src.orders.components.OrderPayment.2444197639":"","src.orders.components.OrderPayment.3500506678":"","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.1542417144":"","src.products.components.ProductListPage.1542417144":"","src.products.views.1542417144":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.OrderDraftList.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.OrderDraftList.1648805446":"","src.orders.views.OrderDraftList.1161115149":"","src.orders.views.OrderDraftList.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.1068617485":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"","src.pages.components.PageList.1124600214":"","src.pages.components.PageInfo.1116746286":"","src.translations.components.TranslationsPagesPage.1116746286":"","src.pages.components.PageList.3478065224":"","src.pages.components.PageSlug.3478065224":"","src.productTypes.components.ProductTypeAttributes.3478065224":"","src.pages.components.PageList.3767550649":"","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.3785394515":"","src.pages.views.3785394515":"","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.plugins.components.PluginInfo.3425535100":"","src.plugins.components.PluginsDetailsPage.3425535100":"","src.plugins.components.PluginInfo.1049131348":"","src.plugins.components.PluginInfo.4013064767":"","src.plugins.components.PluginsDetailsPage.3352026836":"","src.plugins.components.PluginsDetailsPage.2277745418":"","src.plugins.components.PluginsDetailsPage.1970881031":"","src.plugins.components.PluginSettings.1970881031":"","src.plugins.components.PluginsDetailsPage.4241018152":"","src.plugins.components.PluginsList.3247064221":"Aktiv","src.staff.components.StaffList.3247064221":"Aktiv","src.plugins.components.PluginsList.4120604650":"","src.plugins.components.PluginsList.666641390":"","src.plugins.views.100549097":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"","src.products.components.ProductVariantImages.3240888698":"","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"","src.products.components.ProductVariantStock.3841616483":"","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListFilter.821159718":"","src.products.components.ProductListFilter.1421689426":"","src.products.components.ProductListFilter.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"","prodictStockInventoryLabel":"","src.products.components.ProductVariantStock.3490038570":"","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"","src.products.components.ProductVariants.2153006789":"","src.products.components.ProductVariantNavigation.2845381934":"","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.3989383405":"","src.products.views.3989383405":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1591632382":"","src.products.views.1731766393":"","src.products.views.2880386427":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1217376589":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.3479705616":"","src.productTypes.components.ProductTypeListPage.1776073799":"","src.productTypes.components.ProductTypeListPage.3420445375":"","src.translations.components.TranslationsEntitiesListPage.3420445375":"","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.ProductTypeList.4080551769":"","src.productTypes.views.ProductTypeList.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRates.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2673544109":"","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.1947090060":"","src.shipping.views.ShippingZoneDetails.131963671":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"","src.siteSettings.components.SiteSettingsKeys.2446088470":"","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.1481503299":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.797461521":"","src.staff.components.StaffListPage.2852350932":"","src.staff.components.StaffListPage.61043583":"","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"İstifadəçi aktivdir","src.staff.views.1308770978":"","src.staff.views.8878988":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.2105464697":"","src.translations.components.TranslationsEntitiesListPage.2559018090":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file diff --git a/locale/az.po b/locale/az.po index 1d34caa5c..7baa05088 100644 --- a/locale/az.po +++ b/locale/az.po @@ -3,7 +3,7 @@ # msgid "" msgstr "" -"POT-Creation-Date: 2019-09-06T13:56:36.897Z\n" +"POT-Creation-Date: 2019-09-16T15:25:09.340Z\n" "Last-Translator: Rovshan Musayev , 2019\n" "Language-Team: Azerbaijani (https://www.transifex.com/mirumee/teams/34782/az/)\n" "MIME-Version: 1.0\n" @@ -141,22 +141,6 @@ msgctxt "create new menu item, header" msgid "Add Item" msgstr "" -#. [menuCreateDialogHeader] - dialog header -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json -msgctxt "dialog header" -msgid "Add Menu" -msgstr "" - -#. [menuListPageAddMenu] - button -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json -msgctxt "button" -msgid "Add Menu" -msgstr "" - #. [src.siteSettings.components.SiteSettingsKeyDialog.1238948746] - dialog #. header #. defaultMessage is: @@ -166,14 +150,6 @@ msgctxt "dialog header" msgid "Add New Authorization Key" msgstr "" -#. [src.pages.components.PageDetailsPage.755314116] - page header -#. defaultMessage is: -#. Add Page -#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json -msgctxt "page header" -msgid "Add Page" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.2892088870] - dialog header #. defaultMessage is: #. Add Price Rate @@ -182,38 +158,6 @@ msgctxt "dialog header" msgid "Add Price Rate" msgstr "" -#. [src.orders.components.OrderProductAddDialog.2775402904] - dialog header -#. defaultMessage is: -#. Add Product -#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json -msgctxt "dialog header" -msgid "Add Product" -msgstr "" - -#. [src.products.components.ProductListPage.2775402904] - button -#. defaultMessage is: -#. Add Product -#: build/locale/src/products/components/ProductListPage/ProductListPage.json -msgctxt "button" -msgid "Add Product" -msgstr "" - -#. [src.discounts.components.SaleListPage.1742771332] - button -#. defaultMessage is: -#. Add Sale -#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json -msgctxt "button" -msgid "Add Sale" -msgstr "" - -#. [src.staff.components.StaffAddMemberDialog.3490059488] - dialog header -#. defaultMessage is: -#. Add Staff Member -#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json -msgctxt "dialog header" -msgid "Add Staff Member" -msgstr "" - #. [src.attributes.components.AttributeValueEditDialog.1841790893] - add #. attribute value #. defaultMessage is: @@ -223,14 +167,6 @@ msgctxt "add attribute value" msgid "Add Value" msgstr "" -#. [src.products.views.2178905289] - header -#. defaultMessage is: -#. Add Variant -#: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "header" -msgid "Add Variant" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.1397795758] - add weight #. based shipping method, dialog header #. defaultMessage is: @@ -248,14 +184,6 @@ msgctxt "button" msgid "Add address" msgstr "" -#. [src.attributes.components.AttributeListPage.350498821] - button -#. defaultMessage is: -#. Add attribute -#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json -msgctxt "button" -msgid "Add attribute" -msgstr "" - #. [src.siteSettings.components.SiteSettingsKeyDialog.50561933] - button #. defaultMessage is: #. Add authentication @@ -264,14 +192,6 @@ msgctxt "button" msgid "Add authentication" msgstr "" -#. [src.categories.components.CategoryListPage.228151782] - button -#. defaultMessage is: -#. Add category -#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json -msgctxt "button" -msgid "Add category" -msgstr "" - #. [src.collections.components.CollectionCreatePage.3958681866] - page header #. defaultMessage is: #. Add collection @@ -280,14 +200,6 @@ msgctxt "page header" msgid "Add collection" msgstr "" -#. [src.collections.components.CollectionListPage.3958681866] - button -#. defaultMessage is: -#. Add collection -#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json -msgctxt "button" -msgid "Add collection" -msgstr "" - #. [src.customers.components.CustomerCreatePage.1934221653] - page header #. defaultMessage is: #. Add customer @@ -320,14 +232,6 @@ msgctxt "button" msgid "Add key" msgstr "" -#. [menuItemsAddItem] - add new menu item -#. defaultMessage is: -#. Add new item -#: build/locale/src/navigation/components/MenuItems/MenuItems.json -msgctxt "add new menu item" -msgid "Add new item" -msgstr "" - #. [menuItemsPlaceholder] #. defaultMessage is: #. Add new menu item to begin creating menu @@ -362,14 +266,6 @@ msgctxt "button" msgid "Add or Edit Link" msgstr "" -#. [src.pages.components.PageListPage.1767905232] - button -#. defaultMessage is: -#. Add page -#: build/locale/src/pages/components/PageListPage/PageListPage.json -msgctxt "button" -msgid "Add page" -msgstr "" - #. [src.categories.components.CategoryProducts.3554578821] - button #. defaultMessage is: #. Add product @@ -378,14 +274,6 @@ msgctxt "button" msgid "Add product" msgstr "" -#. [src.productTypes.components.ProductTypeListPage.889729490] - button -#. defaultMessage is: -#. Add product type -#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json -msgctxt "button" -msgid "Add product type" -msgstr "" - #. [src.orders.components.OrderDraftDetails.2528459381] - button #. defaultMessage is: #. Add products @@ -394,14 +282,6 @@ msgctxt "button" msgid "Add products" msgstr "" -#. [src.shipping.components.ShippingZoneRates.352297149] - button -#. defaultMessage is: -#. Add rate -#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json -msgctxt "button" -msgid "Add rate" -msgstr "" - #. [src.categories.components.CategoryCreatePage.2563994280] #. defaultMessage is: #. Add search engine title and description to make this category easier to @@ -463,30 +343,6 @@ msgctxt "button" msgid "Add shipping carrier" msgstr "" -#. [src.shipping.components.ShippingZonesList.2474410767] - button -#. defaultMessage is: -#. Add shipping zone -#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json -msgctxt "button" -msgid "Add shipping zone" -msgstr "" - -#. [src.staff.components.StaffListPage.802625341] - button -#. defaultMessage is: -#. Add staff member -#: build/locale/src/staff/components/StaffListPage/StaffListPage.json -msgctxt "button" -msgid "Add staff member" -msgstr "" - -#. [src.categories.components.CategoryList.435697837] - button -#. defaultMessage is: -#. Add subcategory -#: build/locale/src/categories/components/CategoryList/CategoryList.json -msgctxt "button" -msgid "Add subcategory" -msgstr "" - #. [src.attributes.components.AttributeProperties.673770329] - add attribute #. as column in product list table #. defaultMessage is: @@ -514,35 +370,14 @@ msgctxt "dialog header" msgid "Add tracking code" msgstr "" -#. [src.attributes.components.AttributeValues.254756045] - add attribute value -#. button -#. defaultMessage is: -#. Add value -#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json -msgctxt "add attribute value button" -msgid "Add value" -msgstr "" - #. [src.products.components.ProductVariantNavigation.2845381934] - button #. defaultMessage is: #. Add variant -#. [src.products.components.ProductVariants.2845381934] - button -#. defaultMessage is: -#. Add variant #: build/locale/src/products/components/ProductVariantNavigation/ProductVariantNavigation.json -#: build/locale/src/products/components/ProductVariants/ProductVariants.json msgctxt "button" msgid "Add variant" msgstr "" -#. [src.discounts.components.VoucherListPage.1536809153] - button -#. defaultMessage is: -#. Add voucher -#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json -msgctxt "button" -msgid "Add voucher" -msgstr "" - #. [src.attributes.views.AttributeDetails.634268988] - added new attribute #. value #. defaultMessage is: @@ -600,14 +435,6 @@ msgctxt "description" msgid "Address line 2" msgstr "" -#. [src.customers.components.CustomerAddress.1320082647] - addres card header -#. defaultMessage is: -#. Address {addressNumber} -#: build/locale/src/customers/components/CustomerAddress/CustomerAddress.json -msgctxt "addres card header" -msgid "Address {addressNumber}" -msgstr "" - #. [src.attributes.components.AttributeValues.1565474525] - attribute values #. list: slug column header #. defaultMessage is: @@ -657,6 +484,46 @@ msgctxt "tax rate" msgid "Agricultural supplies" msgstr "" +#. [src.attributes.components.AttributeListPage.2417065806] - tab name +#. defaultMessage is: +#. All Attributes +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "tab name" +msgid "All Attributes" +msgstr "" + +#. [src.categories.components.CategoryListPage.4294878092] - tab name +#. defaultMessage is: +#. All Categories +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "tab name" +msgid "All Categories" +msgstr "" + +#. [src.collections.components.CollectionListPage.1631917001] - tab name +#. defaultMessage is: +#. All Collections +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "tab name" +msgid "All Collections" +msgstr "" + +#. [src.customers.components.CustomerListPage.477293306] - tab name +#. defaultMessage is: +#. All Customers +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "tab name" +msgid "All Customers" +msgstr "" + +#. [src.orders.components.OrderDraftListPage.551325728] - tab name +#. defaultMessage is: +#. All Drafts +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "tab name" +msgid "All Drafts" +msgstr "" + #. [src.orders.components.OrderListPage.875489544] - tab name #. defaultMessage is: #. All Orders @@ -674,22 +541,54 @@ msgctxt "section header" msgid "All Photos" msgstr "" -#. [src.products.components.ProductListPage.821159718] - tab name +#. [src.productTypes.components.ProductTypeListPage.1776073799] - tab name +#. defaultMessage is: +#. All Product Types +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "tab name" +msgid "All Product Types" +msgstr "" + +#. [src.products.components.ProductListFilter.821159718] - tab name #. defaultMessage is: #. All Products -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "tab name" msgid "All Products" msgstr "" -#. [src.categories.components.CategoryList.3229914152] - section header +#. [src.discounts.components.SaleListPage.3907768880] - tab name +#. defaultMessage is: +#. All Sales +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "tab name" +msgid "All Sales" +msgstr "" + +#. [src.staff.components.StaffListPage.2852350932] - tab name +#. defaultMessage is: +#. All Staff Members +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "tab name" +msgid "All Staff Members" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.3229914152] - section header #. defaultMessage is: #. All Subcategories -#: build/locale/src/categories/components/CategoryList/CategoryList.json +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json msgctxt "section header" msgid "All Subcategories" msgstr "" +#. [src.discounts.components.VoucherListPage.1112241061] - tab name +#. defaultMessage is: +#. All Vouchers +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "tab name" +msgid "All Vouchers" +msgstr "" + #. [src.taxes.components.TaxConfiguration.142803418] #. defaultMessage is: #. All products prices are entered with tax included @@ -797,6 +696,14 @@ msgctxt "description" msgid "Are you sure you want to delete collection's image?" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.36681973] +#. defaultMessage is: +#. Are you sure you want to delete draft #{number}? +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "description" +msgid "Are you sure you want to delete draft #{number}?" +msgstr "" + #. [menuDetailsDeleteMenuContent] #. defaultMessage is: #. Are you sure you want to delete menu {menuName}? @@ -813,6 +720,14 @@ msgctxt "description" msgid "Are you sure you want to delete this address from users address book?" msgstr "" +#. [src.products.views.2880386427] +#. defaultMessage is: +#. Are you sure you want to delete this image? +#: build/locale/src/products/views/ProductImage.json +msgctxt "description" +msgid "Are you sure you want to delete this image?" +msgstr "" + #. [src.attributes.components.AttributeDeleteDialog.3738429348] - dialog #. content #. defaultMessage is: @@ -863,12 +778,7 @@ msgstr "" #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this attribute} #. other{{displayQuantity} categories}}? -#. [src.categories.views.844574071] -#. defaultMessage is: -#. Are you sure you want to delete {counter,plural,one{this attribute} -#. other{{displayQuantity} categories}}? #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this attribute} " @@ -886,22 +796,33 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.2497542455] +#. [src.categories.views.CategoryList.2144707585] +#. defaultMessage is: +#. Are you sure you want to delete {counter,plural,one{this category} +#. other{{displayQuantity} categories}}? +#: build/locale/src/categories/views/CategoryList/CategoryList.json +msgctxt "description" +msgid "" +"Are you sure you want to delete {counter,plural,one{this category} " +"other{{displayQuantity} categories}}?" +msgstr "" + +#. [src.collections.views.CollectionList.2497542455] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this collection} " "other{{displayQuantity} collections}}?" msgstr "" -#. [src.customers.views.409347866] +#. [src.customers.views.CustomerList.409347866] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this customer} #. other{{displayQuantity} customers}}? -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this customer} " @@ -919,11 +840,11 @@ msgid "" "other{{displayQuantity} menus}}?" msgstr "" -#. [src.orders.views.1389231130] - dialog content +#. [src.orders.views.OrderDraftList.1389231130] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this order draft} #. other{{displayQuantity} orderDrafts}}? -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this order draft} " @@ -941,11 +862,11 @@ msgid "" "other{{displayQuantity} pages}}?" msgstr "" -#. [src.productTypes.views.2294091098] - dialog content +#. [src.productTypes.views.ProductTypeList.2294091098] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this product type} #. other{{displayQuantity} product types}}? -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this product type} " @@ -963,11 +884,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.discounts.views.2516361175] - dialog content +#. [src.discounts.views.SaleList.2516361175] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this sale} #. other{{displayQuantity} sales}}? -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this sale} " @@ -996,17 +917,33 @@ msgid "" "other{{displayQuantity} variants}}?" msgstr "" -#. [src.discounts.views.1791926983] - dialog content +#. [src.discounts.views.VoucherList.1791926983] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this voucher} #. other{{displayQuantity} vouchers}}? -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this voucher} " "other{{displayQuantity} vouchers}}?" msgstr "" +#. [src.shipping.views.ShippingZoneDetails.131963671] - unassign country +#. defaultMessage is: +#. Are you sure you want to delete {countryName} from this shipping zone? +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country" +msgid "Are you sure you want to delete {countryName} from this shipping zone?" +msgstr "" + +#. [src.staff.views.8878988] +#. defaultMessage is: +#. Are you sure you want to delete {email} from staff members? +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "description" +msgid "Are you sure you want to delete {email} from staff members?" +msgstr "" + #. [src.customers.views.1927691511] - delete customer, dialog content #. defaultMessage is: #. Are you sure you want to delete {email}? @@ -1121,11 +1058,11 @@ msgctxt "description" msgid "Are you sure you want to mark this order as paid?" msgstr "" -#. [src.collections.views.1348793822] +#. [src.collections.views.CollectionList.1348793822] #. defaultMessage is: #. Are you sure you want to publish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to publish {counter,plural,one{this collection} " @@ -1154,30 +1091,6 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.orders.components.OrderDraftCancelDialog.3199827590] -#. defaultMessage is: -#. Are you sure you want to remove draft #{number}? -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "description" -msgid "Are you sure you want to remove draft #{number}?" -msgstr "" - -#. [src.products.views.672103788] -#. defaultMessage is: -#. Are you sure you want to remove this image? -#: build/locale/src/products/views/ProductImage.json -msgctxt "description" -msgid "Are you sure you want to remove this image?" -msgstr "" - -#. [src.shipping.views.ShippingZoneDetails.1790261672] - unassign country -#. defaultMessage is: -#. Are you sure you want to remove {countryName} from this shipping zone? -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country" -msgid "Are you sure you want to remove {countryName} from this shipping zone?" -msgstr "" - #. [src.staff.views.3945766678] #. defaultMessage is: #. Are you sure you want to remove {email} avatar? @@ -1186,14 +1099,6 @@ msgctxt "description" msgid "Are you sure you want to remove {email} avatar?" msgstr "" -#. [src.staff.views.2728048444] -#. defaultMessage is: -#. Are you sure you want to remove {email} from staff members? -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "description" -msgid "Are you sure you want to remove {email} from staff members?" -msgstr "" - #. [src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450] #. defaultMessage is: #. Are you sure you want to unassign {attributeName} from {productTypeName}? @@ -1274,11 +1179,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.3944356444] +#. [src.collections.views.CollectionList.3944356444] #. defaultMessage is: #. Are you sure you want to unpublish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to unpublish {counter,plural,one{this collection} " @@ -1439,6 +1344,15 @@ msgctxt "button" msgid "Assign products" msgstr "" +#. [src.attributes.components.AttributeValues.351422234] - assign attribute +#. value button +#. defaultMessage is: +#. Assign value +#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json +msgctxt "assign attribute value button" +msgid "Assign value" +msgstr "" + #. [src.attributes.components.AttributeDetails.3605174225] - attribute's slug #. short code label #. defaultMessage is: @@ -1517,6 +1431,14 @@ msgctxt "product attributes, section header" msgid "Attributes" msgstr "" +#. [src.configuration.2326418019] +#. defaultMessage is: +#. Attributes and Product Typess +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Attributes and Product Typess" +msgstr "" + #. [src.attributes.views.AttributeList.3218248395] - deleted multiple #. attributes #. defaultMessage is: @@ -2300,6 +2222,22 @@ msgctxt "description" msgid "Country area" msgstr "" +#. [menuCreateDialogHeader] - dialog header +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json +msgctxt "dialog header" +msgid "Create Menu" +msgstr "" + +#. [menuListPageAddMenu] - button +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json +msgctxt "button" +msgid "Create Menu" +msgstr "" + #. [src.attributes.components.AttributePage.2855501559] - page title #. defaultMessage is: #. Create New Attribute @@ -2324,6 +2262,30 @@ msgctxt "header" msgid "Create New Shipping Zone" msgstr "" +#. [src.pages.components.PageDetailsPage.1068617485] - page header +#. defaultMessage is: +#. Create Page +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page header" +msgid "Create Page" +msgstr "" + +#. [src.orders.components.OrderProductAddDialog.1542417144] - dialog header +#. defaultMessage is: +#. Create Product +#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json +msgctxt "dialog header" +msgid "Create Product" +msgstr "" + +#. [src.products.components.ProductListPage.1542417144] - button +#. defaultMessage is: +#. Create Product +#: build/locale/src/products/components/ProductListPage/ProductListPage.json +msgctxt "button" +msgid "Create Product" +msgstr "" + #. [src.products.views.1542417144] - window title #. defaultMessage is: #. Create Product @@ -2356,11 +2318,19 @@ msgctxt "page header" msgid "Create Sale" msgstr "" -#. [src.products.views.2362587265] - window title +#. [src.discounts.components.SaleListPage.3866518732] - button +#. defaultMessage is: +#. Create Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "button" +msgid "Create Sale" +msgstr "" + +#. [src.products.views.2362587265] - header #. defaultMessage is: #. Create Variant #: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "window title" +msgctxt "header" msgid "Create Variant" msgstr "" @@ -2372,6 +2342,22 @@ msgctxt "page header" msgid "Create Voucher" msgstr "" +#. [src.attributes.components.AttributeListPage.3824684885] - button +#. defaultMessage is: +#. Create attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "button" +msgid "Create attribute" +msgstr "" + +#. [src.categories.components.CategoryListPage.1140231710] - button +#. defaultMessage is: +#. Create category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "button" +msgid "Create category" +msgstr "" + #. [src.categories.views.1140231710] - window title #. defaultMessage is: #. Create category @@ -2380,6 +2366,14 @@ msgctxt "window title" msgid "Create category" msgstr "" +#. [src.collections.components.CollectionListPage.686910896] - button +#. defaultMessage is: +#. Create collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "button" +msgid "Create collection" +msgstr "" + #. [src.collections.views.686910896] - window title #. defaultMessage is: #. Create collection @@ -2396,6 +2390,14 @@ msgctxt "window title" msgid "Create customer" msgstr "" +#. [menuItemsAddItem] - add new menu item +#. defaultMessage is: +#. Create new item +#: build/locale/src/navigation/components/MenuItems/MenuItems.json +msgctxt "add new menu item" +msgid "Create new item" +msgstr "" + #. [src.orders.components.OrderDraftListPage.2826235371] - button #. defaultMessage is: #. Create order @@ -2408,6 +2410,14 @@ msgctxt "button" msgid "Create order" msgstr "" +#. [src.pages.components.PageListPage.3785394515] - button +#. defaultMessage is: +#. Create page +#: build/locale/src/pages/components/PageListPage/PageListPage.json +msgctxt "button" +msgid "Create page" +msgstr "" + #. [src.pages.views.3785394515] - header #. defaultMessage is: #. Create page @@ -2419,11 +2429,55 @@ msgstr "" #. [src.shipping.components.ShippingZoneRateDialog.16061680] - button #. defaultMessage is: #. Create rate +#. [src.shipping.components.ShippingZoneRates.16061680] - button +#. defaultMessage is: +#. Create rate #: build/locale/src/shipping/components/ShippingZoneRateDialog/ShippingZoneRateDialog.json +#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json msgctxt "button" msgid "Create rate" msgstr "" +#. [src.shipping.components.ShippingZonesList.2673544109] - button +#. defaultMessage is: +#. Create shipping zone +#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json +msgctxt "button" +msgid "Create shipping zone" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.770296100] - button +#. defaultMessage is: +#. Create subcategory +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json +msgctxt "button" +msgid "Create subcategory" +msgstr "" + +#. [src.products.components.ProductVariants.3989383405] - button +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/components/ProductVariants/ProductVariants.json +msgctxt "button" +msgid "Create variant" +msgstr "" + +#. [src.products.views.3989383405] - window title +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/views/ProductVariantCreate.json +msgctxt "window title" +msgid "Create variant" +msgstr "" + +#. [src.discounts.components.VoucherListPage.614836274] - button +#. defaultMessage is: +#. Create voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "button" +msgid "Create voucher" +msgstr "" + #. [src.collections.views.1597339737] #. defaultMessage is: #. Created collection @@ -2470,7 +2524,11 @@ msgstr "" #. [src.components.FilterBar.2340527467] #. defaultMessage is: #. Custom Filter +#. [src.components.SearchBar.2340527467] +#. defaultMessage is: +#. Custom Filter #: build/locale/src/components/FilterBar/FilterBar.json +#: build/locale/src/components/SearchBar/SearchBar.json msgctxt "description" msgid "Custom Filter" msgstr "" @@ -2726,10 +2784,18 @@ msgctxt "dialog title" msgid "Delete Collection" msgstr "" -#. [src.orders.views.1161115149] - dialog header +#. [src.products.views.1731766393] - dialog header +#. defaultMessage is: +#. Delete Image +#: build/locale/src/products/views/ProductImage.json +msgctxt "dialog header" +msgid "Delete Image" +msgstr "" + +#. [src.orders.views.OrderDraftList.1161115149] - dialog header #. defaultMessage is: #. Delete Order Drafts -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog header" msgid "Delete Order Drafts" msgstr "" @@ -2767,10 +2833,10 @@ msgctxt "dialog header" msgid "Delete Product Type" msgstr "" -#. [src.productTypes.views.4080551769] - dialog header +#. [src.productTypes.views.ProductTypeList.4080551769] - dialog header #. defaultMessage is: #. Delete Product Types -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog header" msgid "Delete Product Types" msgstr "" @@ -2799,10 +2865,10 @@ msgctxt "dialog header" msgid "Delete Sale" msgstr "" -#. [src.discounts.views.2809303671] - dialog header +#. [src.discounts.views.SaleList.2809303671] - dialog header #. defaultMessage is: #. Delete Sales -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog header" msgid "Delete Sales" msgstr "" @@ -2816,9 +2882,13 @@ msgctxt "custom search delete, dialog header" msgid "Delete Search" msgstr "" +#. [src.components.Filter.2173195312] - button +#. defaultMessage is: +#. Delete Search #. [src.components.TableFilter.2173195312] - button #. defaultMessage is: #. Delete Search +#: build/locale/src/components/Filter/FilterSearch.json #: build/locale/src/components/TableFilter/FilterChips.json msgctxt "button" msgid "Delete Search" @@ -2885,10 +2955,10 @@ msgctxt "dialog header" msgid "Delete Voucher" msgstr "" -#. [src.discounts.views.367317371] - dialog header +#. [src.discounts.views.VoucherList.367317371] - dialog header #. defaultMessage is: #. Delete Vouchers -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog header" msgid "Delete Vouchers" msgstr "" @@ -2922,11 +2992,11 @@ msgstr "" #. [src.categories.views.712767046] - dialog title #. defaultMessage is: #. Delete categories -#. [src.categories.views.712767046] - dialog title +#. [src.categories.views.CategoryList.712767046] - dialog title #. defaultMessage is: #. Delete categories #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "dialog title" msgid "Delete categories" msgstr "" @@ -2943,10 +3013,10 @@ msgctxt "dialog title" msgid "Delete category" msgstr "" -#. [src.collections.views.3817188998] - dialog title +#. [src.collections.views.CollectionList.3817188998] - dialog title #. defaultMessage is: #. Delete collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Delete collections" msgstr "" @@ -2959,14 +3029,31 @@ msgctxt "dialog header" msgid "Delete customer" msgstr "" -#. [src.customers.views.1946482599] - dialog header +#. [src.customers.views.CustomerList.1946482599] - dialog header #. defaultMessage is: #. Delete customers -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "dialog header" msgid "Delete customers" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.632633254] - dialog header +#. defaultMessage is: +#. Delete draft order +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "dialog header" +msgid "Delete draft order" +msgstr "" + +#. [src.shipping.views.ShippingZoneDetails.1947090060] - unassign country, +#. dialog header +#. defaultMessage is: +#. Delete from shipping zone +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country, dialog header" +msgid "Delete from shipping zone" +msgstr "" + #. [src.collections.views.942133001] - dialog title #. defaultMessage is: #. Delete image @@ -3027,6 +3114,14 @@ msgctxt "description" msgid "Deleted collection" msgstr "Kolleksiya silindi" +#. [src.orders.views.OrderDraftList.1648805446] +#. defaultMessage is: +#. Deleted draft orders +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json +msgctxt "description" +msgid "Deleted draft orders" +msgstr "" + #. [menuListDeletedMenu] #. defaultMessage is: #. Deleted menu @@ -3626,14 +3721,6 @@ msgctxt "order history message" msgid "Fulfilled {quantity} items" msgstr "" -#. [src.orders.components.OrderListFilter.2943502192] - order -#. defaultMessage is: -#. Fulfillment Status -#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json -msgctxt "order" -msgid "Fulfillment Status" -msgstr "" - #. [src.orders.components.OrderHistory.3081292385] - order history message #. defaultMessage is: #. Fulfillment confirmation was sent to customer @@ -3790,12 +3877,12 @@ msgctxt "description" msgid "If empty, the preview shows what will be autogenerated." msgstr "" -#. [src.attributes.components.AttributeProperties.2519239682] +#. [src.attributes.components.AttributeProperties.4048785456] #. defaultMessage is: -#. If enable this attribute can be used as a column in product table. +#. If enabled this attribute can be used as a column in product table. #: build/locale/src/attributes/components/AttributeProperties/AttributeProperties.json msgctxt "description" -msgid "If enable this attribute can be used as a column in product table." +msgid "If enabled this attribute can be used as a column in product table." msgstr "" #. [src.attributes.components.AttributeProperties.787251583] @@ -3901,6 +3988,22 @@ msgctxt "product variant stock" msgid "Inventory" msgstr "" +#. [src.staff.components.StaffAddMemberDialog.1481503299] - dialog header +#. defaultMessage is: +#. Invite Staff Member +#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json +msgctxt "dialog header" +msgid "Invite Staff Member" +msgstr "" + +#. [src.staff.components.StaffListPage.797461521] - button +#. defaultMessage is: +#. Invite staff member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "button" +msgid "Invite staff member" +msgstr "" + #. [src.productTypes.components.ProductTypeShipping.2143413921] - switch #. button #. defaultMessage is: @@ -4253,6 +4356,14 @@ msgctxt "voucher requirement" msgid "Minimum quantity of items" msgstr "" +#. [src.configuration.1233229030] +#. defaultMessage is: +#. Miscellaneous +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Miscellaneous" +msgstr "" + #. [src.attributes.components.AttributeDetails.3334509011] - product attribute #. type #. defaultMessage is: @@ -5085,6 +5196,14 @@ msgctxt "description" msgid "Order History" msgstr "" +#. [src.orders.components.OrderListFilter.2222765704] +#. defaultMessage is: +#. Order Status +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +msgctxt "description" +msgid "Order Status" +msgstr "" + #. [src.orders.components.OrderHistory.1230178536] - order history message #. defaultMessage is: #. Order address was updated @@ -5101,13 +5220,13 @@ msgctxt "order history message" msgid "Order confirmation was sent to customer" msgstr "" -#. [src.orders.views.1872939752] +#. [src.orders.views.OrderDraftList.1872939752] #. defaultMessage is: #. Order draft succesfully created #. [src.orders.views.OrderList.1872939752] #. defaultMessage is: #. Order draft succesfully created -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json #: build/locale/src/orders/views/OrderList/OrderList.json msgctxt "description" msgid "Order draft succesfully created" @@ -5772,6 +5891,14 @@ msgctxt "description" msgid "Product Name" msgstr "" +#. [src.configuration.3655543906] +#. defaultMessage is: +#. Product Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Product Settings" +msgstr "" + #. [src.discounts.components.DiscountProducts.4257289053] #. defaultMessage is: #. Product Type @@ -5930,12 +6057,12 @@ msgctxt "order history message" msgid "Products were added to draft order" msgstr "" -#. [src.orders.components.OrderHistory.2574162126] - order history message +#. [src.orders.components.OrderHistory.4067959693] - order history message #. defaultMessage is: -#. Products were removed from draft order +#. Products were deleted from draft order #: build/locale/src/orders/components/OrderHistory/OrderHistory.json msgctxt "order history message" -msgid "Products were removed from draft order" +msgid "Products were deleted from draft order" msgstr "" #. [src.properties] @@ -5962,10 +6089,10 @@ msgctxt "description" msgid "Provided email address does not exist in our database." msgstr "" -#. [src.collections.views.1547167026] - publish collections +#. [src.collections.views.CollectionList.1547167026] - publish collections #. defaultMessage is: #. Publish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "publish collections" msgid "Publish" msgstr "" @@ -6002,10 +6129,10 @@ msgctxt "dialog header" msgid "Publish Products" msgstr "" -#. [src.collections.views.2823425739] - dialog title +#. [src.collections.views.CollectionList.2823425739] - dialog title #. defaultMessage is: #. Publish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Publish collections" msgstr "" @@ -6179,6 +6306,18 @@ msgctxt "shipping method price" msgid "Rate Price" msgstr "" +#. [src.orders.components.OrderListFilter.2415661583] - order status +#. defaultMessage is: +#. Ready to Capture +#. [src.orders.views.OrderList.readyToCapture] - order status +#. defaultMessage is: +#. Ready to Capture +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +#: build/locale/src/orders/views/OrderList/filters.json +msgctxt "order status" +msgid "Ready to Capture" +msgstr "" + #. [src.customers.components.CustomerOrders.3878642352] - section header #. defaultMessage is: #. Recent orders @@ -6227,22 +6366,14 @@ msgctxt "switch button" msgid "Release all stock allocated to this order" msgstr "" -#. [src.auth.components.LoginPage.3182284913] - login -#. defaultMessage is: -#. Remember me -#: build/locale/src/auth/components/LoginPage/LoginPage.json -msgctxt "login" -msgid "Remember me" -msgstr "" - #. [src.categories.views.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. -#. [src.categories.views.3488150607] +#. [src.categories.views.CategoryList.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "description" msgid "Remember this will also delete all products assigned to this category." msgstr "" @@ -6255,39 +6386,6 @@ msgctxt "button" msgid "Remove" msgstr "" -#. [src.products.views.490753666] - dialog header -#. defaultMessage is: -#. Remove Image -#: build/locale/src/products/views/ProductImage.json -msgctxt "dialog header" -msgid "Remove Image" -msgstr "" - -#. [src.orders.components.OrderDraftCancelDialog.500287069] - dialog header -#. defaultMessage is: -#. Remove draft order -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "dialog header" -msgid "Remove draft order" -msgstr "" - -#. [src.shipping.views.ShippingZoneDetails.254167659] - unassign country, -#. dialog header -#. defaultMessage is: -#. Remove from shipping zone -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country, dialog header" -msgid "Remove from shipping zone" -msgstr "" - -#. [src.orders.views.3880993240] -#. defaultMessage is: -#. Removed draft orders -#: build/locale/src/orders/views/OrderDraftList.json -msgctxt "description" -msgid "Removed draft orders" -msgstr "" - #. [src.pages.views.1457312643] #. defaultMessage is: #. Removed page @@ -6453,6 +6551,18 @@ msgctxt "button" msgid "Save" msgstr "" +#. [src.components.Filter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#. [src.components.TableFilter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#: build/locale/src/components/Filter/FilterSearch.json +#: build/locale/src/components/TableFilter/FilterChips.json +msgctxt "button" +msgid "Save Custom Search" +msgstr "" + #. [src.components.SaveFilterTabDialog.1514415736] - save filter tab, header #. defaultMessage is: #. Save Custom Search @@ -6461,14 +6571,6 @@ msgctxt "save filter tab, header" msgid "Save Custom Search" msgstr "" -#. [src.components.TableFilter.1514415736] - button -#. defaultMessage is: -#. Save Custom Search -#: build/locale/src/components/TableFilter/FilterChips.json -msgctxt "button" -msgid "Save Custom Search" -msgstr "" - #. [src.products.components.ProductVariantCreatePage.2853608829] - button #. defaultMessage is: #. Save variant @@ -6485,6 +6587,14 @@ msgctxt "description" msgid "Saved changes" msgstr "" +#. [src.attributes.components.AttributeListPage.3916653510] +#. defaultMessage is: +#. Search Attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "description" +msgid "Search Attribute" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.902296540] #. defaultMessage is: #. Search Attributes @@ -6501,10 +6611,30 @@ msgctxt "description" msgid "Search Categories" msgstr "" +#. [src.categories.components.CategoryListPage.3841025483] +#. defaultMessage is: +#. Search Category +#. [src.translations.components.TranslationsEntitiesListPage.3841025483] +#. defaultMessage is: +#. Search Category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Category" +msgstr "" + +#. [src.collections.components.CollectionListPage.4057224233] +#. defaultMessage is: +#. Search Collection #. [src.components.AssignCollectionDialog.4057224233] #. defaultMessage is: #. Search Collection +#. [src.translations.components.TranslationsEntitiesListPage.4057224233] +#. defaultMessage is: +#. Search Collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json #: build/locale/src/components/AssignCollectionDialog/AssignCollectionDialog.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json msgctxt "description" msgid "Search Collection" msgstr "" @@ -6517,6 +6647,14 @@ msgctxt "description" msgid "Search Countries" msgstr "" +#. [src.customers.components.CustomerListPage.1643417013] +#. defaultMessage is: +#. Search Customer +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "description" +msgid "Search Customer" +msgstr "" + #. [src.orders.components.OrderCustomer.2433460203] #. defaultMessage is: #. Search Customers @@ -6525,6 +6663,14 @@ msgctxt "description" msgid "Search Customers" msgstr "" +#. [src.orders.components.OrderDraftListPage.77765281] +#. defaultMessage is: +#. Search Draft +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "description" +msgid "Search Draft" +msgstr "" + #. [src.translations.components.TranslationsCategoriesPage.1406947243] #. defaultMessage is: #. Search Engine Description @@ -6605,6 +6751,34 @@ msgctxt "description" msgid "Search Orders..." msgstr "" +#. [src.translations.components.TranslationsEntitiesListPage.2559018090] +#. defaultMessage is: +#. Search Page +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Page" +msgstr "" + +#. [src.translations.components.TranslationsEntitiesListPage.2105464697] +#. defaultMessage is: +#. Search Product +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product" +msgstr "" + +#. [src.productTypes.components.ProductTypeListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#. [src.translations.components.TranslationsEntitiesListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product Type" +msgstr "" + #. [src.components.AssignProductDialog.2850255786] #. defaultMessage is: #. Search Products @@ -6617,14 +6791,46 @@ msgctxt "description" msgid "Search Products" msgstr "" -#. [src.products.components.ProductListPage.3550330425] +#. [src.products.components.ProductListFilter.3550330425] #. defaultMessage is: #. Search Products... -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Search Products..." msgstr "" +#. [src.discounts.components.SaleListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#. [src.translations.components.TranslationsEntitiesListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Sale" +msgstr "" + +#. [src.staff.components.StaffListPage.61043583] +#. defaultMessage is: +#. Search Staff Member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "description" +msgid "Search Staff Member" +msgstr "" + +#. [src.discounts.components.VoucherListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#. [src.translations.components.TranslationsEntitiesListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Voucher" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.524117994] #. defaultMessage is: #. Search by attribute name @@ -6731,10 +6937,10 @@ msgctxt "description" msgid "Select all orders where:" msgstr "" -#. [src.products.components.ProductListPage.1421689426] +#. [src.products.components.ProductListFilter.1421689426] #. defaultMessage is: #. Select all products where: -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Select all products where:" msgstr "" @@ -6820,6 +7026,14 @@ msgctxt "description" msgid "Set plugin as Active" msgstr "" +#. [src.components.VisibilityCard.292404896] +#. defaultMessage is: +#. Set publication date +#: build/locale/src/components/VisibilityCard/VisibilityCard.json +msgctxt "description" +msgid "Set publication date" +msgstr "" + #. [src.discounts.shipment] - voucher discount #. defaultMessage is: #. Shipment @@ -7085,6 +7299,14 @@ msgctxt "staff section name" msgid "Staff Members" msgstr "" +#. [src.configuration.3140151600] +#. defaultMessage is: +#. Staff Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Staff Settings" +msgstr "" + #. [src.standard] - tax rate #. defaultMessage is: #. Standard @@ -8069,10 +8291,10 @@ msgctxt "payment status" msgid "Unpaid" msgstr "" -#. [src.collections.views.2237014112] - unpublish collections +#. [src.collections.views.CollectionList.2237014112] - unpublish collections #. defaultMessage is: #. Unpublish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "unpublish collections" msgid "Unpublish" msgstr "" @@ -8109,10 +8331,10 @@ msgctxt "dialog header" msgid "Unpublish Products" msgstr "" -#. [src.collections.views.2637364047] - dialog title +#. [src.collections.views.CollectionList.2637364047] - dialog title #. defaultMessage is: #. Unpublish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Unpublish collections" msgstr "" @@ -8612,6 +8834,22 @@ msgctxt "description" msgid "ZIP / Postal code" msgstr "" +#. [src.productTypes.components.ProductTypeListPage.3479705616] - button +#. defaultMessage is: +#. create product type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "button" +msgid "create product type" +msgstr "" + +#. [src.staff.views.1308770978] - dialog header +#. defaultMessage is: +#. delete Staff User +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "dialog header" +msgid "delete Staff User" +msgstr "" + #. [orderPaymentVATDoesNotApply] - vat not included in order price #. defaultMessage is: #. does not apply @@ -8685,19 +8923,35 @@ msgctxt "product status is set as" msgid "is set as" msgstr "" -#. [src.staff.views.2240444792] - dialog header -#. defaultMessage is: -#. remove Staff User -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "dialog header" -msgid "remove Staff User" -msgstr "" - -#. [src.components.VisibilityCard.1815688500] +#. [src.collections.components.CollectionCreatePage.1815688500] - collection #. defaultMessage is: #. since {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.1815688500] - collection +#. defaultMessage is: +#. since {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "since {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.1815688500] - page +#. defaultMessage is: +#. since {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "since {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#. [src.products.components.ProductUpdatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "since {date}" msgstr "" @@ -8725,11 +8979,35 @@ msgctxt "weight" msgid "to {value} {unit}" msgstr "" -#. [src.components.VisibilityCard.2001551496] +#. [src.collections.components.CollectionCreatePage.2001551496] - collection #. defaultMessage is: #. will be visible from {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.2001551496] - collection +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "will be visible from {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.2001551496] - page +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "will be visible from {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#. [src.products.components.ProductUpdatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "will be visible from {date}" msgstr "" diff --git a/locale/bg.json b/locale/bg.json index e6eeaae37..4ab6806e8 100644 --- a/locale/bg.json +++ b/locale/bg.json @@ -1 +1 @@ -{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.350498821":"Добавя атрибут","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.2519239682":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"Име","src.categories.components.CategoryProducts.636461959":"Име","src.collections.components.CollectionProducts.636461959":"Име","src.products.components.ProductDetailsForm.636461959":"Име","src.collections.components.CollectionDetails.636461959":"Име","src.components.ProductList.636461959":"Име","src.discounts.components.SaleInfo.636461959":"Име","src.discounts.components.SaleList.636461959":"Име","src.discounts.components.SaleSummary.636461959":"Име","menuItemDialogNameLabel":"Име","src.products.components.ProductVariants.636461959":"Име","src.shipping.components.ShippingZoneRates.636461959":"Име","src.shipping.components.ShippingZonesList.636461959":"Име","src.staff.components.StaffList.636461959":"Име","src.translations.components.TranslationsEntitiesList.636461959":"Име","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.254756045":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.3182284913":"","src.auth.components.LoginPage.109182747":"Вход","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"","src.categories.views.2004894945":"","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.3229914152":"","src.categories.components.CategoryList.435697837":"","src.categories.components.CategoryList.2159874182":"Подкатегории","src.categories.components.CategoryUpdatePage.2159874182":"Подкатегории","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.228151782":"Добавяне на категория","src.categories.components.CategoryProducts.2968663655":"Продукти","src.categories.components.CategoryUpdatePage.2968663655":"Продукти","src.discounts.components.DiscountCategories.2968663655":"Продукти","src.discounts.components.DiscountCollections.2968663655":"Продукти","src.products":"Продукти","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryProducts.3554578821":"Добавя продукт","src.categories.components.CategoryProductsCard.3554578821":"Добавя продукт","src.categories.components.CategoryProducts.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProducts.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.categories.components.CategoryProductsCard.4164156574":"","src.categories.views.1754466114":"","src.categories.views.1140231710":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.712767046":"","src.categories.views.299584400":"","src.categories.views.844574071":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.collections.components.CollectionCreatePage.3958681866":"","src.collections.components.CollectionListPage.3958681866":"","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"","src.availability":"","src.collections.components.CollectionList.3640454975":"Публикувано","src.collections.components.CollectionProducts.3640454975":"Публикувано","src.discounts.components.DiscountProducts.3640454975":"Публикувано","src.components.ProductList.3640454975":"Публикувано","src.products.components.ProductListPage.3640454975":"Публикувано","src.pages.components.PageList.3640454975":"Публикувано","src.products.views.ProductList.published":"Публикувано","src.collections.components.CollectionList.2341910657":"Не е публикувано","src.collections.components.CollectionProducts.2341910657":"Не е публикувано","src.discounts.components.DiscountProducts.2341910657":"Не е публикувано","src.components.ProductList.2341910657":"Не е публикувано","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.686910896":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"","src.collections.views.2402899582":"","src.collections.views.2237014112":"Непубликува","src.pages.views.2237014112":"Непубликува","src.products.views.ProductList.2237014112":"Непубликува","src.collections.views.1547167026":"Публикува","src.pages.views.1547167026":"Публикува","src.products.views.ProductList.1547167026":"Публикува","src.collections.views.2823425739":"","src.collections.views.1348793822":"","src.collections.views.2637364047":"","src.collections.views.3944356444":"","src.collections.views.3817188998":"","src.collections.views.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"Излизане","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.4057224233":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"","src.components.ErrorMessageCard.2845142593":"","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.FilterBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"Добавя","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.ProductList.1134347598":"Цена","src.orders.components.OrderDraftDetailsProducts.1134347598":"Цена","src.orders.components.OrderFulfillment.1134347598":"Цена","src.products.components.ProductListPage.1134347598":"Цена","src.products.components.ProductPricing.1134347598":"Цена","src.orders.components.OrderUnfulfilledItems.1134347598":"Цена","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"Цена","src.shipping.components.ShippingZoneRates.1134347598":"Цена","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"","src.pages.components.PageList.1459686496":"","src.products.components.ProductListFilter.1459686496":"","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"Скрито","src.products.views.ProductList.hidden":"Скрито","src.components.VisibilityCard.1815688500":"","src.components.VisibilityCard.2001551496":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","configurationMenuStaff":"","configurationMenuShipping":"","configurationMenuTaxes":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","src.customers.components.CustomerAddress.1320082647":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"Адрес на плащане","src.customers.components.CustomerAddresses.3517722732":"Адрес за доставка","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"Адрес","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"Бележки","src.orders.components.OrderCustomerNote.1520756907":"Бележки","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"Бележка","src.customers.components.CustomerDetails.577013340":"Бележка","src.customers.components.CustomerCreatePage.1934221653":"","src.customers.components.CustomerListPage.1934221653":"","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerOrders.3878642352":"","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"Дата","src.orders.components.OrderDraftList.4205493358":"Дата","src.orders.components.OrderList.4205493358":"Дата","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"Статус","src.orders.components.OrderListFilter.1756106276":"Статус","src.products.components.ProductListFilter.1756106276":"Статус","src.products.components.ProductVariants.1756106276":"Статус","src.customers.components.CustomerOrders.878013594":"Тотал","src.orders.components.OrderDraftDetailsProducts.878013594":"Тотал","src.orders.components.OrderDraftDetailsSummary.878013594":"Тотал","src.orders.components.OrderDraftList.878013594":"Тотал","src.orders.components.OrderFulfillment.878013594":"Тотал","src.orders.components.OrderUnfulfilledItems.878013594":"Тотал","src.orders.components.OrderList.878013594":"Тотал","src.orders.components.OrderPayment.878013594":"Тотал","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.1946482599":"","src.customers.views.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"Стойност","src.discounts.components.SaleSummary.1148029984":"Стойност","src.discounts.components.VoucherList.1148029984":"Стойност","src.discounts.components.VoucherSummary.1148029984":"Стойност","src.discounts.components.VoucherValue.1148029984":"Стойност","src.products.components.ProductAttributes.1148029984":"Стойност","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.1742771332":"","src.discounts.components.SalePricing.1099355007":"","src.products.components.ProductPricing.1099355007":"","src.products.components.ProductVariantPrice.1099355007":"","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"Страни","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"","src.discounts.components.VoucherSummary.78726751":"","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.1536809153":"Добавя ваучер","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"","src.discounts.shipment":"Пратка","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.2809303671":"","src.discounts.views.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.367317371":"","src.discounts.views.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"Отмяна","src.orders.views.OrderList.3528672691":"Отмяна","src.confirm":"","src.delete":"","src.edit":"Редакция","src.manage":"","src.remove":"Премахва","src.save":"Запазва","src.show":"","src.undo":"","src.attributes":"Атрибути","src.products.components.ProductAttributes.4153345096":"Атрибути","src.categories":"Категории","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"Конфигурация","src.customers":"Клиенти","src.draftOrders":"","src.home":"Начало","src.navigation":"","src.orders":"Поръчки","src.pages":"","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"Продажби","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"","src.taxes.components.CountryListPage.3955023266":"","src.translations":"","src.vouchers":"Ваучери","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"","src.partiallyPaid":"","src.partiallyRefunded":"","src.refunded":"","src.unpaid":"","src.cancelled":"","src.draft":"Чернова","src.fulfilled":"","src.orders.views.OrderList.fulfilled":"","src.orders.components.OrderListFilter.1712863026":"","src.partiallyFulfilled":"","src.unfulfilled":"","src.orders.views.OrderList.unfulfilled":"","src.orders.components.OrderListFilter.1751787272":"","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","src.1395232177":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"Анулиране на поръчката","src.orders.components.OrderDetailsPage.1854613983":"Анулиране на поръчката","src.orders.components.OrderDraftPage.1854613983":"Анулиране на поръчката","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"Клиент","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"Клиент","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"","src.orders.components.OrderCustomerEditDialog.1411666943":"","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.500287069":"","src.orders.components.OrderDraftCancelDialog.3199827590":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"Продукт","src.orders.components.OrderUnfulfilledItems.1895667608":"Продукт","src.orders.components.OrderDraftDetailsProducts.2796503714":"Количество","src.orders.components.OrderFulfillment.2796503714":"Количество","src.orders.components.OrderFulfillmentDialog.2796503714":"Количество","src.orders.components.OrderUnfulfilledItems.2796503714":"Количество","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"Междинна сума","src.orders.components.OrderPayment.781550514":"Междинна сума","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"","src.orders.components.OrderListPage.2826235371":"","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"","src.orders.components.OrderFulfillmentCancelDialog.732594284":"","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"SKU","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.2574162126":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"Поръчката е направена","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"Плащане","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2943502192":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"Доставка","src.productTypes.components.ProductTypeShipping.1325966144":"Доставка","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"Доставка","src.orders.components.OrderPayment.3768782744":"Субсидирана сума","src.orders.components.OrderPayment.2320183694":"Captured amount","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"Улавяне","src.orders.components.OrderPayment.2845258362":"Възстановяване","src.orders.components.OrderPayment.2444197639":"","src.orders.components.OrderPayment.3500506678":"","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"Количество","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.2775402904":"","src.products.components.ProductListPage.2775402904":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.3880993240":"","src.orders.views.1161115149":"","src.orders.views.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.755314116":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"","src.pages.components.PageList.1124600214":"","src.pages.components.PageInfo.1116746286":"","src.translations.components.TranslationsPagesPage.1116746286":"","src.pages.components.PageList.3478065224":"","src.pages.components.PageSlug.3478065224":"","src.productTypes.components.ProductTypeAttributes.3478065224":"","src.pages.components.PageList.3767550649":"","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.1767905232":"","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.3785394515":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"Стойности","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"Изображения","src.products.components.ProductVariantImages.3240888698":"Изображения","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"","src.products.components.ProductVariantStock.3841616483":"","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListPage.821159718":"","src.products.components.ProductListPage.1421689426":"","src.products.components.ProductListPage.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"","prodictStockInventoryLabel":"","src.products.components.ProductVariantStock.3490038570":"","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"","src.products.components.ProductVariants.2153006789":"","src.products.components.ProductVariantNavigation.2845381934":"Добавя вариант","src.products.components.ProductVariants.2845381934":"Добавя вариант","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1542417144":"","src.products.views.1591632382":"","src.products.views.490753666":"","src.products.views.672103788":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.1694086800":"","src.products.views.ProductList.224127438":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.products.views.2178905289":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1756957616":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.889729490":"Добавя тип на продукта","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.4080551769":"","src.productTypes.views.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.352297149":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2474410767":"","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.254167659":"","src.shipping.views.ShippingZoneDetails.1790261672":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"Ключ","src.siteSettings.components.SiteSettingsKeys.2446088470":"Ключ","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.3490059488":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"Разрешения","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.3247064221":"Активно","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.802625341":"Добавя член на персонала","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"Потребителят е активен","src.staff.views.2240444792":"","src.staff.views.2728048444":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file +{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.3824684885":"","src.attributes.components.AttributeListPage.2417065806":"","src.attributes.components.AttributeListPage.3916653510":"","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.4048785456":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"Име","src.categories.components.CategoryProductList.636461959":"Име","src.components.ProductList.636461959":"Име","src.products.components.ProductList.636461959":"Име","src.collections.components.CollectionDetails.636461959":"Име","src.collections.components.CollectionProducts.636461959":"Име","src.products.components.ProductDetailsForm.636461959":"Име","src.discounts.components.SaleInfo.636461959":"Име","src.discounts.components.SaleList.636461959":"Име","src.discounts.components.SaleSummary.636461959":"Име","menuItemDialogNameLabel":"Име","src.plugins.components.PluginsList.636461959":"Име","src.products.components.ProductVariants.636461959":"Име","src.shipping.components.ShippingZoneRates.636461959":"Име","src.shipping.components.ShippingZonesList.636461959":"Име","src.staff.components.StaffList.636461959":"Име","src.translations.components.TranslationsEntitiesList.636461959":"Име","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.351422234":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.109182747":"Вход","src.auth.components.LoginPage.4028609483":"","src.auth.components.NewPasswordPage.1915811227":"","src.auth.components.NewPasswordPage.1254879564":"","src.auth.components.NewPasswordPage.2799926859":"","src.auth.components.NewPasswordPage.4253911811":"","src.auth.components.NewPasswordPage.2342634351":"","src.auth.components.ResetPasswordPage.2370700732":"","src.auth.components.ResetPasswordPage.3663311080":"","src.auth.components.ResetPasswordSuccessPage.4066297200":"","src.auth.components.ResetPasswordSuccessPage.2245157344":"","src.auth.views.2388238158":"","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"","src.categories.views.2004894945":"","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.2159874182":"Подкатегории","src.categories.components.CategoryUpdatePage.2159874182":"Подкатегории","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.1140231710":"","src.categories.views.1140231710":"","src.categories.components.CategoryListPage.4294878092":"","src.categories.components.CategoryListPage.3841025483":"","src.translations.components.TranslationsEntitiesListPage.3841025483":"","src.categories.components.CategoryProductList.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductList.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProductList.3640454975":"Публикувано","src.components.ProductList.3640454975":"Публикувано","src.products.components.ProductList.3640454975":"Публикувано","src.products.components.ProductListPage.3640454975":"Публикувано","productStatusLabel":"Публикувано","src.collections.components.CollectionList.3640454975":"Публикувано","src.collections.components.CollectionProducts.3640454975":"Публикувано","src.discounts.components.DiscountProducts.3640454975":"Публикувано","src.pages.components.PageList.3640454975":"Публикувано","src.products.views.ProductList.published":"Публикувано","src.categories.components.CategoryProductList.1134347598":"Цена","src.orders.components.OrderFulfillment.1134347598":"Цена","src.products.components.ProductList.1134347598":"Цена","src.products.components.ProductListPage.1134347598":"Цена","src.products.components.ProductPricing.1134347598":"Цена","src.components.ProductList.1134347598":"Цена","src.orders.components.OrderDraftDetailsProducts.1134347598":"Цена","src.orders.components.OrderUnfulfilledItems.1134347598":"Цена","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"Цена","src.shipping.components.ShippingZoneRates.1134347598":"Цена","src.categories.components.CategoryProductList.2341910657":"Не е публикувано","src.products.components.ProductList.2341910657":"Не е публикувано","src.collections.components.CollectionList.2341910657":"Не е публикувано","src.collections.components.CollectionProducts.2341910657":"Не е публикувано","src.discounts.components.DiscountProducts.2341910657":"Не е публикувано","src.components.ProductList.2341910657":"Не е публикувано","src.categories.components.CategoryProductList.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.products.components.ProductList.1657559629":"","src.categories.components.CategoryProducts.4164156574":"","src.categories.components.CategoryProducts.3554578821":"Добавя продукт","src.categories.components.CategoryUpdatePage.2968663655":"Продукти","src.discounts.components.DiscountCategories.2968663655":"Продукти","src.discounts.components.DiscountCollections.2968663655":"Продукти","src.products":"Продукти","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryUpdatePage.3229914152":"","src.categories.components.CategoryUpdatePage.770296100":"","src.categories.views.1754466114":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.CategoryList.3488150607":"","src.categories.views.712767046":"","src.categories.views.CategoryList.712767046":"","src.categories.views.299584400":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.categories.views.CategoryList.2144707585":"","src.collections.components.CollectionCreatePage.3958681866":"","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionCreatePage.2001551496":"","src.collections.components.CollectionDetailsPage.2001551496":"","src.pages.components.PageDetailsPage.2001551496":"","src.products.components.ProductCreatePage.2001551496":"","src.products.components.ProductUpdatePage.2001551496":"","src.collections.components.CollectionCreatePage.1815688500":"","src.collections.components.CollectionDetailsPage.1815688500":"","src.pages.components.PageDetailsPage.1815688500":"","src.products.components.ProductCreatePage.1815688500":"","src.products.components.ProductUpdatePage.1815688500":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"","src.availability":"","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionListPage.686910896":"","src.collections.views.686910896":"","src.collections.components.CollectionListPage.1631917001":"","src.collections.components.CollectionListPage.4057224233":"","src.components.AssignCollectionDialog.4057224233":"","src.translations.components.TranslationsEntitiesListPage.4057224233":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"","src.collections.views.2402899582":"","src.collections.views.CollectionList.2237014112":"Непубликува","src.pages.views.2237014112":"Непубликува","src.products.views.ProductList.2237014112":"Непубликува","src.collections.views.CollectionList.1547167026":"Публикува","src.pages.views.1547167026":"Публикува","src.products.views.ProductList.1547167026":"Публикува","src.collections.views.CollectionList.2823425739":"","src.collections.views.CollectionList.1348793822":"","src.collections.views.CollectionList.2637364047":"","src.collections.views.CollectionList.3944356444":"","src.collections.views.CollectionList.3817188998":"","src.collections.views.CollectionList.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"Излизане","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"","src.components.ErrorMessageCard.2845142593":"","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.Filter.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.Filter.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.FilterBar.2340527467":"","src.components.SearchBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"Добавя","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"","src.pages.components.PageList.1459686496":"","src.products.components.ProductListFilter.1459686496":"","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"Скрито","src.products.views.ProductList.hidden":"Скрито","src.components.VisibilityCard.292404896":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","src.configuration.2326418019":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","src.configuration.3655543906":"","configurationMenuShipping":"","configurationMenuTaxes":"","src.configuration.3140151600":"","configurationMenuStaff":"","src.configuration.1233229030":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","configurationPluginsPages":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"Адрес на плащане","src.customers.components.CustomerAddresses.3517722732":"Адрес за доставка","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"Адрес","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"Бележки","src.orders.components.OrderCustomerNote.1520756907":"Бележки","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"Бележка","src.customers.components.CustomerDetails.577013340":"Бележка","src.customers.components.CustomerCreatePage.1934221653":"","src.customers.components.CustomerListPage.1934221653":"","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerListPage.477293306":"","src.customers.components.CustomerListPage.1643417013":"","src.customers.components.CustomerOrders.3878642352":"","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"Дата","src.orders.components.OrderDraftList.4205493358":"Дата","src.orders.components.OrderList.4205493358":"Дата","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"Статус","src.orders.components.OrderListFilter.1756106276":"Статус","src.plugins.components.PluginInfo.1756106276":"Статус","src.products.components.ProductListFilter.1756106276":"Статус","src.products.components.ProductVariants.1756106276":"Статус","src.customers.components.CustomerOrders.878013594":"Тотал","src.orders.components.OrderDraftDetailsProducts.878013594":"Тотал","src.orders.components.OrderDraftDetailsSummary.878013594":"Тотал","src.orders.components.OrderDraftList.878013594":"Тотал","src.orders.components.OrderFulfillment.878013594":"Тотал","src.orders.components.OrderUnfulfilledItems.878013594":"Тотал","src.orders.components.OrderList.878013594":"Тотал","src.orders.components.OrderPayment.878013594":"Тотал","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.CustomerList.1946482599":"","src.customers.views.CustomerList.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","src.discounts.components.SaleListPage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"Стойност","src.discounts.components.SaleSummary.1148029984":"Стойност","src.discounts.components.VoucherList.1148029984":"Стойност","src.discounts.components.VoucherSummary.1148029984":"Стойност","src.discounts.components.VoucherValue.1148029984":"Стойност","src.products.components.ProductAttributes.1148029984":"Стойност","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.3907768880":"","src.discounts.components.SaleListPage.1866913828":"","src.translations.components.TranslationsEntitiesListPage.1866913828":"","src.discounts.components.SalePricing.1099355007":"","src.products.components.ProductPricing.1099355007":"","src.products.components.ProductVariantPrice.1099355007":"","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"Страни","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"","src.discounts.components.VoucherSummary.78726751":"","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.614836274":"","src.discounts.components.VoucherListPage.1112241061":"","src.discounts.components.VoucherListPage.1930485532":"","src.translations.components.TranslationsEntitiesListPage.1930485532":"","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"","src.discounts.shipment":"Пратка","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.SaleList.2809303671":"","src.discounts.views.SaleList.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.VoucherList.367317371":"","src.discounts.views.VoucherList.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.somethingWentWrong":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"Отмяна","src.orders.views.OrderList.3528672691":"Отмяна","src.confirm":"","src.delete":"","src.edit":"Редакция","src.manage":"","src.remove":"Премахва","src.save":"Запазва","src.show":"","src.undo":"","src.attributes":"Атрибути","src.products.components.ProductAttributes.4153345096":"Атрибути","src.categories":"Категории","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"Конфигурация","src.customers":"Клиенти","src.draftOrders":"","src.home":"Начало","src.navigation":"","src.orders":"Поръчки","src.pages":"","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.plugins":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"Продажби","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"","src.taxes.components.CountryListPage.3955023266":"","src.translations":"","src.vouchers":"Ваучери","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"","src.partiallyPaid":"","src.partiallyRefunded":"","src.refunded":"","src.unpaid":"","src.cancelled":"","src.draft":"Чернова","src.fulfilled":"","src.orders.views.OrderList.fulfilled":"","src.orders.components.OrderListFilter.1712863026":"","src.partiallyFulfilled":"","src.unfulfilled":"","src.orders.views.OrderList.unfulfilled":"","src.orders.components.OrderListFilter.1751787272":"","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"Анулиране на поръчката","src.orders.components.OrderDetailsPage.1854613983":"Анулиране на поръчката","src.orders.components.OrderDraftPage.1854613983":"Анулиране на поръчката","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"Клиент","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"Клиент","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"","src.orders.components.OrderCustomerEditDialog.1411666943":"","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.632633254":"","src.orders.components.OrderDraftCancelDialog.36681973":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"Продукт","src.orders.components.OrderUnfulfilledItems.1895667608":"Продукт","src.orders.components.OrderDraftDetailsProducts.2796503714":"Количество","src.orders.components.OrderFulfillment.2796503714":"Количество","src.orders.components.OrderFulfillmentDialog.2796503714":"Количество","src.orders.components.OrderUnfulfilledItems.2796503714":"Количество","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"Междинна сума","src.orders.components.OrderPayment.781550514":"Междинна сума","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"","src.orders.components.OrderListPage.2826235371":"","src.orders.components.OrderDraftListPage.551325728":"","src.orders.components.OrderDraftListPage.77765281":"","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"","src.orders.components.OrderFulfillmentCancelDialog.732594284":"","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"SKU","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.4067959693":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"Поръчката е направена","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"Плащане","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2415661583":"","src.orders.views.OrderList.readyToCapture":"","src.orders.components.OrderListFilter.2222765704":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"Доставка","src.productTypes.components.ProductTypeShipping.1325966144":"Доставка","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"Доставка","src.orders.components.OrderPayment.3768782744":"Субсидирана сума","src.orders.components.OrderPayment.2320183694":"Captured amount","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"Улавяне","src.orders.components.OrderPayment.2845258362":"Възстановяване","src.orders.components.OrderPayment.2444197639":"","src.orders.components.OrderPayment.3500506678":"","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"Количество","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.1542417144":"","src.products.components.ProductListPage.1542417144":"","src.products.views.1542417144":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.OrderDraftList.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.OrderDraftList.1648805446":"","src.orders.views.OrderDraftList.1161115149":"","src.orders.views.OrderDraftList.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.1068617485":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"","src.pages.components.PageList.1124600214":"","src.pages.components.PageInfo.1116746286":"","src.translations.components.TranslationsPagesPage.1116746286":"","src.pages.components.PageList.3478065224":"","src.pages.components.PageSlug.3478065224":"","src.productTypes.components.ProductTypeAttributes.3478065224":"","src.pages.components.PageList.3767550649":"","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.3785394515":"","src.pages.views.3785394515":"","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.plugins.components.PluginInfo.3425535100":"","src.plugins.components.PluginsDetailsPage.3425535100":"","src.plugins.components.PluginInfo.1049131348":"","src.plugins.components.PluginInfo.4013064767":"","src.plugins.components.PluginsDetailsPage.3352026836":"","src.plugins.components.PluginsDetailsPage.2277745418":"","src.plugins.components.PluginsDetailsPage.1970881031":"","src.plugins.components.PluginSettings.1970881031":"","src.plugins.components.PluginsDetailsPage.4241018152":"","src.plugins.components.PluginsList.3247064221":"Активно","src.staff.components.StaffList.3247064221":"Активно","src.plugins.components.PluginsList.4120604650":"","src.plugins.components.PluginsList.666641390":"","src.plugins.views.100549097":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"Стойности","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"Изображения","src.products.components.ProductVariantImages.3240888698":"Изображения","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"","src.products.components.ProductVariantStock.3841616483":"","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListFilter.821159718":"","src.products.components.ProductListFilter.1421689426":"","src.products.components.ProductListFilter.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"","prodictStockInventoryLabel":"","src.products.components.ProductVariantStock.3490038570":"","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"","src.products.components.ProductVariants.2153006789":"","src.products.components.ProductVariantNavigation.2845381934":"Добавя вариант","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.3989383405":"","src.products.views.3989383405":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1591632382":"","src.products.views.1731766393":"","src.products.views.2880386427":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1217376589":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.3479705616":"","src.productTypes.components.ProductTypeListPage.1776073799":"","src.productTypes.components.ProductTypeListPage.3420445375":"","src.translations.components.TranslationsEntitiesListPage.3420445375":"","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.ProductTypeList.4080551769":"","src.productTypes.views.ProductTypeList.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRates.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2673544109":"","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.1947090060":"","src.shipping.views.ShippingZoneDetails.131963671":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"Ключ","src.siteSettings.components.SiteSettingsKeys.2446088470":"Ключ","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.1481503299":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"Разрешения","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.797461521":"","src.staff.components.StaffListPage.2852350932":"","src.staff.components.StaffListPage.61043583":"","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"Потребителят е активен","src.staff.views.1308770978":"","src.staff.views.8878988":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.2105464697":"","src.translations.components.TranslationsEntitiesListPage.2559018090":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file diff --git a/locale/bg.po b/locale/bg.po index 75a5be445..17e4d8d75 100644 --- a/locale/bg.po +++ b/locale/bg.po @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"POT-Creation-Date: 2019-09-06T13:56:36.897Z\n" +"POT-Creation-Date: 2019-09-16T15:25:09.340Z\n" "Last-Translator: Patryk Zawadzki , 2019\n" "Language-Team: Bulgarian (https://www.transifex.com/mirumee/teams/34782/bg/)\n" "MIME-Version: 1.0\n" @@ -142,22 +142,6 @@ msgctxt "create new menu item, header" msgid "Add Item" msgstr "" -#. [menuCreateDialogHeader] - dialog header -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json -msgctxt "dialog header" -msgid "Add Menu" -msgstr "" - -#. [menuListPageAddMenu] - button -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json -msgctxt "button" -msgid "Add Menu" -msgstr "" - #. [src.siteSettings.components.SiteSettingsKeyDialog.1238948746] - dialog #. header #. defaultMessage is: @@ -167,14 +151,6 @@ msgctxt "dialog header" msgid "Add New Authorization Key" msgstr "" -#. [src.pages.components.PageDetailsPage.755314116] - page header -#. defaultMessage is: -#. Add Page -#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json -msgctxt "page header" -msgid "Add Page" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.2892088870] - dialog header #. defaultMessage is: #. Add Price Rate @@ -183,38 +159,6 @@ msgctxt "dialog header" msgid "Add Price Rate" msgstr "" -#. [src.orders.components.OrderProductAddDialog.2775402904] - dialog header -#. defaultMessage is: -#. Add Product -#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json -msgctxt "dialog header" -msgid "Add Product" -msgstr "" - -#. [src.products.components.ProductListPage.2775402904] - button -#. defaultMessage is: -#. Add Product -#: build/locale/src/products/components/ProductListPage/ProductListPage.json -msgctxt "button" -msgid "Add Product" -msgstr "" - -#. [src.discounts.components.SaleListPage.1742771332] - button -#. defaultMessage is: -#. Add Sale -#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json -msgctxt "button" -msgid "Add Sale" -msgstr "" - -#. [src.staff.components.StaffAddMemberDialog.3490059488] - dialog header -#. defaultMessage is: -#. Add Staff Member -#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json -msgctxt "dialog header" -msgid "Add Staff Member" -msgstr "" - #. [src.attributes.components.AttributeValueEditDialog.1841790893] - add #. attribute value #. defaultMessage is: @@ -224,14 +168,6 @@ msgctxt "add attribute value" msgid "Add Value" msgstr "" -#. [src.products.views.2178905289] - header -#. defaultMessage is: -#. Add Variant -#: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "header" -msgid "Add Variant" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.1397795758] - add weight #. based shipping method, dialog header #. defaultMessage is: @@ -249,14 +185,6 @@ msgctxt "button" msgid "Add address" msgstr "" -#. [src.attributes.components.AttributeListPage.350498821] - button -#. defaultMessage is: -#. Add attribute -#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json -msgctxt "button" -msgid "Add attribute" -msgstr "Добавя атрибут" - #. [src.siteSettings.components.SiteSettingsKeyDialog.50561933] - button #. defaultMessage is: #. Add authentication @@ -265,14 +193,6 @@ msgctxt "button" msgid "Add authentication" msgstr "" -#. [src.categories.components.CategoryListPage.228151782] - button -#. defaultMessage is: -#. Add category -#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json -msgctxt "button" -msgid "Add category" -msgstr "Добавяне на категория" - #. [src.collections.components.CollectionCreatePage.3958681866] - page header #. defaultMessage is: #. Add collection @@ -281,14 +201,6 @@ msgctxt "page header" msgid "Add collection" msgstr "" -#. [src.collections.components.CollectionListPage.3958681866] - button -#. defaultMessage is: -#. Add collection -#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json -msgctxt "button" -msgid "Add collection" -msgstr "" - #. [src.customers.components.CustomerCreatePage.1934221653] - page header #. defaultMessage is: #. Add customer @@ -321,14 +233,6 @@ msgctxt "button" msgid "Add key" msgstr "" -#. [menuItemsAddItem] - add new menu item -#. defaultMessage is: -#. Add new item -#: build/locale/src/navigation/components/MenuItems/MenuItems.json -msgctxt "add new menu item" -msgid "Add new item" -msgstr "" - #. [menuItemsPlaceholder] #. defaultMessage is: #. Add new menu item to begin creating menu @@ -363,14 +267,6 @@ msgctxt "button" msgid "Add or Edit Link" msgstr "" -#. [src.pages.components.PageListPage.1767905232] - button -#. defaultMessage is: -#. Add page -#: build/locale/src/pages/components/PageListPage/PageListPage.json -msgctxt "button" -msgid "Add page" -msgstr "" - #. [src.categories.components.CategoryProducts.3554578821] - button #. defaultMessage is: #. Add product @@ -379,14 +275,6 @@ msgctxt "button" msgid "Add product" msgstr "Добавя продукт" -#. [src.productTypes.components.ProductTypeListPage.889729490] - button -#. defaultMessage is: -#. Add product type -#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json -msgctxt "button" -msgid "Add product type" -msgstr "Добавя тип на продукта" - #. [src.orders.components.OrderDraftDetails.2528459381] - button #. defaultMessage is: #. Add products @@ -395,14 +283,6 @@ msgctxt "button" msgid "Add products" msgstr "" -#. [src.shipping.components.ShippingZoneRates.352297149] - button -#. defaultMessage is: -#. Add rate -#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json -msgctxt "button" -msgid "Add rate" -msgstr "" - #. [src.categories.components.CategoryCreatePage.2563994280] #. defaultMessage is: #. Add search engine title and description to make this category easier to @@ -464,30 +344,6 @@ msgctxt "button" msgid "Add shipping carrier" msgstr "" -#. [src.shipping.components.ShippingZonesList.2474410767] - button -#. defaultMessage is: -#. Add shipping zone -#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json -msgctxt "button" -msgid "Add shipping zone" -msgstr "" - -#. [src.staff.components.StaffListPage.802625341] - button -#. defaultMessage is: -#. Add staff member -#: build/locale/src/staff/components/StaffListPage/StaffListPage.json -msgctxt "button" -msgid "Add staff member" -msgstr "Добавя член на персонала" - -#. [src.categories.components.CategoryList.435697837] - button -#. defaultMessage is: -#. Add subcategory -#: build/locale/src/categories/components/CategoryList/CategoryList.json -msgctxt "button" -msgid "Add subcategory" -msgstr "" - #. [src.attributes.components.AttributeProperties.673770329] - add attribute #. as column in product list table #. defaultMessage is: @@ -515,35 +371,14 @@ msgctxt "dialog header" msgid "Add tracking code" msgstr "" -#. [src.attributes.components.AttributeValues.254756045] - add attribute value -#. button -#. defaultMessage is: -#. Add value -#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json -msgctxt "add attribute value button" -msgid "Add value" -msgstr "" - #. [src.products.components.ProductVariantNavigation.2845381934] - button #. defaultMessage is: #. Add variant -#. [src.products.components.ProductVariants.2845381934] - button -#. defaultMessage is: -#. Add variant #: build/locale/src/products/components/ProductVariantNavigation/ProductVariantNavigation.json -#: build/locale/src/products/components/ProductVariants/ProductVariants.json msgctxt "button" msgid "Add variant" msgstr "Добавя вариант" -#. [src.discounts.components.VoucherListPage.1536809153] - button -#. defaultMessage is: -#. Add voucher -#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json -msgctxt "button" -msgid "Add voucher" -msgstr "Добавя ваучер" - #. [src.attributes.views.AttributeDetails.634268988] - added new attribute #. value #. defaultMessage is: @@ -601,14 +436,6 @@ msgctxt "description" msgid "Address line 2" msgstr "" -#. [src.customers.components.CustomerAddress.1320082647] - addres card header -#. defaultMessage is: -#. Address {addressNumber} -#: build/locale/src/customers/components/CustomerAddress/CustomerAddress.json -msgctxt "addres card header" -msgid "Address {addressNumber}" -msgstr "" - #. [src.attributes.components.AttributeValues.1565474525] - attribute values #. list: slug column header #. defaultMessage is: @@ -658,6 +485,46 @@ msgctxt "tax rate" msgid "Agricultural supplies" msgstr "" +#. [src.attributes.components.AttributeListPage.2417065806] - tab name +#. defaultMessage is: +#. All Attributes +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "tab name" +msgid "All Attributes" +msgstr "" + +#. [src.categories.components.CategoryListPage.4294878092] - tab name +#. defaultMessage is: +#. All Categories +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "tab name" +msgid "All Categories" +msgstr "" + +#. [src.collections.components.CollectionListPage.1631917001] - tab name +#. defaultMessage is: +#. All Collections +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "tab name" +msgid "All Collections" +msgstr "" + +#. [src.customers.components.CustomerListPage.477293306] - tab name +#. defaultMessage is: +#. All Customers +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "tab name" +msgid "All Customers" +msgstr "" + +#. [src.orders.components.OrderDraftListPage.551325728] - tab name +#. defaultMessage is: +#. All Drafts +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "tab name" +msgid "All Drafts" +msgstr "" + #. [src.orders.components.OrderListPage.875489544] - tab name #. defaultMessage is: #. All Orders @@ -675,22 +542,54 @@ msgctxt "section header" msgid "All Photos" msgstr "" -#. [src.products.components.ProductListPage.821159718] - tab name +#. [src.productTypes.components.ProductTypeListPage.1776073799] - tab name +#. defaultMessage is: +#. All Product Types +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "tab name" +msgid "All Product Types" +msgstr "" + +#. [src.products.components.ProductListFilter.821159718] - tab name #. defaultMessage is: #. All Products -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "tab name" msgid "All Products" msgstr "" -#. [src.categories.components.CategoryList.3229914152] - section header +#. [src.discounts.components.SaleListPage.3907768880] - tab name +#. defaultMessage is: +#. All Sales +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "tab name" +msgid "All Sales" +msgstr "" + +#. [src.staff.components.StaffListPage.2852350932] - tab name +#. defaultMessage is: +#. All Staff Members +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "tab name" +msgid "All Staff Members" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.3229914152] - section header #. defaultMessage is: #. All Subcategories -#: build/locale/src/categories/components/CategoryList/CategoryList.json +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json msgctxt "section header" msgid "All Subcategories" msgstr "" +#. [src.discounts.components.VoucherListPage.1112241061] - tab name +#. defaultMessage is: +#. All Vouchers +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "tab name" +msgid "All Vouchers" +msgstr "" + #. [src.taxes.components.TaxConfiguration.142803418] #. defaultMessage is: #. All products prices are entered with tax included @@ -798,6 +697,14 @@ msgctxt "description" msgid "Are you sure you want to delete collection's image?" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.36681973] +#. defaultMessage is: +#. Are you sure you want to delete draft #{number}? +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "description" +msgid "Are you sure you want to delete draft #{number}?" +msgstr "" + #. [menuDetailsDeleteMenuContent] #. defaultMessage is: #. Are you sure you want to delete menu {menuName}? @@ -814,6 +721,14 @@ msgctxt "description" msgid "Are you sure you want to delete this address from users address book?" msgstr "" +#. [src.products.views.2880386427] +#. defaultMessage is: +#. Are you sure you want to delete this image? +#: build/locale/src/products/views/ProductImage.json +msgctxt "description" +msgid "Are you sure you want to delete this image?" +msgstr "" + #. [src.attributes.components.AttributeDeleteDialog.3738429348] - dialog #. content #. defaultMessage is: @@ -864,12 +779,7 @@ msgstr "" #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this attribute} #. other{{displayQuantity} categories}}? -#. [src.categories.views.844574071] -#. defaultMessage is: -#. Are you sure you want to delete {counter,plural,one{this attribute} -#. other{{displayQuantity} categories}}? #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this attribute} " @@ -887,22 +797,33 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.2497542455] +#. [src.categories.views.CategoryList.2144707585] +#. defaultMessage is: +#. Are you sure you want to delete {counter,plural,one{this category} +#. other{{displayQuantity} categories}}? +#: build/locale/src/categories/views/CategoryList/CategoryList.json +msgctxt "description" +msgid "" +"Are you sure you want to delete {counter,plural,one{this category} " +"other{{displayQuantity} categories}}?" +msgstr "" + +#. [src.collections.views.CollectionList.2497542455] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this collection} " "other{{displayQuantity} collections}}?" msgstr "" -#. [src.customers.views.409347866] +#. [src.customers.views.CustomerList.409347866] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this customer} #. other{{displayQuantity} customers}}? -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this customer} " @@ -920,11 +841,11 @@ msgid "" "other{{displayQuantity} menus}}?" msgstr "" -#. [src.orders.views.1389231130] - dialog content +#. [src.orders.views.OrderDraftList.1389231130] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this order draft} #. other{{displayQuantity} orderDrafts}}? -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this order draft} " @@ -942,11 +863,11 @@ msgid "" "other{{displayQuantity} pages}}?" msgstr "" -#. [src.productTypes.views.2294091098] - dialog content +#. [src.productTypes.views.ProductTypeList.2294091098] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this product type} #. other{{displayQuantity} product types}}? -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this product type} " @@ -964,11 +885,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.discounts.views.2516361175] - dialog content +#. [src.discounts.views.SaleList.2516361175] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this sale} #. other{{displayQuantity} sales}}? -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this sale} " @@ -997,17 +918,33 @@ msgid "" "other{{displayQuantity} variants}}?" msgstr "" -#. [src.discounts.views.1791926983] - dialog content +#. [src.discounts.views.VoucherList.1791926983] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this voucher} #. other{{displayQuantity} vouchers}}? -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this voucher} " "other{{displayQuantity} vouchers}}?" msgstr "" +#. [src.shipping.views.ShippingZoneDetails.131963671] - unassign country +#. defaultMessage is: +#. Are you sure you want to delete {countryName} from this shipping zone? +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country" +msgid "Are you sure you want to delete {countryName} from this shipping zone?" +msgstr "" + +#. [src.staff.views.8878988] +#. defaultMessage is: +#. Are you sure you want to delete {email} from staff members? +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "description" +msgid "Are you sure you want to delete {email} from staff members?" +msgstr "" + #. [src.customers.views.1927691511] - delete customer, dialog content #. defaultMessage is: #. Are you sure you want to delete {email}? @@ -1122,11 +1059,11 @@ msgctxt "description" msgid "Are you sure you want to mark this order as paid?" msgstr "" -#. [src.collections.views.1348793822] +#. [src.collections.views.CollectionList.1348793822] #. defaultMessage is: #. Are you sure you want to publish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to publish {counter,plural,one{this collection} " @@ -1155,30 +1092,6 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.orders.components.OrderDraftCancelDialog.3199827590] -#. defaultMessage is: -#. Are you sure you want to remove draft #{number}? -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "description" -msgid "Are you sure you want to remove draft #{number}?" -msgstr "" - -#. [src.products.views.672103788] -#. defaultMessage is: -#. Are you sure you want to remove this image? -#: build/locale/src/products/views/ProductImage.json -msgctxt "description" -msgid "Are you sure you want to remove this image?" -msgstr "" - -#. [src.shipping.views.ShippingZoneDetails.1790261672] - unassign country -#. defaultMessage is: -#. Are you sure you want to remove {countryName} from this shipping zone? -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country" -msgid "Are you sure you want to remove {countryName} from this shipping zone?" -msgstr "" - #. [src.staff.views.3945766678] #. defaultMessage is: #. Are you sure you want to remove {email} avatar? @@ -1187,14 +1100,6 @@ msgctxt "description" msgid "Are you sure you want to remove {email} avatar?" msgstr "" -#. [src.staff.views.2728048444] -#. defaultMessage is: -#. Are you sure you want to remove {email} from staff members? -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "description" -msgid "Are you sure you want to remove {email} from staff members?" -msgstr "" - #. [src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450] #. defaultMessage is: #. Are you sure you want to unassign {attributeName} from {productTypeName}? @@ -1275,11 +1180,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.3944356444] +#. [src.collections.views.CollectionList.3944356444] #. defaultMessage is: #. Are you sure you want to unpublish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to unpublish {counter,plural,one{this collection} " @@ -1440,6 +1345,15 @@ msgctxt "button" msgid "Assign products" msgstr "" +#. [src.attributes.components.AttributeValues.351422234] - assign attribute +#. value button +#. defaultMessage is: +#. Assign value +#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json +msgctxt "assign attribute value button" +msgid "Assign value" +msgstr "" + #. [src.attributes.components.AttributeDetails.3605174225] - attribute's slug #. short code label #. defaultMessage is: @@ -1518,6 +1432,14 @@ msgctxt "product attributes, section header" msgid "Attributes" msgstr "Атрибути" +#. [src.configuration.2326418019] +#. defaultMessage is: +#. Attributes and Product Typess +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Attributes and Product Typess" +msgstr "" + #. [src.attributes.views.AttributeList.3218248395] - deleted multiple #. attributes #. defaultMessage is: @@ -2301,6 +2223,22 @@ msgctxt "description" msgid "Country area" msgstr "" +#. [menuCreateDialogHeader] - dialog header +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json +msgctxt "dialog header" +msgid "Create Menu" +msgstr "" + +#. [menuListPageAddMenu] - button +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json +msgctxt "button" +msgid "Create Menu" +msgstr "" + #. [src.attributes.components.AttributePage.2855501559] - page title #. defaultMessage is: #. Create New Attribute @@ -2325,6 +2263,30 @@ msgctxt "header" msgid "Create New Shipping Zone" msgstr "" +#. [src.pages.components.PageDetailsPage.1068617485] - page header +#. defaultMessage is: +#. Create Page +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page header" +msgid "Create Page" +msgstr "" + +#. [src.orders.components.OrderProductAddDialog.1542417144] - dialog header +#. defaultMessage is: +#. Create Product +#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json +msgctxt "dialog header" +msgid "Create Product" +msgstr "" + +#. [src.products.components.ProductListPage.1542417144] - button +#. defaultMessage is: +#. Create Product +#: build/locale/src/products/components/ProductListPage/ProductListPage.json +msgctxt "button" +msgid "Create Product" +msgstr "" + #. [src.products.views.1542417144] - window title #. defaultMessage is: #. Create Product @@ -2357,11 +2319,19 @@ msgctxt "page header" msgid "Create Sale" msgstr "" -#. [src.products.views.2362587265] - window title +#. [src.discounts.components.SaleListPage.3866518732] - button +#. defaultMessage is: +#. Create Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "button" +msgid "Create Sale" +msgstr "" + +#. [src.products.views.2362587265] - header #. defaultMessage is: #. Create Variant #: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "window title" +msgctxt "header" msgid "Create Variant" msgstr "" @@ -2373,6 +2343,22 @@ msgctxt "page header" msgid "Create Voucher" msgstr "" +#. [src.attributes.components.AttributeListPage.3824684885] - button +#. defaultMessage is: +#. Create attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "button" +msgid "Create attribute" +msgstr "" + +#. [src.categories.components.CategoryListPage.1140231710] - button +#. defaultMessage is: +#. Create category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "button" +msgid "Create category" +msgstr "" + #. [src.categories.views.1140231710] - window title #. defaultMessage is: #. Create category @@ -2381,6 +2367,14 @@ msgctxt "window title" msgid "Create category" msgstr "" +#. [src.collections.components.CollectionListPage.686910896] - button +#. defaultMessage is: +#. Create collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "button" +msgid "Create collection" +msgstr "" + #. [src.collections.views.686910896] - window title #. defaultMessage is: #. Create collection @@ -2397,6 +2391,14 @@ msgctxt "window title" msgid "Create customer" msgstr "" +#. [menuItemsAddItem] - add new menu item +#. defaultMessage is: +#. Create new item +#: build/locale/src/navigation/components/MenuItems/MenuItems.json +msgctxt "add new menu item" +msgid "Create new item" +msgstr "" + #. [src.orders.components.OrderDraftListPage.2826235371] - button #. defaultMessage is: #. Create order @@ -2409,6 +2411,14 @@ msgctxt "button" msgid "Create order" msgstr "" +#. [src.pages.components.PageListPage.3785394515] - button +#. defaultMessage is: +#. Create page +#: build/locale/src/pages/components/PageListPage/PageListPage.json +msgctxt "button" +msgid "Create page" +msgstr "" + #. [src.pages.views.3785394515] - header #. defaultMessage is: #. Create page @@ -2420,11 +2430,55 @@ msgstr "" #. [src.shipping.components.ShippingZoneRateDialog.16061680] - button #. defaultMessage is: #. Create rate +#. [src.shipping.components.ShippingZoneRates.16061680] - button +#. defaultMessage is: +#. Create rate #: build/locale/src/shipping/components/ShippingZoneRateDialog/ShippingZoneRateDialog.json +#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json msgctxt "button" msgid "Create rate" msgstr "" +#. [src.shipping.components.ShippingZonesList.2673544109] - button +#. defaultMessage is: +#. Create shipping zone +#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json +msgctxt "button" +msgid "Create shipping zone" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.770296100] - button +#. defaultMessage is: +#. Create subcategory +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json +msgctxt "button" +msgid "Create subcategory" +msgstr "" + +#. [src.products.components.ProductVariants.3989383405] - button +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/components/ProductVariants/ProductVariants.json +msgctxt "button" +msgid "Create variant" +msgstr "" + +#. [src.products.views.3989383405] - window title +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/views/ProductVariantCreate.json +msgctxt "window title" +msgid "Create variant" +msgstr "" + +#. [src.discounts.components.VoucherListPage.614836274] - button +#. defaultMessage is: +#. Create voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "button" +msgid "Create voucher" +msgstr "" + #. [src.collections.views.1597339737] #. defaultMessage is: #. Created collection @@ -2471,7 +2525,11 @@ msgstr "" #. [src.components.FilterBar.2340527467] #. defaultMessage is: #. Custom Filter +#. [src.components.SearchBar.2340527467] +#. defaultMessage is: +#. Custom Filter #: build/locale/src/components/FilterBar/FilterBar.json +#: build/locale/src/components/SearchBar/SearchBar.json msgctxt "description" msgid "Custom Filter" msgstr "" @@ -2727,10 +2785,18 @@ msgctxt "dialog title" msgid "Delete Collection" msgstr "" -#. [src.orders.views.1161115149] - dialog header +#. [src.products.views.1731766393] - dialog header +#. defaultMessage is: +#. Delete Image +#: build/locale/src/products/views/ProductImage.json +msgctxt "dialog header" +msgid "Delete Image" +msgstr "" + +#. [src.orders.views.OrderDraftList.1161115149] - dialog header #. defaultMessage is: #. Delete Order Drafts -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog header" msgid "Delete Order Drafts" msgstr "" @@ -2768,10 +2834,10 @@ msgctxt "dialog header" msgid "Delete Product Type" msgstr "" -#. [src.productTypes.views.4080551769] - dialog header +#. [src.productTypes.views.ProductTypeList.4080551769] - dialog header #. defaultMessage is: #. Delete Product Types -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog header" msgid "Delete Product Types" msgstr "" @@ -2800,10 +2866,10 @@ msgctxt "dialog header" msgid "Delete Sale" msgstr "" -#. [src.discounts.views.2809303671] - dialog header +#. [src.discounts.views.SaleList.2809303671] - dialog header #. defaultMessage is: #. Delete Sales -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog header" msgid "Delete Sales" msgstr "" @@ -2817,9 +2883,13 @@ msgctxt "custom search delete, dialog header" msgid "Delete Search" msgstr "" +#. [src.components.Filter.2173195312] - button +#. defaultMessage is: +#. Delete Search #. [src.components.TableFilter.2173195312] - button #. defaultMessage is: #. Delete Search +#: build/locale/src/components/Filter/FilterSearch.json #: build/locale/src/components/TableFilter/FilterChips.json msgctxt "button" msgid "Delete Search" @@ -2886,10 +2956,10 @@ msgctxt "dialog header" msgid "Delete Voucher" msgstr "" -#. [src.discounts.views.367317371] - dialog header +#. [src.discounts.views.VoucherList.367317371] - dialog header #. defaultMessage is: #. Delete Vouchers -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog header" msgid "Delete Vouchers" msgstr "" @@ -2923,11 +2993,11 @@ msgstr "" #. [src.categories.views.712767046] - dialog title #. defaultMessage is: #. Delete categories -#. [src.categories.views.712767046] - dialog title +#. [src.categories.views.CategoryList.712767046] - dialog title #. defaultMessage is: #. Delete categories #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "dialog title" msgid "Delete categories" msgstr "" @@ -2944,10 +3014,10 @@ msgctxt "dialog title" msgid "Delete category" msgstr "" -#. [src.collections.views.3817188998] - dialog title +#. [src.collections.views.CollectionList.3817188998] - dialog title #. defaultMessage is: #. Delete collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Delete collections" msgstr "" @@ -2960,14 +3030,31 @@ msgctxt "dialog header" msgid "Delete customer" msgstr "" -#. [src.customers.views.1946482599] - dialog header +#. [src.customers.views.CustomerList.1946482599] - dialog header #. defaultMessage is: #. Delete customers -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "dialog header" msgid "Delete customers" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.632633254] - dialog header +#. defaultMessage is: +#. Delete draft order +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "dialog header" +msgid "Delete draft order" +msgstr "" + +#. [src.shipping.views.ShippingZoneDetails.1947090060] - unassign country, +#. dialog header +#. defaultMessage is: +#. Delete from shipping zone +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country, dialog header" +msgid "Delete from shipping zone" +msgstr "" + #. [src.collections.views.942133001] - dialog title #. defaultMessage is: #. Delete image @@ -3028,6 +3115,14 @@ msgctxt "description" msgid "Deleted collection" msgstr "Изтрита е колекцията" +#. [src.orders.views.OrderDraftList.1648805446] +#. defaultMessage is: +#. Deleted draft orders +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json +msgctxt "description" +msgid "Deleted draft orders" +msgstr "" + #. [menuListDeletedMenu] #. defaultMessage is: #. Deleted menu @@ -3627,14 +3722,6 @@ msgctxt "order history message" msgid "Fulfilled {quantity} items" msgstr "" -#. [src.orders.components.OrderListFilter.2943502192] - order -#. defaultMessage is: -#. Fulfillment Status -#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json -msgctxt "order" -msgid "Fulfillment Status" -msgstr "" - #. [src.orders.components.OrderHistory.3081292385] - order history message #. defaultMessage is: #. Fulfillment confirmation was sent to customer @@ -3791,12 +3878,12 @@ msgctxt "description" msgid "If empty, the preview shows what will be autogenerated." msgstr "" -#. [src.attributes.components.AttributeProperties.2519239682] +#. [src.attributes.components.AttributeProperties.4048785456] #. defaultMessage is: -#. If enable this attribute can be used as a column in product table. +#. If enabled this attribute can be used as a column in product table. #: build/locale/src/attributes/components/AttributeProperties/AttributeProperties.json msgctxt "description" -msgid "If enable this attribute can be used as a column in product table." +msgid "If enabled this attribute can be used as a column in product table." msgstr "" #. [src.attributes.components.AttributeProperties.787251583] @@ -3902,6 +3989,22 @@ msgctxt "product variant stock" msgid "Inventory" msgstr "" +#. [src.staff.components.StaffAddMemberDialog.1481503299] - dialog header +#. defaultMessage is: +#. Invite Staff Member +#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json +msgctxt "dialog header" +msgid "Invite Staff Member" +msgstr "" + +#. [src.staff.components.StaffListPage.797461521] - button +#. defaultMessage is: +#. Invite staff member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "button" +msgid "Invite staff member" +msgstr "" + #. [src.productTypes.components.ProductTypeShipping.2143413921] - switch #. button #. defaultMessage is: @@ -4254,6 +4357,14 @@ msgctxt "voucher requirement" msgid "Minimum quantity of items" msgstr "" +#. [src.configuration.1233229030] +#. defaultMessage is: +#. Miscellaneous +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Miscellaneous" +msgstr "" + #. [src.attributes.components.AttributeDetails.3334509011] - product attribute #. type #. defaultMessage is: @@ -5086,6 +5197,14 @@ msgctxt "description" msgid "Order History" msgstr "" +#. [src.orders.components.OrderListFilter.2222765704] +#. defaultMessage is: +#. Order Status +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +msgctxt "description" +msgid "Order Status" +msgstr "" + #. [src.orders.components.OrderHistory.1230178536] - order history message #. defaultMessage is: #. Order address was updated @@ -5102,13 +5221,13 @@ msgctxt "order history message" msgid "Order confirmation was sent to customer" msgstr "" -#. [src.orders.views.1872939752] +#. [src.orders.views.OrderDraftList.1872939752] #. defaultMessage is: #. Order draft succesfully created #. [src.orders.views.OrderList.1872939752] #. defaultMessage is: #. Order draft succesfully created -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json #: build/locale/src/orders/views/OrderList/OrderList.json msgctxt "description" msgid "Order draft succesfully created" @@ -5773,6 +5892,14 @@ msgctxt "description" msgid "Product Name" msgstr "" +#. [src.configuration.3655543906] +#. defaultMessage is: +#. Product Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Product Settings" +msgstr "" + #. [src.discounts.components.DiscountProducts.4257289053] #. defaultMessage is: #. Product Type @@ -5931,12 +6058,12 @@ msgctxt "order history message" msgid "Products were added to draft order" msgstr "" -#. [src.orders.components.OrderHistory.2574162126] - order history message +#. [src.orders.components.OrderHistory.4067959693] - order history message #. defaultMessage is: -#. Products were removed from draft order +#. Products were deleted from draft order #: build/locale/src/orders/components/OrderHistory/OrderHistory.json msgctxt "order history message" -msgid "Products were removed from draft order" +msgid "Products were deleted from draft order" msgstr "" #. [src.properties] @@ -5963,10 +6090,10 @@ msgctxt "description" msgid "Provided email address does not exist in our database." msgstr "" -#. [src.collections.views.1547167026] - publish collections +#. [src.collections.views.CollectionList.1547167026] - publish collections #. defaultMessage is: #. Publish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "publish collections" msgid "Publish" msgstr "Публикува" @@ -6003,10 +6130,10 @@ msgctxt "dialog header" msgid "Publish Products" msgstr "" -#. [src.collections.views.2823425739] - dialog title +#. [src.collections.views.CollectionList.2823425739] - dialog title #. defaultMessage is: #. Publish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Publish collections" msgstr "" @@ -6180,6 +6307,18 @@ msgctxt "shipping method price" msgid "Rate Price" msgstr "" +#. [src.orders.components.OrderListFilter.2415661583] - order status +#. defaultMessage is: +#. Ready to Capture +#. [src.orders.views.OrderList.readyToCapture] - order status +#. defaultMessage is: +#. Ready to Capture +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +#: build/locale/src/orders/views/OrderList/filters.json +msgctxt "order status" +msgid "Ready to Capture" +msgstr "" + #. [src.customers.components.CustomerOrders.3878642352] - section header #. defaultMessage is: #. Recent orders @@ -6228,22 +6367,14 @@ msgctxt "switch button" msgid "Release all stock allocated to this order" msgstr "" -#. [src.auth.components.LoginPage.3182284913] - login -#. defaultMessage is: -#. Remember me -#: build/locale/src/auth/components/LoginPage/LoginPage.json -msgctxt "login" -msgid "Remember me" -msgstr "" - #. [src.categories.views.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. -#. [src.categories.views.3488150607] +#. [src.categories.views.CategoryList.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "description" msgid "Remember this will also delete all products assigned to this category." msgstr "" @@ -6256,39 +6387,6 @@ msgctxt "button" msgid "Remove" msgstr "Премахва" -#. [src.products.views.490753666] - dialog header -#. defaultMessage is: -#. Remove Image -#: build/locale/src/products/views/ProductImage.json -msgctxt "dialog header" -msgid "Remove Image" -msgstr "" - -#. [src.orders.components.OrderDraftCancelDialog.500287069] - dialog header -#. defaultMessage is: -#. Remove draft order -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "dialog header" -msgid "Remove draft order" -msgstr "" - -#. [src.shipping.views.ShippingZoneDetails.254167659] - unassign country, -#. dialog header -#. defaultMessage is: -#. Remove from shipping zone -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country, dialog header" -msgid "Remove from shipping zone" -msgstr "" - -#. [src.orders.views.3880993240] -#. defaultMessage is: -#. Removed draft orders -#: build/locale/src/orders/views/OrderDraftList.json -msgctxt "description" -msgid "Removed draft orders" -msgstr "" - #. [src.pages.views.1457312643] #. defaultMessage is: #. Removed page @@ -6454,6 +6552,18 @@ msgctxt "button" msgid "Save" msgstr "Запазва" +#. [src.components.Filter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#. [src.components.TableFilter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#: build/locale/src/components/Filter/FilterSearch.json +#: build/locale/src/components/TableFilter/FilterChips.json +msgctxt "button" +msgid "Save Custom Search" +msgstr "" + #. [src.components.SaveFilterTabDialog.1514415736] - save filter tab, header #. defaultMessage is: #. Save Custom Search @@ -6462,14 +6572,6 @@ msgctxt "save filter tab, header" msgid "Save Custom Search" msgstr "" -#. [src.components.TableFilter.1514415736] - button -#. defaultMessage is: -#. Save Custom Search -#: build/locale/src/components/TableFilter/FilterChips.json -msgctxt "button" -msgid "Save Custom Search" -msgstr "" - #. [src.products.components.ProductVariantCreatePage.2853608829] - button #. defaultMessage is: #. Save variant @@ -6486,6 +6588,14 @@ msgctxt "description" msgid "Saved changes" msgstr "" +#. [src.attributes.components.AttributeListPage.3916653510] +#. defaultMessage is: +#. Search Attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "description" +msgid "Search Attribute" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.902296540] #. defaultMessage is: #. Search Attributes @@ -6502,10 +6612,30 @@ msgctxt "description" msgid "Search Categories" msgstr "" +#. [src.categories.components.CategoryListPage.3841025483] +#. defaultMessage is: +#. Search Category +#. [src.translations.components.TranslationsEntitiesListPage.3841025483] +#. defaultMessage is: +#. Search Category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Category" +msgstr "" + +#. [src.collections.components.CollectionListPage.4057224233] +#. defaultMessage is: +#. Search Collection #. [src.components.AssignCollectionDialog.4057224233] #. defaultMessage is: #. Search Collection +#. [src.translations.components.TranslationsEntitiesListPage.4057224233] +#. defaultMessage is: +#. Search Collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json #: build/locale/src/components/AssignCollectionDialog/AssignCollectionDialog.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json msgctxt "description" msgid "Search Collection" msgstr "" @@ -6518,6 +6648,14 @@ msgctxt "description" msgid "Search Countries" msgstr "" +#. [src.customers.components.CustomerListPage.1643417013] +#. defaultMessage is: +#. Search Customer +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "description" +msgid "Search Customer" +msgstr "" + #. [src.orders.components.OrderCustomer.2433460203] #. defaultMessage is: #. Search Customers @@ -6526,6 +6664,14 @@ msgctxt "description" msgid "Search Customers" msgstr "" +#. [src.orders.components.OrderDraftListPage.77765281] +#. defaultMessage is: +#. Search Draft +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "description" +msgid "Search Draft" +msgstr "" + #. [src.translations.components.TranslationsCategoriesPage.1406947243] #. defaultMessage is: #. Search Engine Description @@ -6606,6 +6752,34 @@ msgctxt "description" msgid "Search Orders..." msgstr "" +#. [src.translations.components.TranslationsEntitiesListPage.2559018090] +#. defaultMessage is: +#. Search Page +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Page" +msgstr "" + +#. [src.translations.components.TranslationsEntitiesListPage.2105464697] +#. defaultMessage is: +#. Search Product +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product" +msgstr "" + +#. [src.productTypes.components.ProductTypeListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#. [src.translations.components.TranslationsEntitiesListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product Type" +msgstr "" + #. [src.components.AssignProductDialog.2850255786] #. defaultMessage is: #. Search Products @@ -6618,14 +6792,46 @@ msgctxt "description" msgid "Search Products" msgstr "" -#. [src.products.components.ProductListPage.3550330425] +#. [src.products.components.ProductListFilter.3550330425] #. defaultMessage is: #. Search Products... -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Search Products..." msgstr "" +#. [src.discounts.components.SaleListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#. [src.translations.components.TranslationsEntitiesListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Sale" +msgstr "" + +#. [src.staff.components.StaffListPage.61043583] +#. defaultMessage is: +#. Search Staff Member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "description" +msgid "Search Staff Member" +msgstr "" + +#. [src.discounts.components.VoucherListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#. [src.translations.components.TranslationsEntitiesListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Voucher" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.524117994] #. defaultMessage is: #. Search by attribute name @@ -6732,10 +6938,10 @@ msgctxt "description" msgid "Select all orders where:" msgstr "" -#. [src.products.components.ProductListPage.1421689426] +#. [src.products.components.ProductListFilter.1421689426] #. defaultMessage is: #. Select all products where: -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Select all products where:" msgstr "" @@ -6821,6 +7027,14 @@ msgctxt "description" msgid "Set plugin as Active" msgstr "" +#. [src.components.VisibilityCard.292404896] +#. defaultMessage is: +#. Set publication date +#: build/locale/src/components/VisibilityCard/VisibilityCard.json +msgctxt "description" +msgid "Set publication date" +msgstr "" + #. [src.discounts.shipment] - voucher discount #. defaultMessage is: #. Shipment @@ -7086,6 +7300,14 @@ msgctxt "staff section name" msgid "Staff Members" msgstr "" +#. [src.configuration.3140151600] +#. defaultMessage is: +#. Staff Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Staff Settings" +msgstr "" + #. [src.standard] - tax rate #. defaultMessage is: #. Standard @@ -8070,10 +8292,10 @@ msgctxt "payment status" msgid "Unpaid" msgstr "" -#. [src.collections.views.2237014112] - unpublish collections +#. [src.collections.views.CollectionList.2237014112] - unpublish collections #. defaultMessage is: #. Unpublish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "unpublish collections" msgid "Unpublish" msgstr "Непубликува" @@ -8110,10 +8332,10 @@ msgctxt "dialog header" msgid "Unpublish Products" msgstr "" -#. [src.collections.views.2637364047] - dialog title +#. [src.collections.views.CollectionList.2637364047] - dialog title #. defaultMessage is: #. Unpublish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Unpublish collections" msgstr "" @@ -8613,6 +8835,22 @@ msgctxt "description" msgid "ZIP / Postal code" msgstr "" +#. [src.productTypes.components.ProductTypeListPage.3479705616] - button +#. defaultMessage is: +#. create product type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "button" +msgid "create product type" +msgstr "" + +#. [src.staff.views.1308770978] - dialog header +#. defaultMessage is: +#. delete Staff User +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "dialog header" +msgid "delete Staff User" +msgstr "" + #. [orderPaymentVATDoesNotApply] - vat not included in order price #. defaultMessage is: #. does not apply @@ -8686,19 +8924,35 @@ msgctxt "product status is set as" msgid "is set as" msgstr "" -#. [src.staff.views.2240444792] - dialog header -#. defaultMessage is: -#. remove Staff User -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "dialog header" -msgid "remove Staff User" -msgstr "" - -#. [src.components.VisibilityCard.1815688500] +#. [src.collections.components.CollectionCreatePage.1815688500] - collection #. defaultMessage is: #. since {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.1815688500] - collection +#. defaultMessage is: +#. since {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "since {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.1815688500] - page +#. defaultMessage is: +#. since {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "since {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#. [src.products.components.ProductUpdatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "since {date}" msgstr "" @@ -8726,11 +8980,35 @@ msgctxt "weight" msgid "to {value} {unit}" msgstr "" -#. [src.components.VisibilityCard.2001551496] +#. [src.collections.components.CollectionCreatePage.2001551496] - collection #. defaultMessage is: #. will be visible from {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.2001551496] - collection +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "will be visible from {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.2001551496] - page +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "will be visible from {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#. [src.products.components.ProductUpdatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "will be visible from {date}" msgstr "" diff --git a/locale/bn.json b/locale/bn.json index 2b4a6d69f..66dd4ce66 100644 --- a/locale/bn.json +++ b/locale/bn.json @@ -1 +1 @@ -{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.350498821":"","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.2519239682":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"নাম","src.categories.components.CategoryProducts.636461959":"নাম","src.collections.components.CollectionProducts.636461959":"নাম","src.products.components.ProductDetailsForm.636461959":"নাম","src.collections.components.CollectionDetails.636461959":"নাম","src.components.ProductList.636461959":"নাম","src.discounts.components.SaleInfo.636461959":"নাম","src.discounts.components.SaleList.636461959":"নাম","src.discounts.components.SaleSummary.636461959":"নাম","menuItemDialogNameLabel":"নাম","src.products.components.ProductVariants.636461959":"নাম","src.shipping.components.ShippingZoneRates.636461959":"নাম","src.shipping.components.ShippingZonesList.636461959":"নাম","src.staff.components.StaffList.636461959":"নাম","src.translations.components.TranslationsEntitiesList.636461959":"নাম","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.254756045":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.3182284913":"","src.auth.components.LoginPage.109182747":"","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"","src.categories.views.2004894945":"","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.3229914152":"","src.categories.components.CategoryList.435697837":"","src.categories.components.CategoryList.2159874182":"","src.categories.components.CategoryUpdatePage.2159874182":"","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.228151782":"","src.categories.components.CategoryProducts.2968663655":"পণ্যগুলি","src.categories.components.CategoryUpdatePage.2968663655":"পণ্যগুলি","src.discounts.components.DiscountCategories.2968663655":"পণ্যগুলি","src.discounts.components.DiscountCollections.2968663655":"পণ্যগুলি","src.products":"পণ্যগুলি","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryProducts.3554578821":"","src.categories.components.CategoryProductsCard.3554578821":"","src.categories.components.CategoryProducts.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProducts.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.categories.components.CategoryProductsCard.4164156574":"","src.categories.views.1754466114":"","src.categories.views.1140231710":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.712767046":"","src.categories.views.299584400":"","src.categories.views.844574071":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.collections.components.CollectionCreatePage.3958681866":"","src.collections.components.CollectionListPage.3958681866":"","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"","src.availability":"","src.collections.components.CollectionList.3640454975":"","src.collections.components.CollectionProducts.3640454975":"","src.discounts.components.DiscountProducts.3640454975":"","src.components.ProductList.3640454975":"","src.products.components.ProductListPage.3640454975":"","src.pages.components.PageList.3640454975":"","src.products.views.ProductList.published":"","src.collections.components.CollectionList.2341910657":"","src.collections.components.CollectionProducts.2341910657":"","src.discounts.components.DiscountProducts.2341910657":"","src.components.ProductList.2341910657":"","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.686910896":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"","src.collections.views.2402899582":"","src.collections.views.2237014112":"","src.pages.views.2237014112":"","src.products.views.ProductList.2237014112":"","src.collections.views.1547167026":"","src.pages.views.1547167026":"","src.products.views.ProductList.1547167026":"","src.collections.views.2823425739":"","src.collections.views.1348793822":"","src.collections.views.2637364047":"","src.collections.views.3944356444":"","src.collections.views.3817188998":"","src.collections.views.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.4057224233":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"","src.components.ErrorMessageCard.2845142593":"","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.FilterBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.ProductList.1134347598":"","src.orders.components.OrderDraftDetailsProducts.1134347598":"","src.orders.components.OrderFulfillment.1134347598":"","src.products.components.ProductListPage.1134347598":"","src.products.components.ProductPricing.1134347598":"","src.orders.components.OrderUnfulfilledItems.1134347598":"","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"","src.shipping.components.ShippingZoneRates.1134347598":"","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"","src.pages.components.PageList.1459686496":"","src.products.components.ProductListFilter.1459686496":"","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"","src.products.views.ProductList.hidden":"","src.components.VisibilityCard.1815688500":"","src.components.VisibilityCard.2001551496":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","configurationMenuStaff":"","configurationMenuShipping":"","configurationMenuTaxes":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","src.customers.components.CustomerAddress.1320082647":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"","src.customers.components.CustomerAddresses.3517722732":"","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"ঠিকানা","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"","src.orders.components.OrderCustomerNote.1520756907":"","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"","src.customers.components.CustomerDetails.577013340":"","src.customers.components.CustomerCreatePage.1934221653":"","src.customers.components.CustomerListPage.1934221653":"","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerOrders.3878642352":"","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"","src.orders.components.OrderDraftList.4205493358":"","src.orders.components.OrderList.4205493358":"","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"","src.orders.components.OrderListFilter.1756106276":"","src.products.components.ProductListFilter.1756106276":"","src.products.components.ProductVariants.1756106276":"","src.customers.components.CustomerOrders.878013594":"","src.orders.components.OrderDraftDetailsProducts.878013594":"","src.orders.components.OrderDraftDetailsSummary.878013594":"","src.orders.components.OrderDraftList.878013594":"","src.orders.components.OrderFulfillment.878013594":"","src.orders.components.OrderUnfulfilledItems.878013594":"","src.orders.components.OrderList.878013594":"","src.orders.components.OrderPayment.878013594":"","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.1946482599":"","src.customers.views.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"","src.discounts.components.SaleSummary.1148029984":"","src.discounts.components.VoucherList.1148029984":"","src.discounts.components.VoucherSummary.1148029984":"","src.discounts.components.VoucherValue.1148029984":"","src.products.components.ProductAttributes.1148029984":"","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.1742771332":"","src.discounts.components.SalePricing.1099355007":"","src.products.components.ProductPricing.1099355007":"","src.products.components.ProductVariantPrice.1099355007":"","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"","src.discounts.components.VoucherSummary.78726751":"","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.1536809153":"","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"","src.discounts.shipment":"","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.2809303671":"","src.discounts.views.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.367317371":"","src.discounts.views.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"","src.orders.views.OrderList.3528672691":"","src.confirm":"","src.delete":"","src.edit":"","src.manage":"","src.remove":"","src.save":"","src.show":"","src.undo":"","src.attributes":"","src.products.components.ProductAttributes.4153345096":"","src.categories":"","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"","src.customers":"","src.draftOrders":"","src.home":"","src.navigation":"","src.orders":"","src.pages":"","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"বিক্রয়","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"","src.taxes.components.CountryListPage.3955023266":"","src.translations":"","src.vouchers":"","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"","src.partiallyPaid":"","src.partiallyRefunded":"","src.refunded":"","src.unpaid":"","src.cancelled":"","src.draft":"","src.fulfilled":"","src.orders.views.OrderList.fulfilled":"","src.orders.components.OrderListFilter.1712863026":"","src.partiallyFulfilled":"","src.unfulfilled":"","src.orders.views.OrderList.unfulfilled":"","src.orders.components.OrderListFilter.1751787272":"","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","src.1395232177":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"লিংক","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"","src.orders.components.OrderDetailsPage.1854613983":"","src.orders.components.OrderDraftPage.1854613983":"","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"","src.orders.components.OrderCustomerEditDialog.1411666943":"","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.500287069":"","src.orders.components.OrderDraftCancelDialog.3199827590":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"","src.orders.components.OrderUnfulfilledItems.1895667608":"","src.orders.components.OrderDraftDetailsProducts.2796503714":"পরিমাণ","src.orders.components.OrderFulfillment.2796503714":"পরিমাণ","src.orders.components.OrderFulfillmentDialog.2796503714":"পরিমাণ","src.orders.components.OrderUnfulfilledItems.2796503714":"পরিমাণ","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"","src.orders.components.OrderPayment.781550514":"","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"","src.orders.components.OrderListPage.2826235371":"","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"","src.orders.components.OrderFulfillmentCancelDialog.732594284":"","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.2574162126":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2943502192":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"প্রেরণ","src.productTypes.components.ProductTypeShipping.1325966144":"প্রেরণ","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"প্রেরণ","src.orders.components.OrderPayment.3768782744":"","src.orders.components.OrderPayment.2320183694":"","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"","src.orders.components.OrderPayment.2845258362":"","src.orders.components.OrderPayment.2444197639":"","src.orders.components.OrderPayment.3500506678":"","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.2775402904":"","src.products.components.ProductListPage.2775402904":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.3880993240":"","src.orders.views.1161115149":"","src.orders.views.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.755314116":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"","src.pages.components.PageList.1124600214":"","src.pages.components.PageInfo.1116746286":"","src.translations.components.TranslationsPagesPage.1116746286":"","src.pages.components.PageList.3478065224":"","src.pages.components.PageSlug.3478065224":"","src.productTypes.components.ProductTypeAttributes.3478065224":"","src.pages.components.PageList.3767550649":"","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.1767905232":"","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.3785394515":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"","src.products.components.ProductVariantImages.3240888698":"","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"","src.products.components.ProductVariantStock.3841616483":"","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListPage.821159718":"","src.products.components.ProductListPage.1421689426":"","src.products.components.ProductListPage.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"","prodictStockInventoryLabel":"","src.products.components.ProductVariantStock.3490038570":"","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"","src.products.components.ProductVariants.2153006789":"","src.products.components.ProductVariantNavigation.2845381934":"","src.products.components.ProductVariants.2845381934":"","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1542417144":"","src.products.views.1591632382":"","src.products.views.490753666":"","src.products.views.672103788":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.1694086800":"","src.products.views.ProductList.224127438":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.products.views.2178905289":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1756957616":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.889729490":"","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.4080551769":"","src.productTypes.views.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.352297149":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2474410767":"","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.254167659":"","src.shipping.views.ShippingZoneDetails.1790261672":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"","src.siteSettings.components.SiteSettingsKeys.2446088470":"","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.3490059488":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.3247064221":"সক্রিয়","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.802625341":"","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"সক্রিয় ব্যবহারকারী","src.staff.views.2240444792":"","src.staff.views.2728048444":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file +{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.3824684885":"","src.attributes.components.AttributeListPage.2417065806":"","src.attributes.components.AttributeListPage.3916653510":"","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.4048785456":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"নাম","src.categories.components.CategoryProductList.636461959":"নাম","src.components.ProductList.636461959":"নাম","src.products.components.ProductList.636461959":"নাম","src.collections.components.CollectionDetails.636461959":"নাম","src.collections.components.CollectionProducts.636461959":"নাম","src.products.components.ProductDetailsForm.636461959":"নাম","src.discounts.components.SaleInfo.636461959":"নাম","src.discounts.components.SaleList.636461959":"নাম","src.discounts.components.SaleSummary.636461959":"নাম","menuItemDialogNameLabel":"নাম","src.plugins.components.PluginsList.636461959":"নাম","src.products.components.ProductVariants.636461959":"নাম","src.shipping.components.ShippingZoneRates.636461959":"নাম","src.shipping.components.ShippingZonesList.636461959":"নাম","src.staff.components.StaffList.636461959":"নাম","src.translations.components.TranslationsEntitiesList.636461959":"নাম","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.351422234":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.109182747":"","src.auth.components.LoginPage.4028609483":"","src.auth.components.NewPasswordPage.1915811227":"","src.auth.components.NewPasswordPage.1254879564":"","src.auth.components.NewPasswordPage.2799926859":"","src.auth.components.NewPasswordPage.4253911811":"","src.auth.components.NewPasswordPage.2342634351":"","src.auth.components.ResetPasswordPage.2370700732":"","src.auth.components.ResetPasswordPage.3663311080":"","src.auth.components.ResetPasswordSuccessPage.4066297200":"","src.auth.components.ResetPasswordSuccessPage.2245157344":"","src.auth.views.2388238158":"","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"","src.categories.views.2004894945":"","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.2159874182":"","src.categories.components.CategoryUpdatePage.2159874182":"","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.1140231710":"","src.categories.views.1140231710":"","src.categories.components.CategoryListPage.4294878092":"","src.categories.components.CategoryListPage.3841025483":"","src.translations.components.TranslationsEntitiesListPage.3841025483":"","src.categories.components.CategoryProductList.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductList.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProductList.3640454975":"","src.components.ProductList.3640454975":"","src.products.components.ProductList.3640454975":"","src.products.components.ProductListPage.3640454975":"","productStatusLabel":"","src.collections.components.CollectionList.3640454975":"","src.collections.components.CollectionProducts.3640454975":"","src.discounts.components.DiscountProducts.3640454975":"","src.pages.components.PageList.3640454975":"","src.products.views.ProductList.published":"","src.categories.components.CategoryProductList.1134347598":"","src.orders.components.OrderFulfillment.1134347598":"","src.products.components.ProductList.1134347598":"","src.products.components.ProductListPage.1134347598":"","src.products.components.ProductPricing.1134347598":"","src.components.ProductList.1134347598":"","src.orders.components.OrderDraftDetailsProducts.1134347598":"","src.orders.components.OrderUnfulfilledItems.1134347598":"","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"","src.shipping.components.ShippingZoneRates.1134347598":"","src.categories.components.CategoryProductList.2341910657":"","src.products.components.ProductList.2341910657":"","src.collections.components.CollectionList.2341910657":"","src.collections.components.CollectionProducts.2341910657":"","src.discounts.components.DiscountProducts.2341910657":"","src.components.ProductList.2341910657":"","src.categories.components.CategoryProductList.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.products.components.ProductList.1657559629":"","src.categories.components.CategoryProducts.4164156574":"","src.categories.components.CategoryProducts.3554578821":"","src.categories.components.CategoryUpdatePage.2968663655":"পণ্যগুলি","src.discounts.components.DiscountCategories.2968663655":"পণ্যগুলি","src.discounts.components.DiscountCollections.2968663655":"পণ্যগুলি","src.products":"পণ্যগুলি","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryUpdatePage.3229914152":"","src.categories.components.CategoryUpdatePage.770296100":"","src.categories.views.1754466114":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.CategoryList.3488150607":"","src.categories.views.712767046":"","src.categories.views.CategoryList.712767046":"","src.categories.views.299584400":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.categories.views.CategoryList.2144707585":"","src.collections.components.CollectionCreatePage.3958681866":"","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionCreatePage.2001551496":"","src.collections.components.CollectionDetailsPage.2001551496":"","src.pages.components.PageDetailsPage.2001551496":"","src.products.components.ProductCreatePage.2001551496":"","src.products.components.ProductUpdatePage.2001551496":"","src.collections.components.CollectionCreatePage.1815688500":"","src.collections.components.CollectionDetailsPage.1815688500":"","src.pages.components.PageDetailsPage.1815688500":"","src.products.components.ProductCreatePage.1815688500":"","src.products.components.ProductUpdatePage.1815688500":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"","src.availability":"","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionListPage.686910896":"","src.collections.views.686910896":"","src.collections.components.CollectionListPage.1631917001":"","src.collections.components.CollectionListPage.4057224233":"","src.components.AssignCollectionDialog.4057224233":"","src.translations.components.TranslationsEntitiesListPage.4057224233":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"","src.collections.views.2402899582":"","src.collections.views.CollectionList.2237014112":"","src.pages.views.2237014112":"","src.products.views.ProductList.2237014112":"","src.collections.views.CollectionList.1547167026":"","src.pages.views.1547167026":"","src.products.views.ProductList.1547167026":"","src.collections.views.CollectionList.2823425739":"","src.collections.views.CollectionList.1348793822":"","src.collections.views.CollectionList.2637364047":"","src.collections.views.CollectionList.3944356444":"","src.collections.views.CollectionList.3817188998":"","src.collections.views.CollectionList.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"","src.components.ErrorMessageCard.2845142593":"","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.Filter.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.Filter.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.FilterBar.2340527467":"","src.components.SearchBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"","src.pages.components.PageList.1459686496":"","src.products.components.ProductListFilter.1459686496":"","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"","src.products.views.ProductList.hidden":"","src.components.VisibilityCard.292404896":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","src.configuration.2326418019":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","src.configuration.3655543906":"","configurationMenuShipping":"","configurationMenuTaxes":"","src.configuration.3140151600":"","configurationMenuStaff":"","src.configuration.1233229030":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","configurationPluginsPages":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"","src.customers.components.CustomerAddresses.3517722732":"","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"ঠিকানা","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"","src.orders.components.OrderCustomerNote.1520756907":"","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"","src.customers.components.CustomerDetails.577013340":"","src.customers.components.CustomerCreatePage.1934221653":"","src.customers.components.CustomerListPage.1934221653":"","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerListPage.477293306":"","src.customers.components.CustomerListPage.1643417013":"","src.customers.components.CustomerOrders.3878642352":"","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"","src.orders.components.OrderDraftList.4205493358":"","src.orders.components.OrderList.4205493358":"","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"","src.orders.components.OrderListFilter.1756106276":"","src.plugins.components.PluginInfo.1756106276":"","src.products.components.ProductListFilter.1756106276":"","src.products.components.ProductVariants.1756106276":"","src.customers.components.CustomerOrders.878013594":"","src.orders.components.OrderDraftDetailsProducts.878013594":"","src.orders.components.OrderDraftDetailsSummary.878013594":"","src.orders.components.OrderDraftList.878013594":"","src.orders.components.OrderFulfillment.878013594":"","src.orders.components.OrderUnfulfilledItems.878013594":"","src.orders.components.OrderList.878013594":"","src.orders.components.OrderPayment.878013594":"","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.CustomerList.1946482599":"","src.customers.views.CustomerList.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","src.discounts.components.SaleListPage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"","src.discounts.components.SaleSummary.1148029984":"","src.discounts.components.VoucherList.1148029984":"","src.discounts.components.VoucherSummary.1148029984":"","src.discounts.components.VoucherValue.1148029984":"","src.products.components.ProductAttributes.1148029984":"","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.3907768880":"","src.discounts.components.SaleListPage.1866913828":"","src.translations.components.TranslationsEntitiesListPage.1866913828":"","src.discounts.components.SalePricing.1099355007":"","src.products.components.ProductPricing.1099355007":"","src.products.components.ProductVariantPrice.1099355007":"","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"","src.discounts.components.VoucherSummary.78726751":"","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.614836274":"","src.discounts.components.VoucherListPage.1112241061":"","src.discounts.components.VoucherListPage.1930485532":"","src.translations.components.TranslationsEntitiesListPage.1930485532":"","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"","src.discounts.shipment":"","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.SaleList.2809303671":"","src.discounts.views.SaleList.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.VoucherList.367317371":"","src.discounts.views.VoucherList.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.somethingWentWrong":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"","src.orders.views.OrderList.3528672691":"","src.confirm":"","src.delete":"","src.edit":"","src.manage":"","src.remove":"","src.save":"","src.show":"","src.undo":"","src.attributes":"","src.products.components.ProductAttributes.4153345096":"","src.categories":"","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"","src.customers":"","src.draftOrders":"","src.home":"","src.navigation":"","src.orders":"","src.pages":"","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.plugins":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"বিক্রয়","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"","src.taxes.components.CountryListPage.3955023266":"","src.translations":"","src.vouchers":"","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"","src.partiallyPaid":"","src.partiallyRefunded":"","src.refunded":"","src.unpaid":"","src.cancelled":"","src.draft":"","src.fulfilled":"","src.orders.views.OrderList.fulfilled":"","src.orders.components.OrderListFilter.1712863026":"","src.partiallyFulfilled":"","src.unfulfilled":"","src.orders.views.OrderList.unfulfilled":"","src.orders.components.OrderListFilter.1751787272":"","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"লিংক","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"","src.orders.components.OrderDetailsPage.1854613983":"","src.orders.components.OrderDraftPage.1854613983":"","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"","src.orders.components.OrderCustomerEditDialog.1411666943":"","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.632633254":"","src.orders.components.OrderDraftCancelDialog.36681973":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"","src.orders.components.OrderUnfulfilledItems.1895667608":"","src.orders.components.OrderDraftDetailsProducts.2796503714":"পরিমাণ","src.orders.components.OrderFulfillment.2796503714":"পরিমাণ","src.orders.components.OrderFulfillmentDialog.2796503714":"পরিমাণ","src.orders.components.OrderUnfulfilledItems.2796503714":"পরিমাণ","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"","src.orders.components.OrderPayment.781550514":"","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"","src.orders.components.OrderListPage.2826235371":"","src.orders.components.OrderDraftListPage.551325728":"","src.orders.components.OrderDraftListPage.77765281":"","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"","src.orders.components.OrderFulfillmentCancelDialog.732594284":"","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.4067959693":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2415661583":"","src.orders.views.OrderList.readyToCapture":"","src.orders.components.OrderListFilter.2222765704":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"প্রেরণ","src.productTypes.components.ProductTypeShipping.1325966144":"প্রেরণ","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"প্রেরণ","src.orders.components.OrderPayment.3768782744":"","src.orders.components.OrderPayment.2320183694":"","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"","src.orders.components.OrderPayment.2845258362":"","src.orders.components.OrderPayment.2444197639":"","src.orders.components.OrderPayment.3500506678":"","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.1542417144":"","src.products.components.ProductListPage.1542417144":"","src.products.views.1542417144":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.OrderDraftList.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.OrderDraftList.1648805446":"","src.orders.views.OrderDraftList.1161115149":"","src.orders.views.OrderDraftList.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.1068617485":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"","src.pages.components.PageList.1124600214":"","src.pages.components.PageInfo.1116746286":"","src.translations.components.TranslationsPagesPage.1116746286":"","src.pages.components.PageList.3478065224":"","src.pages.components.PageSlug.3478065224":"","src.productTypes.components.ProductTypeAttributes.3478065224":"","src.pages.components.PageList.3767550649":"","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.3785394515":"","src.pages.views.3785394515":"","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.plugins.components.PluginInfo.3425535100":"","src.plugins.components.PluginsDetailsPage.3425535100":"","src.plugins.components.PluginInfo.1049131348":"","src.plugins.components.PluginInfo.4013064767":"","src.plugins.components.PluginsDetailsPage.3352026836":"","src.plugins.components.PluginsDetailsPage.2277745418":"","src.plugins.components.PluginsDetailsPage.1970881031":"","src.plugins.components.PluginSettings.1970881031":"","src.plugins.components.PluginsDetailsPage.4241018152":"","src.plugins.components.PluginsList.3247064221":"সক্রিয়","src.staff.components.StaffList.3247064221":"সক্রিয়","src.plugins.components.PluginsList.4120604650":"","src.plugins.components.PluginsList.666641390":"","src.plugins.views.100549097":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"","src.products.components.ProductVariantImages.3240888698":"","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"","src.products.components.ProductVariantStock.3841616483":"","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListFilter.821159718":"","src.products.components.ProductListFilter.1421689426":"","src.products.components.ProductListFilter.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"","prodictStockInventoryLabel":"","src.products.components.ProductVariantStock.3490038570":"","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"","src.products.components.ProductVariants.2153006789":"","src.products.components.ProductVariantNavigation.2845381934":"","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.3989383405":"","src.products.views.3989383405":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1591632382":"","src.products.views.1731766393":"","src.products.views.2880386427":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1217376589":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.3479705616":"","src.productTypes.components.ProductTypeListPage.1776073799":"","src.productTypes.components.ProductTypeListPage.3420445375":"","src.translations.components.TranslationsEntitiesListPage.3420445375":"","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.ProductTypeList.4080551769":"","src.productTypes.views.ProductTypeList.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRates.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2673544109":"","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.1947090060":"","src.shipping.views.ShippingZoneDetails.131963671":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"","src.siteSettings.components.SiteSettingsKeys.2446088470":"","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.1481503299":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.797461521":"","src.staff.components.StaffListPage.2852350932":"","src.staff.components.StaffListPage.61043583":"","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"সক্রিয় ব্যবহারকারী","src.staff.views.1308770978":"","src.staff.views.8878988":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.2105464697":"","src.translations.components.TranslationsEntitiesListPage.2559018090":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file diff --git a/locale/bn.po b/locale/bn.po index 07c10bd91..a9073b23e 100644 --- a/locale/bn.po +++ b/locale/bn.po @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"POT-Creation-Date: 2019-09-06T13:56:36.897Z\n" +"POT-Creation-Date: 2019-09-16T15:25:09.340Z\n" "Last-Translator: Mohd. Shafikur Rahman , 2019\n" "Language-Team: Bengali (https://www.transifex.com/mirumee/teams/34782/bn/)\n" "MIME-Version: 1.0\n" @@ -142,22 +142,6 @@ msgctxt "create new menu item, header" msgid "Add Item" msgstr "" -#. [menuCreateDialogHeader] - dialog header -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json -msgctxt "dialog header" -msgid "Add Menu" -msgstr "" - -#. [menuListPageAddMenu] - button -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json -msgctxt "button" -msgid "Add Menu" -msgstr "" - #. [src.siteSettings.components.SiteSettingsKeyDialog.1238948746] - dialog #. header #. defaultMessage is: @@ -167,14 +151,6 @@ msgctxt "dialog header" msgid "Add New Authorization Key" msgstr "" -#. [src.pages.components.PageDetailsPage.755314116] - page header -#. defaultMessage is: -#. Add Page -#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json -msgctxt "page header" -msgid "Add Page" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.2892088870] - dialog header #. defaultMessage is: #. Add Price Rate @@ -183,38 +159,6 @@ msgctxt "dialog header" msgid "Add Price Rate" msgstr "" -#. [src.orders.components.OrderProductAddDialog.2775402904] - dialog header -#. defaultMessage is: -#. Add Product -#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json -msgctxt "dialog header" -msgid "Add Product" -msgstr "" - -#. [src.products.components.ProductListPage.2775402904] - button -#. defaultMessage is: -#. Add Product -#: build/locale/src/products/components/ProductListPage/ProductListPage.json -msgctxt "button" -msgid "Add Product" -msgstr "" - -#. [src.discounts.components.SaleListPage.1742771332] - button -#. defaultMessage is: -#. Add Sale -#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json -msgctxt "button" -msgid "Add Sale" -msgstr "" - -#. [src.staff.components.StaffAddMemberDialog.3490059488] - dialog header -#. defaultMessage is: -#. Add Staff Member -#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json -msgctxt "dialog header" -msgid "Add Staff Member" -msgstr "" - #. [src.attributes.components.AttributeValueEditDialog.1841790893] - add #. attribute value #. defaultMessage is: @@ -224,14 +168,6 @@ msgctxt "add attribute value" msgid "Add Value" msgstr "" -#. [src.products.views.2178905289] - header -#. defaultMessage is: -#. Add Variant -#: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "header" -msgid "Add Variant" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.1397795758] - add weight #. based shipping method, dialog header #. defaultMessage is: @@ -249,14 +185,6 @@ msgctxt "button" msgid "Add address" msgstr "" -#. [src.attributes.components.AttributeListPage.350498821] - button -#. defaultMessage is: -#. Add attribute -#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json -msgctxt "button" -msgid "Add attribute" -msgstr "" - #. [src.siteSettings.components.SiteSettingsKeyDialog.50561933] - button #. defaultMessage is: #. Add authentication @@ -265,14 +193,6 @@ msgctxt "button" msgid "Add authentication" msgstr "" -#. [src.categories.components.CategoryListPage.228151782] - button -#. defaultMessage is: -#. Add category -#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json -msgctxt "button" -msgid "Add category" -msgstr "" - #. [src.collections.components.CollectionCreatePage.3958681866] - page header #. defaultMessage is: #. Add collection @@ -281,14 +201,6 @@ msgctxt "page header" msgid "Add collection" msgstr "" -#. [src.collections.components.CollectionListPage.3958681866] - button -#. defaultMessage is: -#. Add collection -#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json -msgctxt "button" -msgid "Add collection" -msgstr "" - #. [src.customers.components.CustomerCreatePage.1934221653] - page header #. defaultMessage is: #. Add customer @@ -321,14 +233,6 @@ msgctxt "button" msgid "Add key" msgstr "" -#. [menuItemsAddItem] - add new menu item -#. defaultMessage is: -#. Add new item -#: build/locale/src/navigation/components/MenuItems/MenuItems.json -msgctxt "add new menu item" -msgid "Add new item" -msgstr "" - #. [menuItemsPlaceholder] #. defaultMessage is: #. Add new menu item to begin creating menu @@ -363,14 +267,6 @@ msgctxt "button" msgid "Add or Edit Link" msgstr "" -#. [src.pages.components.PageListPage.1767905232] - button -#. defaultMessage is: -#. Add page -#: build/locale/src/pages/components/PageListPage/PageListPage.json -msgctxt "button" -msgid "Add page" -msgstr "" - #. [src.categories.components.CategoryProducts.3554578821] - button #. defaultMessage is: #. Add product @@ -379,14 +275,6 @@ msgctxt "button" msgid "Add product" msgstr "" -#. [src.productTypes.components.ProductTypeListPage.889729490] - button -#. defaultMessage is: -#. Add product type -#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json -msgctxt "button" -msgid "Add product type" -msgstr "" - #. [src.orders.components.OrderDraftDetails.2528459381] - button #. defaultMessage is: #. Add products @@ -395,14 +283,6 @@ msgctxt "button" msgid "Add products" msgstr "" -#. [src.shipping.components.ShippingZoneRates.352297149] - button -#. defaultMessage is: -#. Add rate -#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json -msgctxt "button" -msgid "Add rate" -msgstr "" - #. [src.categories.components.CategoryCreatePage.2563994280] #. defaultMessage is: #. Add search engine title and description to make this category easier to @@ -464,30 +344,6 @@ msgctxt "button" msgid "Add shipping carrier" msgstr "" -#. [src.shipping.components.ShippingZonesList.2474410767] - button -#. defaultMessage is: -#. Add shipping zone -#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json -msgctxt "button" -msgid "Add shipping zone" -msgstr "" - -#. [src.staff.components.StaffListPage.802625341] - button -#. defaultMessage is: -#. Add staff member -#: build/locale/src/staff/components/StaffListPage/StaffListPage.json -msgctxt "button" -msgid "Add staff member" -msgstr "" - -#. [src.categories.components.CategoryList.435697837] - button -#. defaultMessage is: -#. Add subcategory -#: build/locale/src/categories/components/CategoryList/CategoryList.json -msgctxt "button" -msgid "Add subcategory" -msgstr "" - #. [src.attributes.components.AttributeProperties.673770329] - add attribute #. as column in product list table #. defaultMessage is: @@ -515,35 +371,14 @@ msgctxt "dialog header" msgid "Add tracking code" msgstr "" -#. [src.attributes.components.AttributeValues.254756045] - add attribute value -#. button -#. defaultMessage is: -#. Add value -#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json -msgctxt "add attribute value button" -msgid "Add value" -msgstr "" - #. [src.products.components.ProductVariantNavigation.2845381934] - button #. defaultMessage is: #. Add variant -#. [src.products.components.ProductVariants.2845381934] - button -#. defaultMessage is: -#. Add variant #: build/locale/src/products/components/ProductVariantNavigation/ProductVariantNavigation.json -#: build/locale/src/products/components/ProductVariants/ProductVariants.json msgctxt "button" msgid "Add variant" msgstr "" -#. [src.discounts.components.VoucherListPage.1536809153] - button -#. defaultMessage is: -#. Add voucher -#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json -msgctxt "button" -msgid "Add voucher" -msgstr "" - #. [src.attributes.views.AttributeDetails.634268988] - added new attribute #. value #. defaultMessage is: @@ -601,14 +436,6 @@ msgctxt "description" msgid "Address line 2" msgstr "" -#. [src.customers.components.CustomerAddress.1320082647] - addres card header -#. defaultMessage is: -#. Address {addressNumber} -#: build/locale/src/customers/components/CustomerAddress/CustomerAddress.json -msgctxt "addres card header" -msgid "Address {addressNumber}" -msgstr "" - #. [src.attributes.components.AttributeValues.1565474525] - attribute values #. list: slug column header #. defaultMessage is: @@ -658,6 +485,46 @@ msgctxt "tax rate" msgid "Agricultural supplies" msgstr "" +#. [src.attributes.components.AttributeListPage.2417065806] - tab name +#. defaultMessage is: +#. All Attributes +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "tab name" +msgid "All Attributes" +msgstr "" + +#. [src.categories.components.CategoryListPage.4294878092] - tab name +#. defaultMessage is: +#. All Categories +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "tab name" +msgid "All Categories" +msgstr "" + +#. [src.collections.components.CollectionListPage.1631917001] - tab name +#. defaultMessage is: +#. All Collections +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "tab name" +msgid "All Collections" +msgstr "" + +#. [src.customers.components.CustomerListPage.477293306] - tab name +#. defaultMessage is: +#. All Customers +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "tab name" +msgid "All Customers" +msgstr "" + +#. [src.orders.components.OrderDraftListPage.551325728] - tab name +#. defaultMessage is: +#. All Drafts +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "tab name" +msgid "All Drafts" +msgstr "" + #. [src.orders.components.OrderListPage.875489544] - tab name #. defaultMessage is: #. All Orders @@ -675,22 +542,54 @@ msgctxt "section header" msgid "All Photos" msgstr "" -#. [src.products.components.ProductListPage.821159718] - tab name +#. [src.productTypes.components.ProductTypeListPage.1776073799] - tab name +#. defaultMessage is: +#. All Product Types +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "tab name" +msgid "All Product Types" +msgstr "" + +#. [src.products.components.ProductListFilter.821159718] - tab name #. defaultMessage is: #. All Products -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "tab name" msgid "All Products" msgstr "" -#. [src.categories.components.CategoryList.3229914152] - section header +#. [src.discounts.components.SaleListPage.3907768880] - tab name +#. defaultMessage is: +#. All Sales +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "tab name" +msgid "All Sales" +msgstr "" + +#. [src.staff.components.StaffListPage.2852350932] - tab name +#. defaultMessage is: +#. All Staff Members +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "tab name" +msgid "All Staff Members" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.3229914152] - section header #. defaultMessage is: #. All Subcategories -#: build/locale/src/categories/components/CategoryList/CategoryList.json +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json msgctxt "section header" msgid "All Subcategories" msgstr "" +#. [src.discounts.components.VoucherListPage.1112241061] - tab name +#. defaultMessage is: +#. All Vouchers +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "tab name" +msgid "All Vouchers" +msgstr "" + #. [src.taxes.components.TaxConfiguration.142803418] #. defaultMessage is: #. All products prices are entered with tax included @@ -798,6 +697,14 @@ msgctxt "description" msgid "Are you sure you want to delete collection's image?" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.36681973] +#. defaultMessage is: +#. Are you sure you want to delete draft #{number}? +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "description" +msgid "Are you sure you want to delete draft #{number}?" +msgstr "" + #. [menuDetailsDeleteMenuContent] #. defaultMessage is: #. Are you sure you want to delete menu {menuName}? @@ -814,6 +721,14 @@ msgctxt "description" msgid "Are you sure you want to delete this address from users address book?" msgstr "" +#. [src.products.views.2880386427] +#. defaultMessage is: +#. Are you sure you want to delete this image? +#: build/locale/src/products/views/ProductImage.json +msgctxt "description" +msgid "Are you sure you want to delete this image?" +msgstr "" + #. [src.attributes.components.AttributeDeleteDialog.3738429348] - dialog #. content #. defaultMessage is: @@ -864,12 +779,7 @@ msgstr "" #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this attribute} #. other{{displayQuantity} categories}}? -#. [src.categories.views.844574071] -#. defaultMessage is: -#. Are you sure you want to delete {counter,plural,one{this attribute} -#. other{{displayQuantity} categories}}? #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this attribute} " @@ -887,22 +797,33 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.2497542455] +#. [src.categories.views.CategoryList.2144707585] +#. defaultMessage is: +#. Are you sure you want to delete {counter,plural,one{this category} +#. other{{displayQuantity} categories}}? +#: build/locale/src/categories/views/CategoryList/CategoryList.json +msgctxt "description" +msgid "" +"Are you sure you want to delete {counter,plural,one{this category} " +"other{{displayQuantity} categories}}?" +msgstr "" + +#. [src.collections.views.CollectionList.2497542455] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this collection} " "other{{displayQuantity} collections}}?" msgstr "" -#. [src.customers.views.409347866] +#. [src.customers.views.CustomerList.409347866] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this customer} #. other{{displayQuantity} customers}}? -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this customer} " @@ -920,11 +841,11 @@ msgid "" "other{{displayQuantity} menus}}?" msgstr "" -#. [src.orders.views.1389231130] - dialog content +#. [src.orders.views.OrderDraftList.1389231130] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this order draft} #. other{{displayQuantity} orderDrafts}}? -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this order draft} " @@ -942,11 +863,11 @@ msgid "" "other{{displayQuantity} pages}}?" msgstr "" -#. [src.productTypes.views.2294091098] - dialog content +#. [src.productTypes.views.ProductTypeList.2294091098] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this product type} #. other{{displayQuantity} product types}}? -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this product type} " @@ -964,11 +885,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.discounts.views.2516361175] - dialog content +#. [src.discounts.views.SaleList.2516361175] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this sale} #. other{{displayQuantity} sales}}? -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this sale} " @@ -997,17 +918,33 @@ msgid "" "other{{displayQuantity} variants}}?" msgstr "" -#. [src.discounts.views.1791926983] - dialog content +#. [src.discounts.views.VoucherList.1791926983] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this voucher} #. other{{displayQuantity} vouchers}}? -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this voucher} " "other{{displayQuantity} vouchers}}?" msgstr "" +#. [src.shipping.views.ShippingZoneDetails.131963671] - unassign country +#. defaultMessage is: +#. Are you sure you want to delete {countryName} from this shipping zone? +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country" +msgid "Are you sure you want to delete {countryName} from this shipping zone?" +msgstr "" + +#. [src.staff.views.8878988] +#. defaultMessage is: +#. Are you sure you want to delete {email} from staff members? +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "description" +msgid "Are you sure you want to delete {email} from staff members?" +msgstr "" + #. [src.customers.views.1927691511] - delete customer, dialog content #. defaultMessage is: #. Are you sure you want to delete {email}? @@ -1122,11 +1059,11 @@ msgctxt "description" msgid "Are you sure you want to mark this order as paid?" msgstr "" -#. [src.collections.views.1348793822] +#. [src.collections.views.CollectionList.1348793822] #. defaultMessage is: #. Are you sure you want to publish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to publish {counter,plural,one{this collection} " @@ -1155,30 +1092,6 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.orders.components.OrderDraftCancelDialog.3199827590] -#. defaultMessage is: -#. Are you sure you want to remove draft #{number}? -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "description" -msgid "Are you sure you want to remove draft #{number}?" -msgstr "" - -#. [src.products.views.672103788] -#. defaultMessage is: -#. Are you sure you want to remove this image? -#: build/locale/src/products/views/ProductImage.json -msgctxt "description" -msgid "Are you sure you want to remove this image?" -msgstr "" - -#. [src.shipping.views.ShippingZoneDetails.1790261672] - unassign country -#. defaultMessage is: -#. Are you sure you want to remove {countryName} from this shipping zone? -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country" -msgid "Are you sure you want to remove {countryName} from this shipping zone?" -msgstr "" - #. [src.staff.views.3945766678] #. defaultMessage is: #. Are you sure you want to remove {email} avatar? @@ -1187,14 +1100,6 @@ msgctxt "description" msgid "Are you sure you want to remove {email} avatar?" msgstr "" -#. [src.staff.views.2728048444] -#. defaultMessage is: -#. Are you sure you want to remove {email} from staff members? -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "description" -msgid "Are you sure you want to remove {email} from staff members?" -msgstr "" - #. [src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450] #. defaultMessage is: #. Are you sure you want to unassign {attributeName} from {productTypeName}? @@ -1275,11 +1180,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.3944356444] +#. [src.collections.views.CollectionList.3944356444] #. defaultMessage is: #. Are you sure you want to unpublish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to unpublish {counter,plural,one{this collection} " @@ -1440,6 +1345,15 @@ msgctxt "button" msgid "Assign products" msgstr "" +#. [src.attributes.components.AttributeValues.351422234] - assign attribute +#. value button +#. defaultMessage is: +#. Assign value +#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json +msgctxt "assign attribute value button" +msgid "Assign value" +msgstr "" + #. [src.attributes.components.AttributeDetails.3605174225] - attribute's slug #. short code label #. defaultMessage is: @@ -1518,6 +1432,14 @@ msgctxt "product attributes, section header" msgid "Attributes" msgstr "" +#. [src.configuration.2326418019] +#. defaultMessage is: +#. Attributes and Product Typess +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Attributes and Product Typess" +msgstr "" + #. [src.attributes.views.AttributeList.3218248395] - deleted multiple #. attributes #. defaultMessage is: @@ -2301,6 +2223,22 @@ msgctxt "description" msgid "Country area" msgstr "" +#. [menuCreateDialogHeader] - dialog header +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json +msgctxt "dialog header" +msgid "Create Menu" +msgstr "" + +#. [menuListPageAddMenu] - button +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json +msgctxt "button" +msgid "Create Menu" +msgstr "" + #. [src.attributes.components.AttributePage.2855501559] - page title #. defaultMessage is: #. Create New Attribute @@ -2325,6 +2263,30 @@ msgctxt "header" msgid "Create New Shipping Zone" msgstr "" +#. [src.pages.components.PageDetailsPage.1068617485] - page header +#. defaultMessage is: +#. Create Page +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page header" +msgid "Create Page" +msgstr "" + +#. [src.orders.components.OrderProductAddDialog.1542417144] - dialog header +#. defaultMessage is: +#. Create Product +#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json +msgctxt "dialog header" +msgid "Create Product" +msgstr "" + +#. [src.products.components.ProductListPage.1542417144] - button +#. defaultMessage is: +#. Create Product +#: build/locale/src/products/components/ProductListPage/ProductListPage.json +msgctxt "button" +msgid "Create Product" +msgstr "" + #. [src.products.views.1542417144] - window title #. defaultMessage is: #. Create Product @@ -2357,11 +2319,19 @@ msgctxt "page header" msgid "Create Sale" msgstr "" -#. [src.products.views.2362587265] - window title +#. [src.discounts.components.SaleListPage.3866518732] - button +#. defaultMessage is: +#. Create Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "button" +msgid "Create Sale" +msgstr "" + +#. [src.products.views.2362587265] - header #. defaultMessage is: #. Create Variant #: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "window title" +msgctxt "header" msgid "Create Variant" msgstr "" @@ -2373,6 +2343,22 @@ msgctxt "page header" msgid "Create Voucher" msgstr "" +#. [src.attributes.components.AttributeListPage.3824684885] - button +#. defaultMessage is: +#. Create attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "button" +msgid "Create attribute" +msgstr "" + +#. [src.categories.components.CategoryListPage.1140231710] - button +#. defaultMessage is: +#. Create category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "button" +msgid "Create category" +msgstr "" + #. [src.categories.views.1140231710] - window title #. defaultMessage is: #. Create category @@ -2381,6 +2367,14 @@ msgctxt "window title" msgid "Create category" msgstr "" +#. [src.collections.components.CollectionListPage.686910896] - button +#. defaultMessage is: +#. Create collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "button" +msgid "Create collection" +msgstr "" + #. [src.collections.views.686910896] - window title #. defaultMessage is: #. Create collection @@ -2397,6 +2391,14 @@ msgctxt "window title" msgid "Create customer" msgstr "" +#. [menuItemsAddItem] - add new menu item +#. defaultMessage is: +#. Create new item +#: build/locale/src/navigation/components/MenuItems/MenuItems.json +msgctxt "add new menu item" +msgid "Create new item" +msgstr "" + #. [src.orders.components.OrderDraftListPage.2826235371] - button #. defaultMessage is: #. Create order @@ -2409,6 +2411,14 @@ msgctxt "button" msgid "Create order" msgstr "" +#. [src.pages.components.PageListPage.3785394515] - button +#. defaultMessage is: +#. Create page +#: build/locale/src/pages/components/PageListPage/PageListPage.json +msgctxt "button" +msgid "Create page" +msgstr "" + #. [src.pages.views.3785394515] - header #. defaultMessage is: #. Create page @@ -2420,11 +2430,55 @@ msgstr "" #. [src.shipping.components.ShippingZoneRateDialog.16061680] - button #. defaultMessage is: #. Create rate +#. [src.shipping.components.ShippingZoneRates.16061680] - button +#. defaultMessage is: +#. Create rate #: build/locale/src/shipping/components/ShippingZoneRateDialog/ShippingZoneRateDialog.json +#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json msgctxt "button" msgid "Create rate" msgstr "" +#. [src.shipping.components.ShippingZonesList.2673544109] - button +#. defaultMessage is: +#. Create shipping zone +#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json +msgctxt "button" +msgid "Create shipping zone" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.770296100] - button +#. defaultMessage is: +#. Create subcategory +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json +msgctxt "button" +msgid "Create subcategory" +msgstr "" + +#. [src.products.components.ProductVariants.3989383405] - button +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/components/ProductVariants/ProductVariants.json +msgctxt "button" +msgid "Create variant" +msgstr "" + +#. [src.products.views.3989383405] - window title +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/views/ProductVariantCreate.json +msgctxt "window title" +msgid "Create variant" +msgstr "" + +#. [src.discounts.components.VoucherListPage.614836274] - button +#. defaultMessage is: +#. Create voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "button" +msgid "Create voucher" +msgstr "" + #. [src.collections.views.1597339737] #. defaultMessage is: #. Created collection @@ -2471,7 +2525,11 @@ msgstr "" #. [src.components.FilterBar.2340527467] #. defaultMessage is: #. Custom Filter +#. [src.components.SearchBar.2340527467] +#. defaultMessage is: +#. Custom Filter #: build/locale/src/components/FilterBar/FilterBar.json +#: build/locale/src/components/SearchBar/SearchBar.json msgctxt "description" msgid "Custom Filter" msgstr "" @@ -2727,10 +2785,18 @@ msgctxt "dialog title" msgid "Delete Collection" msgstr "" -#. [src.orders.views.1161115149] - dialog header +#. [src.products.views.1731766393] - dialog header +#. defaultMessage is: +#. Delete Image +#: build/locale/src/products/views/ProductImage.json +msgctxt "dialog header" +msgid "Delete Image" +msgstr "" + +#. [src.orders.views.OrderDraftList.1161115149] - dialog header #. defaultMessage is: #. Delete Order Drafts -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog header" msgid "Delete Order Drafts" msgstr "" @@ -2768,10 +2834,10 @@ msgctxt "dialog header" msgid "Delete Product Type" msgstr "" -#. [src.productTypes.views.4080551769] - dialog header +#. [src.productTypes.views.ProductTypeList.4080551769] - dialog header #. defaultMessage is: #. Delete Product Types -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog header" msgid "Delete Product Types" msgstr "" @@ -2800,10 +2866,10 @@ msgctxt "dialog header" msgid "Delete Sale" msgstr "" -#. [src.discounts.views.2809303671] - dialog header +#. [src.discounts.views.SaleList.2809303671] - dialog header #. defaultMessage is: #. Delete Sales -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog header" msgid "Delete Sales" msgstr "" @@ -2817,9 +2883,13 @@ msgctxt "custom search delete, dialog header" msgid "Delete Search" msgstr "" +#. [src.components.Filter.2173195312] - button +#. defaultMessage is: +#. Delete Search #. [src.components.TableFilter.2173195312] - button #. defaultMessage is: #. Delete Search +#: build/locale/src/components/Filter/FilterSearch.json #: build/locale/src/components/TableFilter/FilterChips.json msgctxt "button" msgid "Delete Search" @@ -2886,10 +2956,10 @@ msgctxt "dialog header" msgid "Delete Voucher" msgstr "" -#. [src.discounts.views.367317371] - dialog header +#. [src.discounts.views.VoucherList.367317371] - dialog header #. defaultMessage is: #. Delete Vouchers -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog header" msgid "Delete Vouchers" msgstr "" @@ -2923,11 +2993,11 @@ msgstr "" #. [src.categories.views.712767046] - dialog title #. defaultMessage is: #. Delete categories -#. [src.categories.views.712767046] - dialog title +#. [src.categories.views.CategoryList.712767046] - dialog title #. defaultMessage is: #. Delete categories #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "dialog title" msgid "Delete categories" msgstr "" @@ -2944,10 +3014,10 @@ msgctxt "dialog title" msgid "Delete category" msgstr "" -#. [src.collections.views.3817188998] - dialog title +#. [src.collections.views.CollectionList.3817188998] - dialog title #. defaultMessage is: #. Delete collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Delete collections" msgstr "" @@ -2960,14 +3030,31 @@ msgctxt "dialog header" msgid "Delete customer" msgstr "" -#. [src.customers.views.1946482599] - dialog header +#. [src.customers.views.CustomerList.1946482599] - dialog header #. defaultMessage is: #. Delete customers -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "dialog header" msgid "Delete customers" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.632633254] - dialog header +#. defaultMessage is: +#. Delete draft order +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "dialog header" +msgid "Delete draft order" +msgstr "" + +#. [src.shipping.views.ShippingZoneDetails.1947090060] - unassign country, +#. dialog header +#. defaultMessage is: +#. Delete from shipping zone +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country, dialog header" +msgid "Delete from shipping zone" +msgstr "" + #. [src.collections.views.942133001] - dialog title #. defaultMessage is: #. Delete image @@ -3028,6 +3115,14 @@ msgctxt "description" msgid "Deleted collection" msgstr "" +#. [src.orders.views.OrderDraftList.1648805446] +#. defaultMessage is: +#. Deleted draft orders +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json +msgctxt "description" +msgid "Deleted draft orders" +msgstr "" + #. [menuListDeletedMenu] #. defaultMessage is: #. Deleted menu @@ -3627,14 +3722,6 @@ msgctxt "order history message" msgid "Fulfilled {quantity} items" msgstr "" -#. [src.orders.components.OrderListFilter.2943502192] - order -#. defaultMessage is: -#. Fulfillment Status -#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json -msgctxt "order" -msgid "Fulfillment Status" -msgstr "" - #. [src.orders.components.OrderHistory.3081292385] - order history message #. defaultMessage is: #. Fulfillment confirmation was sent to customer @@ -3791,12 +3878,12 @@ msgctxt "description" msgid "If empty, the preview shows what will be autogenerated." msgstr "" -#. [src.attributes.components.AttributeProperties.2519239682] +#. [src.attributes.components.AttributeProperties.4048785456] #. defaultMessage is: -#. If enable this attribute can be used as a column in product table. +#. If enabled this attribute can be used as a column in product table. #: build/locale/src/attributes/components/AttributeProperties/AttributeProperties.json msgctxt "description" -msgid "If enable this attribute can be used as a column in product table." +msgid "If enabled this attribute can be used as a column in product table." msgstr "" #. [src.attributes.components.AttributeProperties.787251583] @@ -3902,6 +3989,22 @@ msgctxt "product variant stock" msgid "Inventory" msgstr "" +#. [src.staff.components.StaffAddMemberDialog.1481503299] - dialog header +#. defaultMessage is: +#. Invite Staff Member +#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json +msgctxt "dialog header" +msgid "Invite Staff Member" +msgstr "" + +#. [src.staff.components.StaffListPage.797461521] - button +#. defaultMessage is: +#. Invite staff member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "button" +msgid "Invite staff member" +msgstr "" + #. [src.productTypes.components.ProductTypeShipping.2143413921] - switch #. button #. defaultMessage is: @@ -4254,6 +4357,14 @@ msgctxt "voucher requirement" msgid "Minimum quantity of items" msgstr "" +#. [src.configuration.1233229030] +#. defaultMessage is: +#. Miscellaneous +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Miscellaneous" +msgstr "" + #. [src.attributes.components.AttributeDetails.3334509011] - product attribute #. type #. defaultMessage is: @@ -5086,6 +5197,14 @@ msgctxt "description" msgid "Order History" msgstr "" +#. [src.orders.components.OrderListFilter.2222765704] +#. defaultMessage is: +#. Order Status +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +msgctxt "description" +msgid "Order Status" +msgstr "" + #. [src.orders.components.OrderHistory.1230178536] - order history message #. defaultMessage is: #. Order address was updated @@ -5102,13 +5221,13 @@ msgctxt "order history message" msgid "Order confirmation was sent to customer" msgstr "" -#. [src.orders.views.1872939752] +#. [src.orders.views.OrderDraftList.1872939752] #. defaultMessage is: #. Order draft succesfully created #. [src.orders.views.OrderList.1872939752] #. defaultMessage is: #. Order draft succesfully created -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json #: build/locale/src/orders/views/OrderList/OrderList.json msgctxt "description" msgid "Order draft succesfully created" @@ -5773,6 +5892,14 @@ msgctxt "description" msgid "Product Name" msgstr "" +#. [src.configuration.3655543906] +#. defaultMessage is: +#. Product Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Product Settings" +msgstr "" + #. [src.discounts.components.DiscountProducts.4257289053] #. defaultMessage is: #. Product Type @@ -5931,12 +6058,12 @@ msgctxt "order history message" msgid "Products were added to draft order" msgstr "" -#. [src.orders.components.OrderHistory.2574162126] - order history message +#. [src.orders.components.OrderHistory.4067959693] - order history message #. defaultMessage is: -#. Products were removed from draft order +#. Products were deleted from draft order #: build/locale/src/orders/components/OrderHistory/OrderHistory.json msgctxt "order history message" -msgid "Products were removed from draft order" +msgid "Products were deleted from draft order" msgstr "" #. [src.properties] @@ -5963,10 +6090,10 @@ msgctxt "description" msgid "Provided email address does not exist in our database." msgstr "" -#. [src.collections.views.1547167026] - publish collections +#. [src.collections.views.CollectionList.1547167026] - publish collections #. defaultMessage is: #. Publish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "publish collections" msgid "Publish" msgstr "" @@ -6003,10 +6130,10 @@ msgctxt "dialog header" msgid "Publish Products" msgstr "" -#. [src.collections.views.2823425739] - dialog title +#. [src.collections.views.CollectionList.2823425739] - dialog title #. defaultMessage is: #. Publish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Publish collections" msgstr "" @@ -6180,6 +6307,18 @@ msgctxt "shipping method price" msgid "Rate Price" msgstr "" +#. [src.orders.components.OrderListFilter.2415661583] - order status +#. defaultMessage is: +#. Ready to Capture +#. [src.orders.views.OrderList.readyToCapture] - order status +#. defaultMessage is: +#. Ready to Capture +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +#: build/locale/src/orders/views/OrderList/filters.json +msgctxt "order status" +msgid "Ready to Capture" +msgstr "" + #. [src.customers.components.CustomerOrders.3878642352] - section header #. defaultMessage is: #. Recent orders @@ -6228,22 +6367,14 @@ msgctxt "switch button" msgid "Release all stock allocated to this order" msgstr "" -#. [src.auth.components.LoginPage.3182284913] - login -#. defaultMessage is: -#. Remember me -#: build/locale/src/auth/components/LoginPage/LoginPage.json -msgctxt "login" -msgid "Remember me" -msgstr "" - #. [src.categories.views.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. -#. [src.categories.views.3488150607] +#. [src.categories.views.CategoryList.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "description" msgid "Remember this will also delete all products assigned to this category." msgstr "" @@ -6256,39 +6387,6 @@ msgctxt "button" msgid "Remove" msgstr "" -#. [src.products.views.490753666] - dialog header -#. defaultMessage is: -#. Remove Image -#: build/locale/src/products/views/ProductImage.json -msgctxt "dialog header" -msgid "Remove Image" -msgstr "" - -#. [src.orders.components.OrderDraftCancelDialog.500287069] - dialog header -#. defaultMessage is: -#. Remove draft order -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "dialog header" -msgid "Remove draft order" -msgstr "" - -#. [src.shipping.views.ShippingZoneDetails.254167659] - unassign country, -#. dialog header -#. defaultMessage is: -#. Remove from shipping zone -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country, dialog header" -msgid "Remove from shipping zone" -msgstr "" - -#. [src.orders.views.3880993240] -#. defaultMessage is: -#. Removed draft orders -#: build/locale/src/orders/views/OrderDraftList.json -msgctxt "description" -msgid "Removed draft orders" -msgstr "" - #. [src.pages.views.1457312643] #. defaultMessage is: #. Removed page @@ -6454,6 +6552,18 @@ msgctxt "button" msgid "Save" msgstr "" +#. [src.components.Filter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#. [src.components.TableFilter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#: build/locale/src/components/Filter/FilterSearch.json +#: build/locale/src/components/TableFilter/FilterChips.json +msgctxt "button" +msgid "Save Custom Search" +msgstr "" + #. [src.components.SaveFilterTabDialog.1514415736] - save filter tab, header #. defaultMessage is: #. Save Custom Search @@ -6462,14 +6572,6 @@ msgctxt "save filter tab, header" msgid "Save Custom Search" msgstr "" -#. [src.components.TableFilter.1514415736] - button -#. defaultMessage is: -#. Save Custom Search -#: build/locale/src/components/TableFilter/FilterChips.json -msgctxt "button" -msgid "Save Custom Search" -msgstr "" - #. [src.products.components.ProductVariantCreatePage.2853608829] - button #. defaultMessage is: #. Save variant @@ -6486,6 +6588,14 @@ msgctxt "description" msgid "Saved changes" msgstr "" +#. [src.attributes.components.AttributeListPage.3916653510] +#. defaultMessage is: +#. Search Attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "description" +msgid "Search Attribute" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.902296540] #. defaultMessage is: #. Search Attributes @@ -6502,10 +6612,30 @@ msgctxt "description" msgid "Search Categories" msgstr "" +#. [src.categories.components.CategoryListPage.3841025483] +#. defaultMessage is: +#. Search Category +#. [src.translations.components.TranslationsEntitiesListPage.3841025483] +#. defaultMessage is: +#. Search Category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Category" +msgstr "" + +#. [src.collections.components.CollectionListPage.4057224233] +#. defaultMessage is: +#. Search Collection #. [src.components.AssignCollectionDialog.4057224233] #. defaultMessage is: #. Search Collection +#. [src.translations.components.TranslationsEntitiesListPage.4057224233] +#. defaultMessage is: +#. Search Collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json #: build/locale/src/components/AssignCollectionDialog/AssignCollectionDialog.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json msgctxt "description" msgid "Search Collection" msgstr "" @@ -6518,6 +6648,14 @@ msgctxt "description" msgid "Search Countries" msgstr "" +#. [src.customers.components.CustomerListPage.1643417013] +#. defaultMessage is: +#. Search Customer +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "description" +msgid "Search Customer" +msgstr "" + #. [src.orders.components.OrderCustomer.2433460203] #. defaultMessage is: #. Search Customers @@ -6526,6 +6664,14 @@ msgctxt "description" msgid "Search Customers" msgstr "" +#. [src.orders.components.OrderDraftListPage.77765281] +#. defaultMessage is: +#. Search Draft +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "description" +msgid "Search Draft" +msgstr "" + #. [src.translations.components.TranslationsCategoriesPage.1406947243] #. defaultMessage is: #. Search Engine Description @@ -6606,6 +6752,34 @@ msgctxt "description" msgid "Search Orders..." msgstr "" +#. [src.translations.components.TranslationsEntitiesListPage.2559018090] +#. defaultMessage is: +#. Search Page +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Page" +msgstr "" + +#. [src.translations.components.TranslationsEntitiesListPage.2105464697] +#. defaultMessage is: +#. Search Product +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product" +msgstr "" + +#. [src.productTypes.components.ProductTypeListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#. [src.translations.components.TranslationsEntitiesListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product Type" +msgstr "" + #. [src.components.AssignProductDialog.2850255786] #. defaultMessage is: #. Search Products @@ -6618,14 +6792,46 @@ msgctxt "description" msgid "Search Products" msgstr "" -#. [src.products.components.ProductListPage.3550330425] +#. [src.products.components.ProductListFilter.3550330425] #. defaultMessage is: #. Search Products... -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Search Products..." msgstr "" +#. [src.discounts.components.SaleListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#. [src.translations.components.TranslationsEntitiesListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Sale" +msgstr "" + +#. [src.staff.components.StaffListPage.61043583] +#. defaultMessage is: +#. Search Staff Member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "description" +msgid "Search Staff Member" +msgstr "" + +#. [src.discounts.components.VoucherListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#. [src.translations.components.TranslationsEntitiesListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Voucher" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.524117994] #. defaultMessage is: #. Search by attribute name @@ -6732,10 +6938,10 @@ msgctxt "description" msgid "Select all orders where:" msgstr "" -#. [src.products.components.ProductListPage.1421689426] +#. [src.products.components.ProductListFilter.1421689426] #. defaultMessage is: #. Select all products where: -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Select all products where:" msgstr "" @@ -6821,6 +7027,14 @@ msgctxt "description" msgid "Set plugin as Active" msgstr "" +#. [src.components.VisibilityCard.292404896] +#. defaultMessage is: +#. Set publication date +#: build/locale/src/components/VisibilityCard/VisibilityCard.json +msgctxt "description" +msgid "Set publication date" +msgstr "" + #. [src.discounts.shipment] - voucher discount #. defaultMessage is: #. Shipment @@ -7086,6 +7300,14 @@ msgctxt "staff section name" msgid "Staff Members" msgstr "" +#. [src.configuration.3140151600] +#. defaultMessage is: +#. Staff Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Staff Settings" +msgstr "" + #. [src.standard] - tax rate #. defaultMessage is: #. Standard @@ -8070,10 +8292,10 @@ msgctxt "payment status" msgid "Unpaid" msgstr "" -#. [src.collections.views.2237014112] - unpublish collections +#. [src.collections.views.CollectionList.2237014112] - unpublish collections #. defaultMessage is: #. Unpublish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "unpublish collections" msgid "Unpublish" msgstr "" @@ -8110,10 +8332,10 @@ msgctxt "dialog header" msgid "Unpublish Products" msgstr "" -#. [src.collections.views.2637364047] - dialog title +#. [src.collections.views.CollectionList.2637364047] - dialog title #. defaultMessage is: #. Unpublish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Unpublish collections" msgstr "" @@ -8613,6 +8835,22 @@ msgctxt "description" msgid "ZIP / Postal code" msgstr "" +#. [src.productTypes.components.ProductTypeListPage.3479705616] - button +#. defaultMessage is: +#. create product type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "button" +msgid "create product type" +msgstr "" + +#. [src.staff.views.1308770978] - dialog header +#. defaultMessage is: +#. delete Staff User +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "dialog header" +msgid "delete Staff User" +msgstr "" + #. [orderPaymentVATDoesNotApply] - vat not included in order price #. defaultMessage is: #. does not apply @@ -8686,19 +8924,35 @@ msgctxt "product status is set as" msgid "is set as" msgstr "" -#. [src.staff.views.2240444792] - dialog header -#. defaultMessage is: -#. remove Staff User -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "dialog header" -msgid "remove Staff User" -msgstr "" - -#. [src.components.VisibilityCard.1815688500] +#. [src.collections.components.CollectionCreatePage.1815688500] - collection #. defaultMessage is: #. since {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.1815688500] - collection +#. defaultMessage is: +#. since {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "since {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.1815688500] - page +#. defaultMessage is: +#. since {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "since {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#. [src.products.components.ProductUpdatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "since {date}" msgstr "" @@ -8726,11 +8980,35 @@ msgctxt "weight" msgid "to {value} {unit}" msgstr "" -#. [src.components.VisibilityCard.2001551496] +#. [src.collections.components.CollectionCreatePage.2001551496] - collection #. defaultMessage is: #. will be visible from {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.2001551496] - collection +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "will be visible from {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.2001551496] - page +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "will be visible from {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#. [src.products.components.ProductUpdatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "will be visible from {date}" msgstr "" diff --git a/locale/ca.json b/locale/ca.json index 793b8caf3..ae81fc29a 100644 --- a/locale/ca.json +++ b/locale/ca.json @@ -1 +1 @@ -{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.350498821":"Afegeix atribut","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.2519239682":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"Nom","src.categories.components.CategoryProducts.636461959":"Nom","src.collections.components.CollectionProducts.636461959":"Nom","src.products.components.ProductDetailsForm.636461959":"Nom","src.collections.components.CollectionDetails.636461959":"Nom","src.components.ProductList.636461959":"Nom","src.discounts.components.SaleInfo.636461959":"Nom","src.discounts.components.SaleList.636461959":"Nom","src.discounts.components.SaleSummary.636461959":"Nom","menuItemDialogNameLabel":"Nom","src.products.components.ProductVariants.636461959":"Nom","src.shipping.components.ShippingZoneRates.636461959":"Nom","src.shipping.components.ShippingZonesList.636461959":"Nom","src.staff.components.StaffList.636461959":"Nom","src.translations.components.TranslationsEntitiesList.636461959":"Nom","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.254756045":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.3182284913":"","src.auth.components.LoginPage.109182747":"Inicia sessió","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"","src.categories.views.2004894945":"","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.3229914152":"","src.categories.components.CategoryList.435697837":"","src.categories.components.CategoryList.2159874182":"Subcategories","src.categories.components.CategoryUpdatePage.2159874182":"Subcategories","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.228151782":"Afegeix categoria","src.categories.components.CategoryProducts.2968663655":"Productes","src.categories.components.CategoryUpdatePage.2968663655":"Productes","src.discounts.components.DiscountCategories.2968663655":"Productes","src.discounts.components.DiscountCollections.2968663655":"Productes","src.products":"Productes","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryProducts.3554578821":"Afegeix producte","src.categories.components.CategoryProductsCard.3554578821":"Afegeix producte","src.categories.components.CategoryProducts.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProducts.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.categories.components.CategoryProductsCard.4164156574":"","src.categories.views.1754466114":"","src.categories.views.1140231710":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.712767046":"","src.categories.views.299584400":"","src.categories.views.844574071":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.collections.components.CollectionCreatePage.3958681866":"Afegeix col·lecció","src.collections.components.CollectionListPage.3958681866":"Afegeix col·lecció","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"Disponibilitat","src.availability":"","src.collections.components.CollectionList.3640454975":"Publicat","src.collections.components.CollectionProducts.3640454975":"Publicat","src.discounts.components.DiscountProducts.3640454975":"Publicat","src.components.ProductList.3640454975":"Publicat","src.products.components.ProductListPage.3640454975":"Publicat","src.pages.components.PageList.3640454975":"Publicat","src.products.views.ProductList.published":"Publicat","src.collections.components.CollectionList.2341910657":"No publicat","src.collections.components.CollectionProducts.2341910657":"No publicat","src.discounts.components.DiscountProducts.2341910657":"No publicat","src.components.ProductList.2341910657":"No publicat","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.686910896":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"","src.collections.views.2402899582":"","src.collections.views.2237014112":"","src.pages.views.2237014112":"","src.products.views.ProductList.2237014112":"","src.collections.views.1547167026":"","src.pages.views.1547167026":"","src.products.views.ProductList.1547167026":"","src.collections.views.2823425739":"","src.collections.views.1348793822":"","src.collections.views.2637364047":"","src.collections.views.3944356444":"","src.collections.views.3817188998":"","src.collections.views.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"Tanca sessió","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.4057224233":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"","src.components.ErrorMessageCard.2845142593":"","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.FilterBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"Afegeix","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.ProductList.1134347598":"Preu","src.orders.components.OrderDraftDetailsProducts.1134347598":"Preu","src.orders.components.OrderFulfillment.1134347598":"Preu","src.products.components.ProductListPage.1134347598":"Preu","src.products.components.ProductPricing.1134347598":"Preu","src.orders.components.OrderUnfulfilledItems.1134347598":"Preu","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"Preu","src.shipping.components.ShippingZoneRates.1134347598":"Preu","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"Visibilitat","src.pages.components.PageList.1459686496":"Visibilitat","src.products.components.ProductListFilter.1459686496":"Visibilitat","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"Ocult","src.products.views.ProductList.hidden":"Ocult","src.components.VisibilityCard.1815688500":"","src.components.VisibilityCard.2001551496":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","configurationMenuStaff":"","configurationMenuShipping":"","configurationMenuTaxes":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","src.customers.components.CustomerAddress.1320082647":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"Adreça de facturació","src.customers.components.CustomerAddresses.3517722732":"Adreça d'enviament","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"Adreça","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"","src.orders.components.OrderCustomerNote.1520756907":"","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"Nota","src.customers.components.CustomerDetails.577013340":"Nota","src.customers.components.CustomerCreatePage.1934221653":"Afegeix client","src.customers.components.CustomerListPage.1934221653":"Afegeix client","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerOrders.3878642352":"Comandes recents","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"Data","src.orders.components.OrderDraftList.4205493358":"Data","src.orders.components.OrderList.4205493358":"Data","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"Estat","src.orders.components.OrderListFilter.1756106276":"Estat","src.products.components.ProductListFilter.1756106276":"Estat","src.products.components.ProductVariants.1756106276":"Estat","src.customers.components.CustomerOrders.878013594":"Total","src.orders.components.OrderDraftDetailsProducts.878013594":"Total","src.orders.components.OrderDraftDetailsSummary.878013594":"Total","src.orders.components.OrderDraftList.878013594":"Total","src.orders.components.OrderFulfillment.878013594":"Total","src.orders.components.OrderUnfulfilledItems.878013594":"Total","src.orders.components.OrderList.878013594":"Total","src.orders.components.OrderPayment.878013594":"Total","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.1946482599":"","src.customers.views.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"Valor","src.discounts.components.SaleSummary.1148029984":"Valor","src.discounts.components.VoucherList.1148029984":"Valor","src.discounts.components.VoucherSummary.1148029984":"Valor","src.discounts.components.VoucherValue.1148029984":"Valor","src.products.components.ProductAttributes.1148029984":"Valor","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.1742771332":"","src.discounts.components.SalePricing.1099355007":"Preus","src.products.components.ProductPricing.1099355007":"Preus","src.products.components.ProductVariantPrice.1099355007":"Preus","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"Països","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"","src.discounts.components.VoucherSummary.78726751":"","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.1536809153":"Afegeix val de descompte","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"Productes específics","src.discounts.shipment":"Enviament","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.2809303671":"","src.discounts.views.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.367317371":"","src.discounts.views.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"Cancel·la","src.orders.views.OrderList.3528672691":"Cancel·la","src.confirm":"","src.delete":"","src.edit":"Edita","src.manage":"","src.remove":"Elimina","src.save":"Desa","src.show":"","src.undo":"","src.attributes":"Atributs","src.products.components.ProductAttributes.4153345096":"Atributs","src.categories":"Categories","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"Col·leccions","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"Configuraicó","src.customers":"Clients","src.draftOrders":"","src.home":"Inici","src.navigation":"Navegació","src.orders":"Comandes","src.pages":"Pàgines","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"Descomptes","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"Impostos","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"Impostos","src.taxes.components.CountryListPage.3955023266":"Impostos","src.translations":"","src.vouchers":"Vals de descompte","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"","src.partiallyPaid":"","src.partiallyRefunded":"","src.refunded":"Diners retornats","src.unpaid":"","src.cancelled":"","src.draft":"Esborrany","src.fulfilled":"Completat","src.orders.views.OrderList.fulfilled":"Completat","src.orders.components.OrderListFilter.1712863026":"Completat","src.partiallyFulfilled":"Completat parcialment","src.unfulfilled":"No s'ha completat","src.orders.views.OrderList.unfulfilled":"No s'ha completat","src.orders.components.OrderListFilter.1751787272":"No s'ha completat","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","src.1395232177":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"Cancel·la comanda","src.orders.components.OrderDetailsPage.1854613983":"Cancel·la comanda","src.orders.components.OrderDraftPage.1854613983":"Cancel·la comanda","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"Client","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"Client","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"La mateixa que l'adreça d'enviament","src.orders.components.OrderCustomerEditDialog.1411666943":"Edita detalls del client","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.500287069":"Elimina esborrany de comanda","src.orders.components.OrderDraftCancelDialog.3199827590":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"Producte","src.orders.components.OrderUnfulfilledItems.1895667608":"Producte","src.orders.components.OrderDraftDetailsProducts.2796503714":"Quantitat","src.orders.components.OrderFulfillment.2796503714":"Quantitat","src.orders.components.OrderFulfillmentDialog.2796503714":"Quantitat","src.orders.components.OrderUnfulfilledItems.2796503714":"Quantitat","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"Subtotal","src.orders.components.OrderPayment.781550514":"Subtotal","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"Crea comanda","src.orders.components.OrderListPage.2826235371":"Crea comanda","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"Afegeix seguiment","src.orders.components.OrderFulfillmentCancelDialog.732594284":"","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"SKU","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"Codi de seguiment","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.2574162126":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"Comanda va ser pagada completament","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"Comanda va ser realitzada","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"Pagament","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2943502192":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"Enviament","src.productTypes.components.ProductTypeShipping.1325966144":"Enviament","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"Enviament","src.orders.components.OrderPayment.3768782744":"Quantitat pre-autoritzada","src.orders.components.OrderPayment.2320183694":"Quantitat capturada","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"Captura","src.orders.components.OrderPayment.2845258362":"Retornar diners","src.orders.components.OrderPayment.2444197639":"Buida","src.orders.components.OrderPayment.3500506678":"Marcar com a pagat","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"Quantitat","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.2775402904":"","src.products.components.ProductListPage.2775402904":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.3880993240":"","src.orders.views.1161115149":"","src.orders.views.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.755314116":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"Títol","src.pages.components.PageList.1124600214":"Títol","src.pages.components.PageInfo.1116746286":"","src.translations.components.TranslationsPagesPage.1116746286":"","src.pages.components.PageList.3478065224":"","src.pages.components.PageSlug.3478065224":"","src.productTypes.components.ProductTypeAttributes.3478065224":"","src.pages.components.PageList.3767550649":"No publicat","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.1767905232":"Afegeix pàgina","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.3785394515":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"Valors","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"Imatges","src.products.components.ProductVariantImages.3240888698":"Imatges","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"","src.products.components.ProductVariantStock.3841616483":"","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListPage.821159718":"","src.products.components.ProductListPage.1421689426":"","src.products.components.ProductListPage.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"Inventari","prodictStockInventoryLabel":"Inventari","src.products.components.ProductVariantStock.3490038570":"Inventari","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"","src.products.components.ProductVariants.2153006789":"","src.products.components.ProductVariantNavigation.2845381934":"Afegeix variant","src.products.components.ProductVariants.2845381934":"Afegeix variant","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1542417144":"","src.products.views.1591632382":"","src.products.views.490753666":"","src.products.views.672103788":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.1694086800":"","src.products.views.ProductList.224127438":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.products.views.2178905289":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1756957616":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.889729490":"Afegeix tipologia de producte","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.4080551769":"","src.productTypes.views.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.352297149":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2474410767":"Afegeix zona d'enviament","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.254167659":"","src.shipping.views.ShippingZoneDetails.1790261672":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"Clau","src.siteSettings.components.SiteSettingsKeys.2446088470":"Clau","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.3490059488":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.3247064221":"","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.802625341":"Afegeix treballador","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"","src.staff.views.2240444792":"","src.staff.views.2728048444":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file +{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.3824684885":"","src.attributes.components.AttributeListPage.2417065806":"","src.attributes.components.AttributeListPage.3916653510":"","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.4048785456":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"Nom","src.categories.components.CategoryProductList.636461959":"Nom","src.components.ProductList.636461959":"Nom","src.products.components.ProductList.636461959":"Nom","src.collections.components.CollectionDetails.636461959":"Nom","src.collections.components.CollectionProducts.636461959":"Nom","src.products.components.ProductDetailsForm.636461959":"Nom","src.discounts.components.SaleInfo.636461959":"Nom","src.discounts.components.SaleList.636461959":"Nom","src.discounts.components.SaleSummary.636461959":"Nom","menuItemDialogNameLabel":"Nom","src.plugins.components.PluginsList.636461959":"Nom","src.products.components.ProductVariants.636461959":"Nom","src.shipping.components.ShippingZoneRates.636461959":"Nom","src.shipping.components.ShippingZonesList.636461959":"Nom","src.staff.components.StaffList.636461959":"Nom","src.translations.components.TranslationsEntitiesList.636461959":"Nom","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.351422234":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.109182747":"Inicia sessió","src.auth.components.LoginPage.4028609483":"","src.auth.components.NewPasswordPage.1915811227":"","src.auth.components.NewPasswordPage.1254879564":"","src.auth.components.NewPasswordPage.2799926859":"","src.auth.components.NewPasswordPage.4253911811":"","src.auth.components.NewPasswordPage.2342634351":"","src.auth.components.ResetPasswordPage.2370700732":"","src.auth.components.ResetPasswordPage.3663311080":"","src.auth.components.ResetPasswordSuccessPage.4066297200":"","src.auth.components.ResetPasswordSuccessPage.2245157344":"","src.auth.views.2388238158":"","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"","src.categories.views.2004894945":"","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.2159874182":"Subcategories","src.categories.components.CategoryUpdatePage.2159874182":"Subcategories","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.1140231710":"","src.categories.views.1140231710":"","src.categories.components.CategoryListPage.4294878092":"","src.categories.components.CategoryListPage.3841025483":"","src.translations.components.TranslationsEntitiesListPage.3841025483":"","src.categories.components.CategoryProductList.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductList.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProductList.3640454975":"Publicat","src.components.ProductList.3640454975":"Publicat","src.products.components.ProductList.3640454975":"Publicat","src.products.components.ProductListPage.3640454975":"Publicat","productStatusLabel":"Publicat","src.collections.components.CollectionList.3640454975":"Publicat","src.collections.components.CollectionProducts.3640454975":"Publicat","src.discounts.components.DiscountProducts.3640454975":"Publicat","src.pages.components.PageList.3640454975":"Publicat","src.products.views.ProductList.published":"Publicat","src.categories.components.CategoryProductList.1134347598":"Preu","src.orders.components.OrderFulfillment.1134347598":"Preu","src.products.components.ProductList.1134347598":"Preu","src.products.components.ProductListPage.1134347598":"Preu","src.products.components.ProductPricing.1134347598":"Preu","src.components.ProductList.1134347598":"Preu","src.orders.components.OrderDraftDetailsProducts.1134347598":"Preu","src.orders.components.OrderUnfulfilledItems.1134347598":"Preu","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"Preu","src.shipping.components.ShippingZoneRates.1134347598":"Preu","src.categories.components.CategoryProductList.2341910657":"No publicat","src.products.components.ProductList.2341910657":"No publicat","src.collections.components.CollectionList.2341910657":"No publicat","src.collections.components.CollectionProducts.2341910657":"No publicat","src.discounts.components.DiscountProducts.2341910657":"No publicat","src.components.ProductList.2341910657":"No publicat","src.categories.components.CategoryProductList.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.products.components.ProductList.1657559629":"","src.categories.components.CategoryProducts.4164156574":"","src.categories.components.CategoryProducts.3554578821":"Afegeix producte","src.categories.components.CategoryUpdatePage.2968663655":"Productes","src.discounts.components.DiscountCategories.2968663655":"Productes","src.discounts.components.DiscountCollections.2968663655":"Productes","src.products":"Productes","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryUpdatePage.3229914152":"","src.categories.components.CategoryUpdatePage.770296100":"","src.categories.views.1754466114":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.CategoryList.3488150607":"","src.categories.views.712767046":"","src.categories.views.CategoryList.712767046":"","src.categories.views.299584400":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.categories.views.CategoryList.2144707585":"","src.collections.components.CollectionCreatePage.3958681866":"Afegeix col·lecció","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionCreatePage.2001551496":"","src.collections.components.CollectionDetailsPage.2001551496":"","src.pages.components.PageDetailsPage.2001551496":"","src.products.components.ProductCreatePage.2001551496":"","src.products.components.ProductUpdatePage.2001551496":"","src.collections.components.CollectionCreatePage.1815688500":"","src.collections.components.CollectionDetailsPage.1815688500":"","src.pages.components.PageDetailsPage.1815688500":"","src.products.components.ProductCreatePage.1815688500":"","src.products.components.ProductUpdatePage.1815688500":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"Disponibilitat","src.availability":"","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionListPage.686910896":"","src.collections.views.686910896":"","src.collections.components.CollectionListPage.1631917001":"","src.collections.components.CollectionListPage.4057224233":"","src.components.AssignCollectionDialog.4057224233":"","src.translations.components.TranslationsEntitiesListPage.4057224233":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"","src.collections.views.2402899582":"","src.collections.views.CollectionList.2237014112":"","src.pages.views.2237014112":"","src.products.views.ProductList.2237014112":"","src.collections.views.CollectionList.1547167026":"","src.pages.views.1547167026":"","src.products.views.ProductList.1547167026":"","src.collections.views.CollectionList.2823425739":"","src.collections.views.CollectionList.1348793822":"","src.collections.views.CollectionList.2637364047":"","src.collections.views.CollectionList.3944356444":"","src.collections.views.CollectionList.3817188998":"","src.collections.views.CollectionList.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"Tanca sessió","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"","src.components.ErrorMessageCard.2845142593":"","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.Filter.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.Filter.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.FilterBar.2340527467":"","src.components.SearchBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"Afegeix","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"Visibilitat","src.pages.components.PageList.1459686496":"Visibilitat","src.products.components.ProductListFilter.1459686496":"Visibilitat","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"Ocult","src.products.views.ProductList.hidden":"Ocult","src.components.VisibilityCard.292404896":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","src.configuration.2326418019":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","src.configuration.3655543906":"","configurationMenuShipping":"","configurationMenuTaxes":"","src.configuration.3140151600":"","configurationMenuStaff":"","src.configuration.1233229030":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","configurationPluginsPages":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"Adreça de facturació","src.customers.components.CustomerAddresses.3517722732":"Adreça d'enviament","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"Adreça","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"","src.orders.components.OrderCustomerNote.1520756907":"","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"Nota","src.customers.components.CustomerDetails.577013340":"Nota","src.customers.components.CustomerCreatePage.1934221653":"Afegeix client","src.customers.components.CustomerListPage.1934221653":"Afegeix client","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerListPage.477293306":"","src.customers.components.CustomerListPage.1643417013":"","src.customers.components.CustomerOrders.3878642352":"Comandes recents","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"Data","src.orders.components.OrderDraftList.4205493358":"Data","src.orders.components.OrderList.4205493358":"Data","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"Estat","src.orders.components.OrderListFilter.1756106276":"Estat","src.plugins.components.PluginInfo.1756106276":"Estat","src.products.components.ProductListFilter.1756106276":"Estat","src.products.components.ProductVariants.1756106276":"Estat","src.customers.components.CustomerOrders.878013594":"Total","src.orders.components.OrderDraftDetailsProducts.878013594":"Total","src.orders.components.OrderDraftDetailsSummary.878013594":"Total","src.orders.components.OrderDraftList.878013594":"Total","src.orders.components.OrderFulfillment.878013594":"Total","src.orders.components.OrderUnfulfilledItems.878013594":"Total","src.orders.components.OrderList.878013594":"Total","src.orders.components.OrderPayment.878013594":"Total","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.CustomerList.1946482599":"","src.customers.views.CustomerList.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","src.discounts.components.SaleListPage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"Valor","src.discounts.components.SaleSummary.1148029984":"Valor","src.discounts.components.VoucherList.1148029984":"Valor","src.discounts.components.VoucherSummary.1148029984":"Valor","src.discounts.components.VoucherValue.1148029984":"Valor","src.products.components.ProductAttributes.1148029984":"Valor","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.3907768880":"","src.discounts.components.SaleListPage.1866913828":"","src.translations.components.TranslationsEntitiesListPage.1866913828":"","src.discounts.components.SalePricing.1099355007":"Preus","src.products.components.ProductPricing.1099355007":"Preus","src.products.components.ProductVariantPrice.1099355007":"Preus","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"Països","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"","src.discounts.components.VoucherSummary.78726751":"","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.614836274":"","src.discounts.components.VoucherListPage.1112241061":"","src.discounts.components.VoucherListPage.1930485532":"","src.translations.components.TranslationsEntitiesListPage.1930485532":"","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"Productes específics","src.discounts.shipment":"Enviament","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.SaleList.2809303671":"","src.discounts.views.SaleList.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.VoucherList.367317371":"","src.discounts.views.VoucherList.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.somethingWentWrong":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"Cancel·la","src.orders.views.OrderList.3528672691":"Cancel·la","src.confirm":"","src.delete":"","src.edit":"Edita","src.manage":"","src.remove":"Elimina","src.save":"Desa","src.show":"","src.undo":"","src.attributes":"Atributs","src.products.components.ProductAttributes.4153345096":"Atributs","src.categories":"Categories","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"Col·leccions","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"Configuraicó","src.customers":"Clients","src.draftOrders":"","src.home":"Inici","src.navigation":"Navegació","src.orders":"Comandes","src.pages":"Pàgines","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.plugins":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"Descomptes","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"Impostos","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"Impostos","src.taxes.components.CountryListPage.3955023266":"Impostos","src.translations":"","src.vouchers":"Vals de descompte","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"","src.partiallyPaid":"","src.partiallyRefunded":"","src.refunded":"Diners retornats","src.unpaid":"","src.cancelled":"","src.draft":"Esborrany","src.fulfilled":"Completat","src.orders.views.OrderList.fulfilled":"Completat","src.orders.components.OrderListFilter.1712863026":"Completat","src.partiallyFulfilled":"Completat parcialment","src.unfulfilled":"No s'ha completat","src.orders.views.OrderList.unfulfilled":"No s'ha completat","src.orders.components.OrderListFilter.1751787272":"No s'ha completat","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"Cancel·la comanda","src.orders.components.OrderDetailsPage.1854613983":"Cancel·la comanda","src.orders.components.OrderDraftPage.1854613983":"Cancel·la comanda","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"Client","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"Client","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"La mateixa que l'adreça d'enviament","src.orders.components.OrderCustomerEditDialog.1411666943":"Edita detalls del client","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.632633254":"","src.orders.components.OrderDraftCancelDialog.36681973":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"Producte","src.orders.components.OrderUnfulfilledItems.1895667608":"Producte","src.orders.components.OrderDraftDetailsProducts.2796503714":"Quantitat","src.orders.components.OrderFulfillment.2796503714":"Quantitat","src.orders.components.OrderFulfillmentDialog.2796503714":"Quantitat","src.orders.components.OrderUnfulfilledItems.2796503714":"Quantitat","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"Subtotal","src.orders.components.OrderPayment.781550514":"Subtotal","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"Crea comanda","src.orders.components.OrderListPage.2826235371":"Crea comanda","src.orders.components.OrderDraftListPage.551325728":"","src.orders.components.OrderDraftListPage.77765281":"","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"Afegeix seguiment","src.orders.components.OrderFulfillmentCancelDialog.732594284":"","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"SKU","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"Codi de seguiment","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.4067959693":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"Comanda va ser pagada completament","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"Comanda va ser realitzada","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"Pagament","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2415661583":"","src.orders.views.OrderList.readyToCapture":"","src.orders.components.OrderListFilter.2222765704":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"Enviament","src.productTypes.components.ProductTypeShipping.1325966144":"Enviament","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"Enviament","src.orders.components.OrderPayment.3768782744":"Quantitat pre-autoritzada","src.orders.components.OrderPayment.2320183694":"Quantitat capturada","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"Captura","src.orders.components.OrderPayment.2845258362":"Retornar diners","src.orders.components.OrderPayment.2444197639":"Buida","src.orders.components.OrderPayment.3500506678":"Marcar com a pagat","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"Quantitat","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.1542417144":"","src.products.components.ProductListPage.1542417144":"","src.products.views.1542417144":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.OrderDraftList.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.OrderDraftList.1648805446":"","src.orders.views.OrderDraftList.1161115149":"","src.orders.views.OrderDraftList.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.1068617485":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"Títol","src.pages.components.PageList.1124600214":"Títol","src.pages.components.PageInfo.1116746286":"","src.translations.components.TranslationsPagesPage.1116746286":"","src.pages.components.PageList.3478065224":"","src.pages.components.PageSlug.3478065224":"","src.productTypes.components.ProductTypeAttributes.3478065224":"","src.pages.components.PageList.3767550649":"No publicat","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.3785394515":"","src.pages.views.3785394515":"","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.plugins.components.PluginInfo.3425535100":"","src.plugins.components.PluginsDetailsPage.3425535100":"","src.plugins.components.PluginInfo.1049131348":"","src.plugins.components.PluginInfo.4013064767":"","src.plugins.components.PluginsDetailsPage.3352026836":"","src.plugins.components.PluginsDetailsPage.2277745418":"","src.plugins.components.PluginsDetailsPage.1970881031":"","src.plugins.components.PluginSettings.1970881031":"","src.plugins.components.PluginsDetailsPage.4241018152":"","src.plugins.components.PluginsList.3247064221":"","src.staff.components.StaffList.3247064221":"","src.plugins.components.PluginsList.4120604650":"","src.plugins.components.PluginsList.666641390":"","src.plugins.views.100549097":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"Valors","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"Imatges","src.products.components.ProductVariantImages.3240888698":"Imatges","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"","src.products.components.ProductVariantStock.3841616483":"","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListFilter.821159718":"","src.products.components.ProductListFilter.1421689426":"","src.products.components.ProductListFilter.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"Inventari","prodictStockInventoryLabel":"Inventari","src.products.components.ProductVariantStock.3490038570":"Inventari","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"","src.products.components.ProductVariants.2153006789":"","src.products.components.ProductVariantNavigation.2845381934":"Afegeix variant","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.3989383405":"","src.products.views.3989383405":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1591632382":"","src.products.views.1731766393":"","src.products.views.2880386427":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1217376589":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.3479705616":"","src.productTypes.components.ProductTypeListPage.1776073799":"","src.productTypes.components.ProductTypeListPage.3420445375":"","src.translations.components.TranslationsEntitiesListPage.3420445375":"","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.ProductTypeList.4080551769":"","src.productTypes.views.ProductTypeList.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRates.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2673544109":"","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.1947090060":"","src.shipping.views.ShippingZoneDetails.131963671":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"Clau","src.siteSettings.components.SiteSettingsKeys.2446088470":"Clau","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.1481503299":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.797461521":"","src.staff.components.StaffListPage.2852350932":"","src.staff.components.StaffListPage.61043583":"","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"","src.staff.views.1308770978":"","src.staff.views.8878988":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.2105464697":"","src.translations.components.TranslationsEntitiesListPage.2559018090":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file diff --git a/locale/ca.po b/locale/ca.po index 08a9e451d..5226f73df 100644 --- a/locale/ca.po +++ b/locale/ca.po @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"POT-Creation-Date: 2019-09-06T13:56:36.897Z\n" +"POT-Creation-Date: 2019-09-16T15:25:09.340Z\n" "Last-Translator: Jordi Divins , 2019\n" "Language-Team: Catalan (https://www.transifex.com/mirumee/teams/34782/ca/)\n" "MIME-Version: 1.0\n" @@ -142,22 +142,6 @@ msgctxt "create new menu item, header" msgid "Add Item" msgstr "" -#. [menuCreateDialogHeader] - dialog header -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json -msgctxt "dialog header" -msgid "Add Menu" -msgstr "" - -#. [menuListPageAddMenu] - button -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json -msgctxt "button" -msgid "Add Menu" -msgstr "" - #. [src.siteSettings.components.SiteSettingsKeyDialog.1238948746] - dialog #. header #. defaultMessage is: @@ -167,14 +151,6 @@ msgctxt "dialog header" msgid "Add New Authorization Key" msgstr "" -#. [src.pages.components.PageDetailsPage.755314116] - page header -#. defaultMessage is: -#. Add Page -#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json -msgctxt "page header" -msgid "Add Page" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.2892088870] - dialog header #. defaultMessage is: #. Add Price Rate @@ -183,38 +159,6 @@ msgctxt "dialog header" msgid "Add Price Rate" msgstr "" -#. [src.orders.components.OrderProductAddDialog.2775402904] - dialog header -#. defaultMessage is: -#. Add Product -#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json -msgctxt "dialog header" -msgid "Add Product" -msgstr "" - -#. [src.products.components.ProductListPage.2775402904] - button -#. defaultMessage is: -#. Add Product -#: build/locale/src/products/components/ProductListPage/ProductListPage.json -msgctxt "button" -msgid "Add Product" -msgstr "" - -#. [src.discounts.components.SaleListPage.1742771332] - button -#. defaultMessage is: -#. Add Sale -#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json -msgctxt "button" -msgid "Add Sale" -msgstr "" - -#. [src.staff.components.StaffAddMemberDialog.3490059488] - dialog header -#. defaultMessage is: -#. Add Staff Member -#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json -msgctxt "dialog header" -msgid "Add Staff Member" -msgstr "" - #. [src.attributes.components.AttributeValueEditDialog.1841790893] - add #. attribute value #. defaultMessage is: @@ -224,14 +168,6 @@ msgctxt "add attribute value" msgid "Add Value" msgstr "" -#. [src.products.views.2178905289] - header -#. defaultMessage is: -#. Add Variant -#: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "header" -msgid "Add Variant" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.1397795758] - add weight #. based shipping method, dialog header #. defaultMessage is: @@ -249,14 +185,6 @@ msgctxt "button" msgid "Add address" msgstr "" -#. [src.attributes.components.AttributeListPage.350498821] - button -#. defaultMessage is: -#. Add attribute -#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json -msgctxt "button" -msgid "Add attribute" -msgstr "Afegeix atribut" - #. [src.siteSettings.components.SiteSettingsKeyDialog.50561933] - button #. defaultMessage is: #. Add authentication @@ -265,14 +193,6 @@ msgctxt "button" msgid "Add authentication" msgstr "" -#. [src.categories.components.CategoryListPage.228151782] - button -#. defaultMessage is: -#. Add category -#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json -msgctxt "button" -msgid "Add category" -msgstr "Afegeix categoria" - #. [src.collections.components.CollectionCreatePage.3958681866] - page header #. defaultMessage is: #. Add collection @@ -281,14 +201,6 @@ msgctxt "page header" msgid "Add collection" msgstr "Afegeix col·lecció" -#. [src.collections.components.CollectionListPage.3958681866] - button -#. defaultMessage is: -#. Add collection -#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json -msgctxt "button" -msgid "Add collection" -msgstr "Afegeix col·lecció" - #. [src.customers.components.CustomerCreatePage.1934221653] - page header #. defaultMessage is: #. Add customer @@ -321,14 +233,6 @@ msgctxt "button" msgid "Add key" msgstr "" -#. [menuItemsAddItem] - add new menu item -#. defaultMessage is: -#. Add new item -#: build/locale/src/navigation/components/MenuItems/MenuItems.json -msgctxt "add new menu item" -msgid "Add new item" -msgstr "" - #. [menuItemsPlaceholder] #. defaultMessage is: #. Add new menu item to begin creating menu @@ -363,14 +267,6 @@ msgctxt "button" msgid "Add or Edit Link" msgstr "" -#. [src.pages.components.PageListPage.1767905232] - button -#. defaultMessage is: -#. Add page -#: build/locale/src/pages/components/PageListPage/PageListPage.json -msgctxt "button" -msgid "Add page" -msgstr "Afegeix pàgina" - #. [src.categories.components.CategoryProducts.3554578821] - button #. defaultMessage is: #. Add product @@ -379,14 +275,6 @@ msgctxt "button" msgid "Add product" msgstr "Afegeix producte" -#. [src.productTypes.components.ProductTypeListPage.889729490] - button -#. defaultMessage is: -#. Add product type -#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json -msgctxt "button" -msgid "Add product type" -msgstr "Afegeix tipologia de producte" - #. [src.orders.components.OrderDraftDetails.2528459381] - button #. defaultMessage is: #. Add products @@ -395,14 +283,6 @@ msgctxt "button" msgid "Add products" msgstr "" -#. [src.shipping.components.ShippingZoneRates.352297149] - button -#. defaultMessage is: -#. Add rate -#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json -msgctxt "button" -msgid "Add rate" -msgstr "" - #. [src.categories.components.CategoryCreatePage.2563994280] #. defaultMessage is: #. Add search engine title and description to make this category easier to @@ -464,30 +344,6 @@ msgctxt "button" msgid "Add shipping carrier" msgstr "" -#. [src.shipping.components.ShippingZonesList.2474410767] - button -#. defaultMessage is: -#. Add shipping zone -#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json -msgctxt "button" -msgid "Add shipping zone" -msgstr "Afegeix zona d'enviament" - -#. [src.staff.components.StaffListPage.802625341] - button -#. defaultMessage is: -#. Add staff member -#: build/locale/src/staff/components/StaffListPage/StaffListPage.json -msgctxt "button" -msgid "Add staff member" -msgstr "Afegeix treballador" - -#. [src.categories.components.CategoryList.435697837] - button -#. defaultMessage is: -#. Add subcategory -#: build/locale/src/categories/components/CategoryList/CategoryList.json -msgctxt "button" -msgid "Add subcategory" -msgstr "" - #. [src.attributes.components.AttributeProperties.673770329] - add attribute #. as column in product list table #. defaultMessage is: @@ -515,35 +371,14 @@ msgctxt "dialog header" msgid "Add tracking code" msgstr "" -#. [src.attributes.components.AttributeValues.254756045] - add attribute value -#. button -#. defaultMessage is: -#. Add value -#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json -msgctxt "add attribute value button" -msgid "Add value" -msgstr "" - #. [src.products.components.ProductVariantNavigation.2845381934] - button #. defaultMessage is: #. Add variant -#. [src.products.components.ProductVariants.2845381934] - button -#. defaultMessage is: -#. Add variant #: build/locale/src/products/components/ProductVariantNavigation/ProductVariantNavigation.json -#: build/locale/src/products/components/ProductVariants/ProductVariants.json msgctxt "button" msgid "Add variant" msgstr "Afegeix variant" -#. [src.discounts.components.VoucherListPage.1536809153] - button -#. defaultMessage is: -#. Add voucher -#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json -msgctxt "button" -msgid "Add voucher" -msgstr "Afegeix val de descompte" - #. [src.attributes.views.AttributeDetails.634268988] - added new attribute #. value #. defaultMessage is: @@ -601,14 +436,6 @@ msgctxt "description" msgid "Address line 2" msgstr "" -#. [src.customers.components.CustomerAddress.1320082647] - addres card header -#. defaultMessage is: -#. Address {addressNumber} -#: build/locale/src/customers/components/CustomerAddress/CustomerAddress.json -msgctxt "addres card header" -msgid "Address {addressNumber}" -msgstr "" - #. [src.attributes.components.AttributeValues.1565474525] - attribute values #. list: slug column header #. defaultMessage is: @@ -658,6 +485,46 @@ msgctxt "tax rate" msgid "Agricultural supplies" msgstr "" +#. [src.attributes.components.AttributeListPage.2417065806] - tab name +#. defaultMessage is: +#. All Attributes +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "tab name" +msgid "All Attributes" +msgstr "" + +#. [src.categories.components.CategoryListPage.4294878092] - tab name +#. defaultMessage is: +#. All Categories +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "tab name" +msgid "All Categories" +msgstr "" + +#. [src.collections.components.CollectionListPage.1631917001] - tab name +#. defaultMessage is: +#. All Collections +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "tab name" +msgid "All Collections" +msgstr "" + +#. [src.customers.components.CustomerListPage.477293306] - tab name +#. defaultMessage is: +#. All Customers +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "tab name" +msgid "All Customers" +msgstr "" + +#. [src.orders.components.OrderDraftListPage.551325728] - tab name +#. defaultMessage is: +#. All Drafts +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "tab name" +msgid "All Drafts" +msgstr "" + #. [src.orders.components.OrderListPage.875489544] - tab name #. defaultMessage is: #. All Orders @@ -675,22 +542,54 @@ msgctxt "section header" msgid "All Photos" msgstr "" -#. [src.products.components.ProductListPage.821159718] - tab name +#. [src.productTypes.components.ProductTypeListPage.1776073799] - tab name +#. defaultMessage is: +#. All Product Types +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "tab name" +msgid "All Product Types" +msgstr "" + +#. [src.products.components.ProductListFilter.821159718] - tab name #. defaultMessage is: #. All Products -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "tab name" msgid "All Products" msgstr "" -#. [src.categories.components.CategoryList.3229914152] - section header +#. [src.discounts.components.SaleListPage.3907768880] - tab name +#. defaultMessage is: +#. All Sales +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "tab name" +msgid "All Sales" +msgstr "" + +#. [src.staff.components.StaffListPage.2852350932] - tab name +#. defaultMessage is: +#. All Staff Members +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "tab name" +msgid "All Staff Members" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.3229914152] - section header #. defaultMessage is: #. All Subcategories -#: build/locale/src/categories/components/CategoryList/CategoryList.json +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json msgctxt "section header" msgid "All Subcategories" msgstr "" +#. [src.discounts.components.VoucherListPage.1112241061] - tab name +#. defaultMessage is: +#. All Vouchers +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "tab name" +msgid "All Vouchers" +msgstr "" + #. [src.taxes.components.TaxConfiguration.142803418] #. defaultMessage is: #. All products prices are entered with tax included @@ -798,6 +697,14 @@ msgctxt "description" msgid "Are you sure you want to delete collection's image?" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.36681973] +#. defaultMessage is: +#. Are you sure you want to delete draft #{number}? +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "description" +msgid "Are you sure you want to delete draft #{number}?" +msgstr "" + #. [menuDetailsDeleteMenuContent] #. defaultMessage is: #. Are you sure you want to delete menu {menuName}? @@ -814,6 +721,14 @@ msgctxt "description" msgid "Are you sure you want to delete this address from users address book?" msgstr "" +#. [src.products.views.2880386427] +#. defaultMessage is: +#. Are you sure you want to delete this image? +#: build/locale/src/products/views/ProductImage.json +msgctxt "description" +msgid "Are you sure you want to delete this image?" +msgstr "" + #. [src.attributes.components.AttributeDeleteDialog.3738429348] - dialog #. content #. defaultMessage is: @@ -864,12 +779,7 @@ msgstr "" #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this attribute} #. other{{displayQuantity} categories}}? -#. [src.categories.views.844574071] -#. defaultMessage is: -#. Are you sure you want to delete {counter,plural,one{this attribute} -#. other{{displayQuantity} categories}}? #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this attribute} " @@ -887,22 +797,33 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.2497542455] +#. [src.categories.views.CategoryList.2144707585] +#. defaultMessage is: +#. Are you sure you want to delete {counter,plural,one{this category} +#. other{{displayQuantity} categories}}? +#: build/locale/src/categories/views/CategoryList/CategoryList.json +msgctxt "description" +msgid "" +"Are you sure you want to delete {counter,plural,one{this category} " +"other{{displayQuantity} categories}}?" +msgstr "" + +#. [src.collections.views.CollectionList.2497542455] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this collection} " "other{{displayQuantity} collections}}?" msgstr "" -#. [src.customers.views.409347866] +#. [src.customers.views.CustomerList.409347866] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this customer} #. other{{displayQuantity} customers}}? -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this customer} " @@ -920,11 +841,11 @@ msgid "" "other{{displayQuantity} menus}}?" msgstr "" -#. [src.orders.views.1389231130] - dialog content +#. [src.orders.views.OrderDraftList.1389231130] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this order draft} #. other{{displayQuantity} orderDrafts}}? -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this order draft} " @@ -942,11 +863,11 @@ msgid "" "other{{displayQuantity} pages}}?" msgstr "" -#. [src.productTypes.views.2294091098] - dialog content +#. [src.productTypes.views.ProductTypeList.2294091098] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this product type} #. other{{displayQuantity} product types}}? -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this product type} " @@ -964,11 +885,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.discounts.views.2516361175] - dialog content +#. [src.discounts.views.SaleList.2516361175] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this sale} #. other{{displayQuantity} sales}}? -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this sale} " @@ -997,17 +918,33 @@ msgid "" "other{{displayQuantity} variants}}?" msgstr "" -#. [src.discounts.views.1791926983] - dialog content +#. [src.discounts.views.VoucherList.1791926983] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this voucher} #. other{{displayQuantity} vouchers}}? -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this voucher} " "other{{displayQuantity} vouchers}}?" msgstr "" +#. [src.shipping.views.ShippingZoneDetails.131963671] - unassign country +#. defaultMessage is: +#. Are you sure you want to delete {countryName} from this shipping zone? +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country" +msgid "Are you sure you want to delete {countryName} from this shipping zone?" +msgstr "" + +#. [src.staff.views.8878988] +#. defaultMessage is: +#. Are you sure you want to delete {email} from staff members? +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "description" +msgid "Are you sure you want to delete {email} from staff members?" +msgstr "" + #. [src.customers.views.1927691511] - delete customer, dialog content #. defaultMessage is: #. Are you sure you want to delete {email}? @@ -1122,11 +1059,11 @@ msgctxt "description" msgid "Are you sure you want to mark this order as paid?" msgstr "" -#. [src.collections.views.1348793822] +#. [src.collections.views.CollectionList.1348793822] #. defaultMessage is: #. Are you sure you want to publish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to publish {counter,plural,one{this collection} " @@ -1155,30 +1092,6 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.orders.components.OrderDraftCancelDialog.3199827590] -#. defaultMessage is: -#. Are you sure you want to remove draft #{number}? -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "description" -msgid "Are you sure you want to remove draft #{number}?" -msgstr "" - -#. [src.products.views.672103788] -#. defaultMessage is: -#. Are you sure you want to remove this image? -#: build/locale/src/products/views/ProductImage.json -msgctxt "description" -msgid "Are you sure you want to remove this image?" -msgstr "" - -#. [src.shipping.views.ShippingZoneDetails.1790261672] - unassign country -#. defaultMessage is: -#. Are you sure you want to remove {countryName} from this shipping zone? -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country" -msgid "Are you sure you want to remove {countryName} from this shipping zone?" -msgstr "" - #. [src.staff.views.3945766678] #. defaultMessage is: #. Are you sure you want to remove {email} avatar? @@ -1187,14 +1100,6 @@ msgctxt "description" msgid "Are you sure you want to remove {email} avatar?" msgstr "" -#. [src.staff.views.2728048444] -#. defaultMessage is: -#. Are you sure you want to remove {email} from staff members? -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "description" -msgid "Are you sure you want to remove {email} from staff members?" -msgstr "" - #. [src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450] #. defaultMessage is: #. Are you sure you want to unassign {attributeName} from {productTypeName}? @@ -1275,11 +1180,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.3944356444] +#. [src.collections.views.CollectionList.3944356444] #. defaultMessage is: #. Are you sure you want to unpublish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to unpublish {counter,plural,one{this collection} " @@ -1440,6 +1345,15 @@ msgctxt "button" msgid "Assign products" msgstr "" +#. [src.attributes.components.AttributeValues.351422234] - assign attribute +#. value button +#. defaultMessage is: +#. Assign value +#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json +msgctxt "assign attribute value button" +msgid "Assign value" +msgstr "" + #. [src.attributes.components.AttributeDetails.3605174225] - attribute's slug #. short code label #. defaultMessage is: @@ -1518,6 +1432,14 @@ msgctxt "product attributes, section header" msgid "Attributes" msgstr "Atributs" +#. [src.configuration.2326418019] +#. defaultMessage is: +#. Attributes and Product Typess +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Attributes and Product Typess" +msgstr "" + #. [src.attributes.views.AttributeList.3218248395] - deleted multiple #. attributes #. defaultMessage is: @@ -2301,6 +2223,22 @@ msgctxt "description" msgid "Country area" msgstr "" +#. [menuCreateDialogHeader] - dialog header +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json +msgctxt "dialog header" +msgid "Create Menu" +msgstr "" + +#. [menuListPageAddMenu] - button +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json +msgctxt "button" +msgid "Create Menu" +msgstr "" + #. [src.attributes.components.AttributePage.2855501559] - page title #. defaultMessage is: #. Create New Attribute @@ -2325,6 +2263,30 @@ msgctxt "header" msgid "Create New Shipping Zone" msgstr "" +#. [src.pages.components.PageDetailsPage.1068617485] - page header +#. defaultMessage is: +#. Create Page +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page header" +msgid "Create Page" +msgstr "" + +#. [src.orders.components.OrderProductAddDialog.1542417144] - dialog header +#. defaultMessage is: +#. Create Product +#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json +msgctxt "dialog header" +msgid "Create Product" +msgstr "" + +#. [src.products.components.ProductListPage.1542417144] - button +#. defaultMessage is: +#. Create Product +#: build/locale/src/products/components/ProductListPage/ProductListPage.json +msgctxt "button" +msgid "Create Product" +msgstr "" + #. [src.products.views.1542417144] - window title #. defaultMessage is: #. Create Product @@ -2357,11 +2319,19 @@ msgctxt "page header" msgid "Create Sale" msgstr "" -#. [src.products.views.2362587265] - window title +#. [src.discounts.components.SaleListPage.3866518732] - button +#. defaultMessage is: +#. Create Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "button" +msgid "Create Sale" +msgstr "" + +#. [src.products.views.2362587265] - header #. defaultMessage is: #. Create Variant #: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "window title" +msgctxt "header" msgid "Create Variant" msgstr "" @@ -2373,6 +2343,22 @@ msgctxt "page header" msgid "Create Voucher" msgstr "" +#. [src.attributes.components.AttributeListPage.3824684885] - button +#. defaultMessage is: +#. Create attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "button" +msgid "Create attribute" +msgstr "" + +#. [src.categories.components.CategoryListPage.1140231710] - button +#. defaultMessage is: +#. Create category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "button" +msgid "Create category" +msgstr "" + #. [src.categories.views.1140231710] - window title #. defaultMessage is: #. Create category @@ -2381,6 +2367,14 @@ msgctxt "window title" msgid "Create category" msgstr "" +#. [src.collections.components.CollectionListPage.686910896] - button +#. defaultMessage is: +#. Create collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "button" +msgid "Create collection" +msgstr "" + #. [src.collections.views.686910896] - window title #. defaultMessage is: #. Create collection @@ -2397,6 +2391,14 @@ msgctxt "window title" msgid "Create customer" msgstr "" +#. [menuItemsAddItem] - add new menu item +#. defaultMessage is: +#. Create new item +#: build/locale/src/navigation/components/MenuItems/MenuItems.json +msgctxt "add new menu item" +msgid "Create new item" +msgstr "" + #. [src.orders.components.OrderDraftListPage.2826235371] - button #. defaultMessage is: #. Create order @@ -2409,6 +2411,14 @@ msgctxt "button" msgid "Create order" msgstr "Crea comanda" +#. [src.pages.components.PageListPage.3785394515] - button +#. defaultMessage is: +#. Create page +#: build/locale/src/pages/components/PageListPage/PageListPage.json +msgctxt "button" +msgid "Create page" +msgstr "" + #. [src.pages.views.3785394515] - header #. defaultMessage is: #. Create page @@ -2420,11 +2430,55 @@ msgstr "" #. [src.shipping.components.ShippingZoneRateDialog.16061680] - button #. defaultMessage is: #. Create rate +#. [src.shipping.components.ShippingZoneRates.16061680] - button +#. defaultMessage is: +#. Create rate #: build/locale/src/shipping/components/ShippingZoneRateDialog/ShippingZoneRateDialog.json +#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json msgctxt "button" msgid "Create rate" msgstr "" +#. [src.shipping.components.ShippingZonesList.2673544109] - button +#. defaultMessage is: +#. Create shipping zone +#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json +msgctxt "button" +msgid "Create shipping zone" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.770296100] - button +#. defaultMessage is: +#. Create subcategory +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json +msgctxt "button" +msgid "Create subcategory" +msgstr "" + +#. [src.products.components.ProductVariants.3989383405] - button +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/components/ProductVariants/ProductVariants.json +msgctxt "button" +msgid "Create variant" +msgstr "" + +#. [src.products.views.3989383405] - window title +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/views/ProductVariantCreate.json +msgctxt "window title" +msgid "Create variant" +msgstr "" + +#. [src.discounts.components.VoucherListPage.614836274] - button +#. defaultMessage is: +#. Create voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "button" +msgid "Create voucher" +msgstr "" + #. [src.collections.views.1597339737] #. defaultMessage is: #. Created collection @@ -2471,7 +2525,11 @@ msgstr "" #. [src.components.FilterBar.2340527467] #. defaultMessage is: #. Custom Filter +#. [src.components.SearchBar.2340527467] +#. defaultMessage is: +#. Custom Filter #: build/locale/src/components/FilterBar/FilterBar.json +#: build/locale/src/components/SearchBar/SearchBar.json msgctxt "description" msgid "Custom Filter" msgstr "" @@ -2727,10 +2785,18 @@ msgctxt "dialog title" msgid "Delete Collection" msgstr "" -#. [src.orders.views.1161115149] - dialog header +#. [src.products.views.1731766393] - dialog header +#. defaultMessage is: +#. Delete Image +#: build/locale/src/products/views/ProductImage.json +msgctxt "dialog header" +msgid "Delete Image" +msgstr "" + +#. [src.orders.views.OrderDraftList.1161115149] - dialog header #. defaultMessage is: #. Delete Order Drafts -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog header" msgid "Delete Order Drafts" msgstr "" @@ -2768,10 +2834,10 @@ msgctxt "dialog header" msgid "Delete Product Type" msgstr "" -#. [src.productTypes.views.4080551769] - dialog header +#. [src.productTypes.views.ProductTypeList.4080551769] - dialog header #. defaultMessage is: #. Delete Product Types -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog header" msgid "Delete Product Types" msgstr "" @@ -2800,10 +2866,10 @@ msgctxt "dialog header" msgid "Delete Sale" msgstr "" -#. [src.discounts.views.2809303671] - dialog header +#. [src.discounts.views.SaleList.2809303671] - dialog header #. defaultMessage is: #. Delete Sales -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog header" msgid "Delete Sales" msgstr "" @@ -2817,9 +2883,13 @@ msgctxt "custom search delete, dialog header" msgid "Delete Search" msgstr "" +#. [src.components.Filter.2173195312] - button +#. defaultMessage is: +#. Delete Search #. [src.components.TableFilter.2173195312] - button #. defaultMessage is: #. Delete Search +#: build/locale/src/components/Filter/FilterSearch.json #: build/locale/src/components/TableFilter/FilterChips.json msgctxt "button" msgid "Delete Search" @@ -2886,10 +2956,10 @@ msgctxt "dialog header" msgid "Delete Voucher" msgstr "" -#. [src.discounts.views.367317371] - dialog header +#. [src.discounts.views.VoucherList.367317371] - dialog header #. defaultMessage is: #. Delete Vouchers -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog header" msgid "Delete Vouchers" msgstr "" @@ -2923,11 +2993,11 @@ msgstr "" #. [src.categories.views.712767046] - dialog title #. defaultMessage is: #. Delete categories -#. [src.categories.views.712767046] - dialog title +#. [src.categories.views.CategoryList.712767046] - dialog title #. defaultMessage is: #. Delete categories #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "dialog title" msgid "Delete categories" msgstr "" @@ -2944,10 +3014,10 @@ msgctxt "dialog title" msgid "Delete category" msgstr "" -#. [src.collections.views.3817188998] - dialog title +#. [src.collections.views.CollectionList.3817188998] - dialog title #. defaultMessage is: #. Delete collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Delete collections" msgstr "" @@ -2960,14 +3030,31 @@ msgctxt "dialog header" msgid "Delete customer" msgstr "" -#. [src.customers.views.1946482599] - dialog header +#. [src.customers.views.CustomerList.1946482599] - dialog header #. defaultMessage is: #. Delete customers -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "dialog header" msgid "Delete customers" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.632633254] - dialog header +#. defaultMessage is: +#. Delete draft order +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "dialog header" +msgid "Delete draft order" +msgstr "" + +#. [src.shipping.views.ShippingZoneDetails.1947090060] - unassign country, +#. dialog header +#. defaultMessage is: +#. Delete from shipping zone +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country, dialog header" +msgid "Delete from shipping zone" +msgstr "" + #. [src.collections.views.942133001] - dialog title #. defaultMessage is: #. Delete image @@ -3028,6 +3115,14 @@ msgctxt "description" msgid "Deleted collection" msgstr "" +#. [src.orders.views.OrderDraftList.1648805446] +#. defaultMessage is: +#. Deleted draft orders +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json +msgctxt "description" +msgid "Deleted draft orders" +msgstr "" + #. [menuListDeletedMenu] #. defaultMessage is: #. Deleted menu @@ -3627,14 +3722,6 @@ msgctxt "order history message" msgid "Fulfilled {quantity} items" msgstr "" -#. [src.orders.components.OrderListFilter.2943502192] - order -#. defaultMessage is: -#. Fulfillment Status -#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json -msgctxt "order" -msgid "Fulfillment Status" -msgstr "" - #. [src.orders.components.OrderHistory.3081292385] - order history message #. defaultMessage is: #. Fulfillment confirmation was sent to customer @@ -3791,12 +3878,12 @@ msgctxt "description" msgid "If empty, the preview shows what will be autogenerated." msgstr "" -#. [src.attributes.components.AttributeProperties.2519239682] +#. [src.attributes.components.AttributeProperties.4048785456] #. defaultMessage is: -#. If enable this attribute can be used as a column in product table. +#. If enabled this attribute can be used as a column in product table. #: build/locale/src/attributes/components/AttributeProperties/AttributeProperties.json msgctxt "description" -msgid "If enable this attribute can be used as a column in product table." +msgid "If enabled this attribute can be used as a column in product table." msgstr "" #. [src.attributes.components.AttributeProperties.787251583] @@ -3902,6 +3989,22 @@ msgctxt "product variant stock" msgid "Inventory" msgstr "Inventari" +#. [src.staff.components.StaffAddMemberDialog.1481503299] - dialog header +#. defaultMessage is: +#. Invite Staff Member +#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json +msgctxt "dialog header" +msgid "Invite Staff Member" +msgstr "" + +#. [src.staff.components.StaffListPage.797461521] - button +#. defaultMessage is: +#. Invite staff member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "button" +msgid "Invite staff member" +msgstr "" + #. [src.productTypes.components.ProductTypeShipping.2143413921] - switch #. button #. defaultMessage is: @@ -4254,6 +4357,14 @@ msgctxt "voucher requirement" msgid "Minimum quantity of items" msgstr "" +#. [src.configuration.1233229030] +#. defaultMessage is: +#. Miscellaneous +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Miscellaneous" +msgstr "" + #. [src.attributes.components.AttributeDetails.3334509011] - product attribute #. type #. defaultMessage is: @@ -5086,6 +5197,14 @@ msgctxt "description" msgid "Order History" msgstr "" +#. [src.orders.components.OrderListFilter.2222765704] +#. defaultMessage is: +#. Order Status +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +msgctxt "description" +msgid "Order Status" +msgstr "" + #. [src.orders.components.OrderHistory.1230178536] - order history message #. defaultMessage is: #. Order address was updated @@ -5102,13 +5221,13 @@ msgctxt "order history message" msgid "Order confirmation was sent to customer" msgstr "" -#. [src.orders.views.1872939752] +#. [src.orders.views.OrderDraftList.1872939752] #. defaultMessage is: #. Order draft succesfully created #. [src.orders.views.OrderList.1872939752] #. defaultMessage is: #. Order draft succesfully created -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json #: build/locale/src/orders/views/OrderList/OrderList.json msgctxt "description" msgid "Order draft succesfully created" @@ -5773,6 +5892,14 @@ msgctxt "description" msgid "Product Name" msgstr "" +#. [src.configuration.3655543906] +#. defaultMessage is: +#. Product Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Product Settings" +msgstr "" + #. [src.discounts.components.DiscountProducts.4257289053] #. defaultMessage is: #. Product Type @@ -5931,12 +6058,12 @@ msgctxt "order history message" msgid "Products were added to draft order" msgstr "" -#. [src.orders.components.OrderHistory.2574162126] - order history message +#. [src.orders.components.OrderHistory.4067959693] - order history message #. defaultMessage is: -#. Products were removed from draft order +#. Products were deleted from draft order #: build/locale/src/orders/components/OrderHistory/OrderHistory.json msgctxt "order history message" -msgid "Products were removed from draft order" +msgid "Products were deleted from draft order" msgstr "" #. [src.properties] @@ -5963,10 +6090,10 @@ msgctxt "description" msgid "Provided email address does not exist in our database." msgstr "" -#. [src.collections.views.1547167026] - publish collections +#. [src.collections.views.CollectionList.1547167026] - publish collections #. defaultMessage is: #. Publish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "publish collections" msgid "Publish" msgstr "" @@ -6003,10 +6130,10 @@ msgctxt "dialog header" msgid "Publish Products" msgstr "" -#. [src.collections.views.2823425739] - dialog title +#. [src.collections.views.CollectionList.2823425739] - dialog title #. defaultMessage is: #. Publish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Publish collections" msgstr "" @@ -6180,6 +6307,18 @@ msgctxt "shipping method price" msgid "Rate Price" msgstr "" +#. [src.orders.components.OrderListFilter.2415661583] - order status +#. defaultMessage is: +#. Ready to Capture +#. [src.orders.views.OrderList.readyToCapture] - order status +#. defaultMessage is: +#. Ready to Capture +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +#: build/locale/src/orders/views/OrderList/filters.json +msgctxt "order status" +msgid "Ready to Capture" +msgstr "" + #. [src.customers.components.CustomerOrders.3878642352] - section header #. defaultMessage is: #. Recent orders @@ -6228,22 +6367,14 @@ msgctxt "switch button" msgid "Release all stock allocated to this order" msgstr "" -#. [src.auth.components.LoginPage.3182284913] - login -#. defaultMessage is: -#. Remember me -#: build/locale/src/auth/components/LoginPage/LoginPage.json -msgctxt "login" -msgid "Remember me" -msgstr "" - #. [src.categories.views.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. -#. [src.categories.views.3488150607] +#. [src.categories.views.CategoryList.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "description" msgid "Remember this will also delete all products assigned to this category." msgstr "" @@ -6256,39 +6387,6 @@ msgctxt "button" msgid "Remove" msgstr "Elimina" -#. [src.products.views.490753666] - dialog header -#. defaultMessage is: -#. Remove Image -#: build/locale/src/products/views/ProductImage.json -msgctxt "dialog header" -msgid "Remove Image" -msgstr "" - -#. [src.orders.components.OrderDraftCancelDialog.500287069] - dialog header -#. defaultMessage is: -#. Remove draft order -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "dialog header" -msgid "Remove draft order" -msgstr "Elimina esborrany de comanda" - -#. [src.shipping.views.ShippingZoneDetails.254167659] - unassign country, -#. dialog header -#. defaultMessage is: -#. Remove from shipping zone -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country, dialog header" -msgid "Remove from shipping zone" -msgstr "" - -#. [src.orders.views.3880993240] -#. defaultMessage is: -#. Removed draft orders -#: build/locale/src/orders/views/OrderDraftList.json -msgctxt "description" -msgid "Removed draft orders" -msgstr "" - #. [src.pages.views.1457312643] #. defaultMessage is: #. Removed page @@ -6454,6 +6552,18 @@ msgctxt "button" msgid "Save" msgstr "Desa" +#. [src.components.Filter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#. [src.components.TableFilter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#: build/locale/src/components/Filter/FilterSearch.json +#: build/locale/src/components/TableFilter/FilterChips.json +msgctxt "button" +msgid "Save Custom Search" +msgstr "" + #. [src.components.SaveFilterTabDialog.1514415736] - save filter tab, header #. defaultMessage is: #. Save Custom Search @@ -6462,14 +6572,6 @@ msgctxt "save filter tab, header" msgid "Save Custom Search" msgstr "" -#. [src.components.TableFilter.1514415736] - button -#. defaultMessage is: -#. Save Custom Search -#: build/locale/src/components/TableFilter/FilterChips.json -msgctxt "button" -msgid "Save Custom Search" -msgstr "" - #. [src.products.components.ProductVariantCreatePage.2853608829] - button #. defaultMessage is: #. Save variant @@ -6486,6 +6588,14 @@ msgctxt "description" msgid "Saved changes" msgstr "" +#. [src.attributes.components.AttributeListPage.3916653510] +#. defaultMessage is: +#. Search Attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "description" +msgid "Search Attribute" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.902296540] #. defaultMessage is: #. Search Attributes @@ -6502,10 +6612,30 @@ msgctxt "description" msgid "Search Categories" msgstr "" +#. [src.categories.components.CategoryListPage.3841025483] +#. defaultMessage is: +#. Search Category +#. [src.translations.components.TranslationsEntitiesListPage.3841025483] +#. defaultMessage is: +#. Search Category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Category" +msgstr "" + +#. [src.collections.components.CollectionListPage.4057224233] +#. defaultMessage is: +#. Search Collection #. [src.components.AssignCollectionDialog.4057224233] #. defaultMessage is: #. Search Collection +#. [src.translations.components.TranslationsEntitiesListPage.4057224233] +#. defaultMessage is: +#. Search Collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json #: build/locale/src/components/AssignCollectionDialog/AssignCollectionDialog.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json msgctxt "description" msgid "Search Collection" msgstr "" @@ -6518,6 +6648,14 @@ msgctxt "description" msgid "Search Countries" msgstr "" +#. [src.customers.components.CustomerListPage.1643417013] +#. defaultMessage is: +#. Search Customer +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "description" +msgid "Search Customer" +msgstr "" + #. [src.orders.components.OrderCustomer.2433460203] #. defaultMessage is: #. Search Customers @@ -6526,6 +6664,14 @@ msgctxt "description" msgid "Search Customers" msgstr "" +#. [src.orders.components.OrderDraftListPage.77765281] +#. defaultMessage is: +#. Search Draft +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "description" +msgid "Search Draft" +msgstr "" + #. [src.translations.components.TranslationsCategoriesPage.1406947243] #. defaultMessage is: #. Search Engine Description @@ -6606,6 +6752,34 @@ msgctxt "description" msgid "Search Orders..." msgstr "" +#. [src.translations.components.TranslationsEntitiesListPage.2559018090] +#. defaultMessage is: +#. Search Page +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Page" +msgstr "" + +#. [src.translations.components.TranslationsEntitiesListPage.2105464697] +#. defaultMessage is: +#. Search Product +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product" +msgstr "" + +#. [src.productTypes.components.ProductTypeListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#. [src.translations.components.TranslationsEntitiesListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product Type" +msgstr "" + #. [src.components.AssignProductDialog.2850255786] #. defaultMessage is: #. Search Products @@ -6618,14 +6792,46 @@ msgctxt "description" msgid "Search Products" msgstr "" -#. [src.products.components.ProductListPage.3550330425] +#. [src.products.components.ProductListFilter.3550330425] #. defaultMessage is: #. Search Products... -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Search Products..." msgstr "" +#. [src.discounts.components.SaleListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#. [src.translations.components.TranslationsEntitiesListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Sale" +msgstr "" + +#. [src.staff.components.StaffListPage.61043583] +#. defaultMessage is: +#. Search Staff Member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "description" +msgid "Search Staff Member" +msgstr "" + +#. [src.discounts.components.VoucherListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#. [src.translations.components.TranslationsEntitiesListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Voucher" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.524117994] #. defaultMessage is: #. Search by attribute name @@ -6732,10 +6938,10 @@ msgctxt "description" msgid "Select all orders where:" msgstr "" -#. [src.products.components.ProductListPage.1421689426] +#. [src.products.components.ProductListFilter.1421689426] #. defaultMessage is: #. Select all products where: -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Select all products where:" msgstr "" @@ -6821,6 +7027,14 @@ msgctxt "description" msgid "Set plugin as Active" msgstr "" +#. [src.components.VisibilityCard.292404896] +#. defaultMessage is: +#. Set publication date +#: build/locale/src/components/VisibilityCard/VisibilityCard.json +msgctxt "description" +msgid "Set publication date" +msgstr "" + #. [src.discounts.shipment] - voucher discount #. defaultMessage is: #. Shipment @@ -7086,6 +7300,14 @@ msgctxt "staff section name" msgid "Staff Members" msgstr "" +#. [src.configuration.3140151600] +#. defaultMessage is: +#. Staff Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Staff Settings" +msgstr "" + #. [src.standard] - tax rate #. defaultMessage is: #. Standard @@ -8070,10 +8292,10 @@ msgctxt "payment status" msgid "Unpaid" msgstr "" -#. [src.collections.views.2237014112] - unpublish collections +#. [src.collections.views.CollectionList.2237014112] - unpublish collections #. defaultMessage is: #. Unpublish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "unpublish collections" msgid "Unpublish" msgstr "" @@ -8110,10 +8332,10 @@ msgctxt "dialog header" msgid "Unpublish Products" msgstr "" -#. [src.collections.views.2637364047] - dialog title +#. [src.collections.views.CollectionList.2637364047] - dialog title #. defaultMessage is: #. Unpublish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Unpublish collections" msgstr "" @@ -8613,6 +8835,22 @@ msgctxt "description" msgid "ZIP / Postal code" msgstr "" +#. [src.productTypes.components.ProductTypeListPage.3479705616] - button +#. defaultMessage is: +#. create product type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "button" +msgid "create product type" +msgstr "" + +#. [src.staff.views.1308770978] - dialog header +#. defaultMessage is: +#. delete Staff User +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "dialog header" +msgid "delete Staff User" +msgstr "" + #. [orderPaymentVATDoesNotApply] - vat not included in order price #. defaultMessage is: #. does not apply @@ -8686,19 +8924,35 @@ msgctxt "product status is set as" msgid "is set as" msgstr "" -#. [src.staff.views.2240444792] - dialog header -#. defaultMessage is: -#. remove Staff User -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "dialog header" -msgid "remove Staff User" -msgstr "" - -#. [src.components.VisibilityCard.1815688500] +#. [src.collections.components.CollectionCreatePage.1815688500] - collection #. defaultMessage is: #. since {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.1815688500] - collection +#. defaultMessage is: +#. since {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "since {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.1815688500] - page +#. defaultMessage is: +#. since {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "since {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#. [src.products.components.ProductUpdatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "since {date}" msgstr "" @@ -8726,11 +8980,35 @@ msgctxt "weight" msgid "to {value} {unit}" msgstr "" -#. [src.components.VisibilityCard.2001551496] +#. [src.collections.components.CollectionCreatePage.2001551496] - collection #. defaultMessage is: #. will be visible from {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.2001551496] - collection +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "will be visible from {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.2001551496] - page +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "will be visible from {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#. [src.products.components.ProductUpdatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "will be visible from {date}" msgstr "" diff --git a/locale/cs.json b/locale/cs.json index c7cebf854..45d794973 100644 --- a/locale/cs.json +++ b/locale/cs.json @@ -1 +1 @@ -{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.350498821":"Přidat atribut","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.2519239682":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"Jméno","src.categories.components.CategoryProducts.636461959":"Jméno","src.collections.components.CollectionProducts.636461959":"Jméno","src.products.components.ProductDetailsForm.636461959":"Jméno","src.collections.components.CollectionDetails.636461959":"Jméno","src.components.ProductList.636461959":"Jméno","src.discounts.components.SaleInfo.636461959":"Jméno","src.discounts.components.SaleList.636461959":"Jméno","src.discounts.components.SaleSummary.636461959":"Jméno","menuItemDialogNameLabel":"Jméno","src.products.components.ProductVariants.636461959":"Jméno","src.shipping.components.ShippingZoneRates.636461959":"Jméno","src.shipping.components.ShippingZonesList.636461959":"Jméno","src.staff.components.StaffList.636461959":"Jméno","src.translations.components.TranslationsEntitiesList.636461959":"Jméno","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.254756045":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.3182284913":"","src.auth.components.LoginPage.109182747":"Přihlášení","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"","src.categories.views.2004894945":"","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.3229914152":"","src.categories.components.CategoryList.435697837":"","src.categories.components.CategoryList.2159874182":"Podkategorie","src.categories.components.CategoryUpdatePage.2159874182":"Podkategorie","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.228151782":"Přidat kategorii","src.categories.components.CategoryProducts.2968663655":"Produkty","src.categories.components.CategoryUpdatePage.2968663655":"Produkty","src.discounts.components.DiscountCategories.2968663655":"Produkty","src.discounts.components.DiscountCollections.2968663655":"Produkty","src.products":"Produkty","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryProducts.3554578821":"Přidat produkt","src.categories.components.CategoryProductsCard.3554578821":"Přidat produkt","src.categories.components.CategoryProducts.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProducts.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.categories.components.CategoryProductsCard.4164156574":"","src.categories.views.1754466114":"","src.categories.views.1140231710":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.712767046":"","src.categories.views.299584400":"","src.categories.views.844574071":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.collections.components.CollectionCreatePage.3958681866":"Přidat kolekci","src.collections.components.CollectionListPage.3958681866":"Přidat kolekci","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"Dostupnost","src.availability":"","src.collections.components.CollectionList.3640454975":"Zveřejněno","src.collections.components.CollectionProducts.3640454975":"Zveřejněno","src.discounts.components.DiscountProducts.3640454975":"Zveřejněno","src.components.ProductList.3640454975":"Zveřejněno","src.products.components.ProductListPage.3640454975":"Zveřejněno","src.pages.components.PageList.3640454975":"Zveřejněno","src.products.views.ProductList.published":"Zveřejněno","src.collections.components.CollectionList.2341910657":"Nezveřejněno","src.collections.components.CollectionProducts.2341910657":"Nezveřejněno","src.discounts.components.DiscountProducts.2341910657":"Nezveřejněno","src.components.ProductList.2341910657":"Nezveřejněno","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.686910896":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"","src.collections.views.2402899582":"","src.collections.views.2237014112":"Nezveřejňovat","src.pages.views.2237014112":"Nezveřejňovat","src.products.views.ProductList.2237014112":"Nezveřejňovat","src.collections.views.1547167026":"Zveřejnit","src.pages.views.1547167026":"Zveřejnit","src.products.views.ProductList.1547167026":"Zveřejnit","src.collections.views.2823425739":"","src.collections.views.1348793822":"","src.collections.views.2637364047":"","src.collections.views.3944356444":"","src.collections.views.3817188998":"","src.collections.views.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"Odhlásit se","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.4057224233":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"","src.components.ErrorMessageCard.2845142593":"","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.FilterBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"Přidat","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.ProductList.1134347598":"Cena","src.orders.components.OrderDraftDetailsProducts.1134347598":"Cena","src.orders.components.OrderFulfillment.1134347598":"Cena","src.products.components.ProductListPage.1134347598":"Cena","src.products.components.ProductPricing.1134347598":"Cena","src.orders.components.OrderUnfulfilledItems.1134347598":"Cena","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"Cena","src.shipping.components.ShippingZoneRates.1134347598":"Cena","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"Viditelnost","src.pages.components.PageList.1459686496":"Viditelnost","src.products.components.ProductListFilter.1459686496":"Viditelnost","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"Skrytý","src.products.views.ProductList.hidden":"Skrytý","src.components.VisibilityCard.1815688500":"","src.components.VisibilityCard.2001551496":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","configurationMenuStaff":"","configurationMenuShipping":"","configurationMenuTaxes":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","src.customers.components.CustomerAddress.1320082647":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"Fakturační adresa","src.customers.components.CustomerAddresses.3517722732":"Dodací adresa","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"Adresa","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"Poznámky","src.orders.components.OrderCustomerNote.1520756907":"Poznámky","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"Poznámka","src.customers.components.CustomerDetails.577013340":"Poznámka","src.customers.components.CustomerCreatePage.1934221653":"Přidat zákazníka","src.customers.components.CustomerListPage.1934221653":"Přidat zákazníka","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerOrders.3878642352":"Nedávné objednávky","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"Datum","src.orders.components.OrderDraftList.4205493358":"Datum","src.orders.components.OrderList.4205493358":"Datum","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"Stav","src.orders.components.OrderListFilter.1756106276":"Stav","src.products.components.ProductListFilter.1756106276":"Stav","src.products.components.ProductVariants.1756106276":"Stav","src.customers.components.CustomerOrders.878013594":"Celkem","src.orders.components.OrderDraftDetailsProducts.878013594":"Celkem","src.orders.components.OrderDraftDetailsSummary.878013594":"Celkem","src.orders.components.OrderDraftList.878013594":"Celkem","src.orders.components.OrderFulfillment.878013594":"Celkem","src.orders.components.OrderUnfulfilledItems.878013594":"Celkem","src.orders.components.OrderList.878013594":"Celkem","src.orders.components.OrderPayment.878013594":"Celkem","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.1946482599":"","src.customers.views.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"Hodnota","src.discounts.components.SaleSummary.1148029984":"Hodnota","src.discounts.components.VoucherList.1148029984":"Hodnota","src.discounts.components.VoucherSummary.1148029984":"Hodnota","src.discounts.components.VoucherValue.1148029984":"Hodnota","src.products.components.ProductAttributes.1148029984":"Hodnota","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.1742771332":"","src.discounts.components.SalePricing.1099355007":"Ceny","src.products.components.ProductPricing.1099355007":"Ceny","src.products.components.ProductVariantPrice.1099355007":"Ceny","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"Země","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"Kód","src.discounts.components.VoucherSummary.78726751":"Kód","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.1536809153":"Přidat voucher","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"Celou objednávku","src.discounts.products":"Konkrétní produkty","src.discounts.shipment":"Poštovné","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.2809303671":"","src.discounts.views.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.367317371":"","src.discounts.views.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"Zrušit","src.orders.views.OrderList.3528672691":"Zrušit","src.confirm":"","src.delete":"","src.edit":"Upravit","src.manage":"","src.remove":"Odstranit","src.save":"Uložit","src.show":"","src.undo":"","src.attributes":"Atributy","src.products.components.ProductAttributes.4153345096":"Atributy","src.categories":"Kategorie","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"Kolekce","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"Nastavení","src.customers":"Zákazníci","src.draftOrders":"","src.home":"Domů","src.navigation":"Navigace","src.orders":"Objednávky","src.pages":"Stránky","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"Slevy","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"DPH","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"DPH","src.taxes.components.CountryListPage.3955023266":"DPH","src.translations":"","src.vouchers":"Vouchery","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"","src.partiallyPaid":"","src.partiallyRefunded":"Částečně vráceno","src.refunded":"Plně vráceno","src.unpaid":"","src.cancelled":"","src.draft":"Rozepsáno","src.fulfilled":"Zpracováno","src.orders.views.OrderList.fulfilled":"Zpracováno","src.orders.components.OrderListFilter.1712863026":"Zpracováno","src.partiallyFulfilled":"Částečně zpracováno","src.unfulfilled":"Nezpracováno","src.orders.views.OrderList.unfulfilled":"Nezpracováno","src.orders.components.OrderListFilter.1751787272":"Nezpracováno","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","src.1395232177":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"Odkaz","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"Zrušit objednávku","src.orders.components.OrderDetailsPage.1854613983":"Zrušit objednávku","src.orders.components.OrderDraftPage.1854613983":"Zrušit objednávku","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"Zákazník","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"Zákazník","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"Stejné jako dodací adresa","src.orders.components.OrderCustomerEditDialog.1411666943":"Upravit podrobnosti o zákaznících","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.500287069":"Odstranění pořadí návrhů","src.orders.components.OrderDraftCancelDialog.3199827590":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"Produkt","src.orders.components.OrderUnfulfilledItems.1895667608":"Produkt","src.orders.components.OrderDraftDetailsProducts.2796503714":"Množství","src.orders.components.OrderFulfillment.2796503714":"Množství","src.orders.components.OrderFulfillmentDialog.2796503714":"Množství","src.orders.components.OrderUnfulfilledItems.2796503714":"Množství","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"Mezisoučet","src.orders.components.OrderPayment.781550514":"Mezisoučet","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"Vytvořit objednávku","src.orders.components.OrderListPage.2826235371":"Vytvořit objednávku","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"Přidat sledování","src.orders.components.OrderFulfillmentCancelDialog.732594284":"Zrušit zpracování","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"Zrušit zpracování","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"SKU","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"Sledovací číslo","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.2574162126":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"objednávka byla plně uhrazena","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"Objednávka byla odeslána","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"Platba","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2943502192":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"Dopravné","src.productTypes.components.ProductTypeShipping.1325966144":"Dopravné","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"Dopravné","src.orders.components.OrderPayment.3768782744":"Paušální částka","src.orders.components.OrderPayment.2320183694":"Získaná částka","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"Získat","src.orders.components.OrderPayment.2845258362":"Vrácení platby","src.orders.components.OrderPayment.2444197639":"zrušit","src.orders.components.OrderPayment.3500506678":"Označit jako zaplacené","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"Množství","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.2775402904":"","src.products.components.ProductListPage.2775402904":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"Zpracovat","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.3880993240":"","src.orders.views.1161115149":"","src.orders.views.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.755314116":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"Titulek","src.pages.components.PageList.1124600214":"Titulek","src.pages.components.PageInfo.1116746286":"Obsah","src.translations.components.TranslationsPagesPage.1116746286":"Obsah","src.pages.components.PageList.3478065224":"slug","src.pages.components.PageSlug.3478065224":"slug","src.productTypes.components.ProductTypeAttributes.3478065224":"slug","src.pages.components.PageList.3767550649":"Nezveřejněno","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.1767905232":"Přidat stranu","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.3785394515":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"Hodnoty","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"Obrázek","src.products.components.ProductVariantImages.3240888698":"Obrázek","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"","src.products.components.ProductVariantStock.3841616483":"","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListPage.821159718":"","src.products.components.ProductListPage.1421689426":"","src.products.components.ProductListPage.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"Inventář","prodictStockInventoryLabel":"Inventář","src.products.components.ProductVariantStock.3490038570":"Inventář","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"","src.products.components.ProductVariants.2153006789":"","src.products.components.ProductVariantNavigation.2845381934":"Přidat variantu","src.products.components.ProductVariants.2845381934":"Přidat variantu","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1542417144":"","src.products.views.1591632382":"","src.products.views.490753666":"","src.products.views.672103788":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.1694086800":"","src.products.views.ProductList.224127438":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.products.views.2178905289":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1756957616":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.889729490":"Přidat typ produktu","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.4080551769":"","src.productTypes.views.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.352297149":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2474410767":"Přidat oblast doručení","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.254167659":"","src.shipping.views.ShippingZoneDetails.1790261672":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"Klíč","src.siteSettings.components.SiteSettingsKeys.2446088470":"Klíč","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.3490059488":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"Oprávnění","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.3247064221":"Aktivní","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.802625341":"Přidat člena personálu","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"Uživatel je aktivní","src.staff.views.2240444792":"","src.staff.views.2728048444":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file +{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.3824684885":"","src.attributes.components.AttributeListPage.2417065806":"","src.attributes.components.AttributeListPage.3916653510":"","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.4048785456":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"Jméno","src.categories.components.CategoryProductList.636461959":"Jméno","src.components.ProductList.636461959":"Jméno","src.products.components.ProductList.636461959":"Jméno","src.collections.components.CollectionDetails.636461959":"Jméno","src.collections.components.CollectionProducts.636461959":"Jméno","src.products.components.ProductDetailsForm.636461959":"Jméno","src.discounts.components.SaleInfo.636461959":"Jméno","src.discounts.components.SaleList.636461959":"Jméno","src.discounts.components.SaleSummary.636461959":"Jméno","menuItemDialogNameLabel":"Jméno","src.plugins.components.PluginsList.636461959":"Jméno","src.products.components.ProductVariants.636461959":"Jméno","src.shipping.components.ShippingZoneRates.636461959":"Jméno","src.shipping.components.ShippingZonesList.636461959":"Jméno","src.staff.components.StaffList.636461959":"Jméno","src.translations.components.TranslationsEntitiesList.636461959":"Jméno","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.351422234":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.109182747":"Přihlášení","src.auth.components.LoginPage.4028609483":"","src.auth.components.NewPasswordPage.1915811227":"","src.auth.components.NewPasswordPage.1254879564":"","src.auth.components.NewPasswordPage.2799926859":"","src.auth.components.NewPasswordPage.4253911811":"","src.auth.components.NewPasswordPage.2342634351":"","src.auth.components.ResetPasswordPage.2370700732":"","src.auth.components.ResetPasswordPage.3663311080":"","src.auth.components.ResetPasswordSuccessPage.4066297200":"","src.auth.components.ResetPasswordSuccessPage.2245157344":"","src.auth.views.2388238158":"","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"","src.categories.views.2004894945":"","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.2159874182":"Podkategorie","src.categories.components.CategoryUpdatePage.2159874182":"Podkategorie","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.1140231710":"","src.categories.views.1140231710":"","src.categories.components.CategoryListPage.4294878092":"","src.categories.components.CategoryListPage.3841025483":"","src.translations.components.TranslationsEntitiesListPage.3841025483":"","src.categories.components.CategoryProductList.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductList.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProductList.3640454975":"Zveřejněno","src.components.ProductList.3640454975":"Zveřejněno","src.products.components.ProductList.3640454975":"Zveřejněno","src.products.components.ProductListPage.3640454975":"Zveřejněno","productStatusLabel":"Zveřejněno","src.collections.components.CollectionList.3640454975":"Zveřejněno","src.collections.components.CollectionProducts.3640454975":"Zveřejněno","src.discounts.components.DiscountProducts.3640454975":"Zveřejněno","src.pages.components.PageList.3640454975":"Zveřejněno","src.products.views.ProductList.published":"Zveřejněno","src.categories.components.CategoryProductList.1134347598":"Cena","src.orders.components.OrderFulfillment.1134347598":"Cena","src.products.components.ProductList.1134347598":"Cena","src.products.components.ProductListPage.1134347598":"Cena","src.products.components.ProductPricing.1134347598":"Cena","src.components.ProductList.1134347598":"Cena","src.orders.components.OrderDraftDetailsProducts.1134347598":"Cena","src.orders.components.OrderUnfulfilledItems.1134347598":"Cena","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"Cena","src.shipping.components.ShippingZoneRates.1134347598":"Cena","src.categories.components.CategoryProductList.2341910657":"Nezveřejněno","src.products.components.ProductList.2341910657":"Nezveřejněno","src.collections.components.CollectionList.2341910657":"Nezveřejněno","src.collections.components.CollectionProducts.2341910657":"Nezveřejněno","src.discounts.components.DiscountProducts.2341910657":"Nezveřejněno","src.components.ProductList.2341910657":"Nezveřejněno","src.categories.components.CategoryProductList.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.products.components.ProductList.1657559629":"","src.categories.components.CategoryProducts.4164156574":"","src.categories.components.CategoryProducts.3554578821":"Přidat produkt","src.categories.components.CategoryUpdatePage.2968663655":"Produkty","src.discounts.components.DiscountCategories.2968663655":"Produkty","src.discounts.components.DiscountCollections.2968663655":"Produkty","src.products":"Produkty","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryUpdatePage.3229914152":"","src.categories.components.CategoryUpdatePage.770296100":"","src.categories.views.1754466114":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.CategoryList.3488150607":"","src.categories.views.712767046":"","src.categories.views.CategoryList.712767046":"","src.categories.views.299584400":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.categories.views.CategoryList.2144707585":"","src.collections.components.CollectionCreatePage.3958681866":"Přidat kolekci","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionCreatePage.2001551496":"","src.collections.components.CollectionDetailsPage.2001551496":"","src.pages.components.PageDetailsPage.2001551496":"","src.products.components.ProductCreatePage.2001551496":"","src.products.components.ProductUpdatePage.2001551496":"","src.collections.components.CollectionCreatePage.1815688500":"","src.collections.components.CollectionDetailsPage.1815688500":"","src.pages.components.PageDetailsPage.1815688500":"","src.products.components.ProductCreatePage.1815688500":"","src.products.components.ProductUpdatePage.1815688500":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"Dostupnost","src.availability":"","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionListPage.686910896":"","src.collections.views.686910896":"","src.collections.components.CollectionListPage.1631917001":"","src.collections.components.CollectionListPage.4057224233":"","src.components.AssignCollectionDialog.4057224233":"","src.translations.components.TranslationsEntitiesListPage.4057224233":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"","src.collections.views.2402899582":"","src.collections.views.CollectionList.2237014112":"Nezveřejňovat","src.pages.views.2237014112":"Nezveřejňovat","src.products.views.ProductList.2237014112":"Nezveřejňovat","src.collections.views.CollectionList.1547167026":"Zveřejnit","src.pages.views.1547167026":"Zveřejnit","src.products.views.ProductList.1547167026":"Zveřejnit","src.collections.views.CollectionList.2823425739":"","src.collections.views.CollectionList.1348793822":"","src.collections.views.CollectionList.2637364047":"","src.collections.views.CollectionList.3944356444":"","src.collections.views.CollectionList.3817188998":"","src.collections.views.CollectionList.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"Odhlásit se","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"","src.components.ErrorMessageCard.2845142593":"","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.Filter.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.Filter.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.FilterBar.2340527467":"","src.components.SearchBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"Přidat","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"Viditelnost","src.pages.components.PageList.1459686496":"Viditelnost","src.products.components.ProductListFilter.1459686496":"Viditelnost","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"Skrytý","src.products.views.ProductList.hidden":"Skrytý","src.components.VisibilityCard.292404896":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","src.configuration.2326418019":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","src.configuration.3655543906":"","configurationMenuShipping":"","configurationMenuTaxes":"","src.configuration.3140151600":"","configurationMenuStaff":"","src.configuration.1233229030":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","configurationPluginsPages":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"Fakturační adresa","src.customers.components.CustomerAddresses.3517722732":"Dodací adresa","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"Adresa","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"Poznámky","src.orders.components.OrderCustomerNote.1520756907":"Poznámky","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"Poznámka","src.customers.components.CustomerDetails.577013340":"Poznámka","src.customers.components.CustomerCreatePage.1934221653":"Přidat zákazníka","src.customers.components.CustomerListPage.1934221653":"Přidat zákazníka","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerListPage.477293306":"","src.customers.components.CustomerListPage.1643417013":"","src.customers.components.CustomerOrders.3878642352":"Nedávné objednávky","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"Datum","src.orders.components.OrderDraftList.4205493358":"Datum","src.orders.components.OrderList.4205493358":"Datum","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"Stav","src.orders.components.OrderListFilter.1756106276":"Stav","src.plugins.components.PluginInfo.1756106276":"Stav","src.products.components.ProductListFilter.1756106276":"Stav","src.products.components.ProductVariants.1756106276":"Stav","src.customers.components.CustomerOrders.878013594":"Celkem","src.orders.components.OrderDraftDetailsProducts.878013594":"Celkem","src.orders.components.OrderDraftDetailsSummary.878013594":"Celkem","src.orders.components.OrderDraftList.878013594":"Celkem","src.orders.components.OrderFulfillment.878013594":"Celkem","src.orders.components.OrderUnfulfilledItems.878013594":"Celkem","src.orders.components.OrderList.878013594":"Celkem","src.orders.components.OrderPayment.878013594":"Celkem","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.CustomerList.1946482599":"","src.customers.views.CustomerList.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","src.discounts.components.SaleListPage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"Hodnota","src.discounts.components.SaleSummary.1148029984":"Hodnota","src.discounts.components.VoucherList.1148029984":"Hodnota","src.discounts.components.VoucherSummary.1148029984":"Hodnota","src.discounts.components.VoucherValue.1148029984":"Hodnota","src.products.components.ProductAttributes.1148029984":"Hodnota","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.3907768880":"","src.discounts.components.SaleListPage.1866913828":"","src.translations.components.TranslationsEntitiesListPage.1866913828":"","src.discounts.components.SalePricing.1099355007":"Ceny","src.products.components.ProductPricing.1099355007":"Ceny","src.products.components.ProductVariantPrice.1099355007":"Ceny","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"Země","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"Kód","src.discounts.components.VoucherSummary.78726751":"Kód","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.614836274":"","src.discounts.components.VoucherListPage.1112241061":"","src.discounts.components.VoucherListPage.1930485532":"","src.translations.components.TranslationsEntitiesListPage.1930485532":"","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"Celou objednávku","src.discounts.products":"Konkrétní produkty","src.discounts.shipment":"Poštovné","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.SaleList.2809303671":"","src.discounts.views.SaleList.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.VoucherList.367317371":"","src.discounts.views.VoucherList.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.somethingWentWrong":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"Zrušit","src.orders.views.OrderList.3528672691":"Zrušit","src.confirm":"","src.delete":"","src.edit":"Upravit","src.manage":"","src.remove":"Odstranit","src.save":"Uložit","src.show":"","src.undo":"","src.attributes":"Atributy","src.products.components.ProductAttributes.4153345096":"Atributy","src.categories":"Kategorie","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"Kolekce","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"Nastavení","src.customers":"Zákazníci","src.draftOrders":"","src.home":"Domů","src.navigation":"Navigace","src.orders":"Objednávky","src.pages":"Stránky","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.plugins":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"Slevy","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"DPH","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"DPH","src.taxes.components.CountryListPage.3955023266":"DPH","src.translations":"","src.vouchers":"Vouchery","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"","src.partiallyPaid":"","src.partiallyRefunded":"Částečně vráceno","src.refunded":"Plně vráceno","src.unpaid":"","src.cancelled":"","src.draft":"Rozepsáno","src.fulfilled":"Zpracováno","src.orders.views.OrderList.fulfilled":"Zpracováno","src.orders.components.OrderListFilter.1712863026":"Zpracováno","src.partiallyFulfilled":"Částečně zpracováno","src.unfulfilled":"Nezpracováno","src.orders.views.OrderList.unfulfilled":"Nezpracováno","src.orders.components.OrderListFilter.1751787272":"Nezpracováno","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"Odkaz","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"Zrušit objednávku","src.orders.components.OrderDetailsPage.1854613983":"Zrušit objednávku","src.orders.components.OrderDraftPage.1854613983":"Zrušit objednávku","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"Zákazník","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"Zákazník","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"Stejné jako dodací adresa","src.orders.components.OrderCustomerEditDialog.1411666943":"Upravit podrobnosti o zákaznících","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.632633254":"","src.orders.components.OrderDraftCancelDialog.36681973":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"Produkt","src.orders.components.OrderUnfulfilledItems.1895667608":"Produkt","src.orders.components.OrderDraftDetailsProducts.2796503714":"Množství","src.orders.components.OrderFulfillment.2796503714":"Množství","src.orders.components.OrderFulfillmentDialog.2796503714":"Množství","src.orders.components.OrderUnfulfilledItems.2796503714":"Množství","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"Mezisoučet","src.orders.components.OrderPayment.781550514":"Mezisoučet","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"Vytvořit objednávku","src.orders.components.OrderListPage.2826235371":"Vytvořit objednávku","src.orders.components.OrderDraftListPage.551325728":"","src.orders.components.OrderDraftListPage.77765281":"","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"Přidat sledování","src.orders.components.OrderFulfillmentCancelDialog.732594284":"Zrušit zpracování","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"Zrušit zpracování","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"SKU","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"Sledovací číslo","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.4067959693":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"objednávka byla plně uhrazena","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"Objednávka byla odeslána","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"Platba","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2415661583":"","src.orders.views.OrderList.readyToCapture":"","src.orders.components.OrderListFilter.2222765704":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"Dopravné","src.productTypes.components.ProductTypeShipping.1325966144":"Dopravné","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"Dopravné","src.orders.components.OrderPayment.3768782744":"Paušální částka","src.orders.components.OrderPayment.2320183694":"Získaná částka","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"Získat","src.orders.components.OrderPayment.2845258362":"Vrácení platby","src.orders.components.OrderPayment.2444197639":"zrušit","src.orders.components.OrderPayment.3500506678":"Označit jako zaplacené","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"Množství","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.1542417144":"","src.products.components.ProductListPage.1542417144":"","src.products.views.1542417144":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"Zpracovat","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.OrderDraftList.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.OrderDraftList.1648805446":"","src.orders.views.OrderDraftList.1161115149":"","src.orders.views.OrderDraftList.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.1068617485":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"Titulek","src.pages.components.PageList.1124600214":"Titulek","src.pages.components.PageInfo.1116746286":"Obsah","src.translations.components.TranslationsPagesPage.1116746286":"Obsah","src.pages.components.PageList.3478065224":"slug","src.pages.components.PageSlug.3478065224":"slug","src.productTypes.components.ProductTypeAttributes.3478065224":"slug","src.pages.components.PageList.3767550649":"Nezveřejněno","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.3785394515":"","src.pages.views.3785394515":"","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.plugins.components.PluginInfo.3425535100":"","src.plugins.components.PluginsDetailsPage.3425535100":"","src.plugins.components.PluginInfo.1049131348":"","src.plugins.components.PluginInfo.4013064767":"","src.plugins.components.PluginsDetailsPage.3352026836":"","src.plugins.components.PluginsDetailsPage.2277745418":"","src.plugins.components.PluginsDetailsPage.1970881031":"","src.plugins.components.PluginSettings.1970881031":"","src.plugins.components.PluginsDetailsPage.4241018152":"","src.plugins.components.PluginsList.3247064221":"Aktivní","src.staff.components.StaffList.3247064221":"Aktivní","src.plugins.components.PluginsList.4120604650":"","src.plugins.components.PluginsList.666641390":"","src.plugins.views.100549097":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"Hodnoty","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"Obrázek","src.products.components.ProductVariantImages.3240888698":"Obrázek","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"","src.products.components.ProductVariantStock.3841616483":"","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListFilter.821159718":"","src.products.components.ProductListFilter.1421689426":"","src.products.components.ProductListFilter.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"Inventář","prodictStockInventoryLabel":"Inventář","src.products.components.ProductVariantStock.3490038570":"Inventář","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"","src.products.components.ProductVariants.2153006789":"","src.products.components.ProductVariantNavigation.2845381934":"Přidat variantu","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.3989383405":"","src.products.views.3989383405":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1591632382":"","src.products.views.1731766393":"","src.products.views.2880386427":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1217376589":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.3479705616":"","src.productTypes.components.ProductTypeListPage.1776073799":"","src.productTypes.components.ProductTypeListPage.3420445375":"","src.translations.components.TranslationsEntitiesListPage.3420445375":"","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.ProductTypeList.4080551769":"","src.productTypes.views.ProductTypeList.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRates.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2673544109":"","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.1947090060":"","src.shipping.views.ShippingZoneDetails.131963671":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"Klíč","src.siteSettings.components.SiteSettingsKeys.2446088470":"Klíč","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.1481503299":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"Oprávnění","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.797461521":"","src.staff.components.StaffListPage.2852350932":"","src.staff.components.StaffListPage.61043583":"","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"Uživatel je aktivní","src.staff.views.1308770978":"","src.staff.views.8878988":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.2105464697":"","src.translations.components.TranslationsEntitiesListPage.2559018090":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file diff --git a/locale/cs.po b/locale/cs.po index 2909cd9b3..757a2693c 100644 --- a/locale/cs.po +++ b/locale/cs.po @@ -5,7 +5,7 @@ # msgid "" msgstr "" -"POT-Creation-Date: 2019-09-06T13:56:36.897Z\n" +"POT-Creation-Date: 2019-09-16T15:25:09.340Z\n" "Last-Translator: Filip Pytloun , 2019\n" "Language-Team: Czech (https://www.transifex.com/mirumee/teams/34782/cs/)\n" "MIME-Version: 1.0\n" @@ -143,22 +143,6 @@ msgctxt "create new menu item, header" msgid "Add Item" msgstr "" -#. [menuCreateDialogHeader] - dialog header -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json -msgctxt "dialog header" -msgid "Add Menu" -msgstr "" - -#. [menuListPageAddMenu] - button -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json -msgctxt "button" -msgid "Add Menu" -msgstr "" - #. [src.siteSettings.components.SiteSettingsKeyDialog.1238948746] - dialog #. header #. defaultMessage is: @@ -168,14 +152,6 @@ msgctxt "dialog header" msgid "Add New Authorization Key" msgstr "" -#. [src.pages.components.PageDetailsPage.755314116] - page header -#. defaultMessage is: -#. Add Page -#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json -msgctxt "page header" -msgid "Add Page" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.2892088870] - dialog header #. defaultMessage is: #. Add Price Rate @@ -184,38 +160,6 @@ msgctxt "dialog header" msgid "Add Price Rate" msgstr "" -#. [src.orders.components.OrderProductAddDialog.2775402904] - dialog header -#. defaultMessage is: -#. Add Product -#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json -msgctxt "dialog header" -msgid "Add Product" -msgstr "" - -#. [src.products.components.ProductListPage.2775402904] - button -#. defaultMessage is: -#. Add Product -#: build/locale/src/products/components/ProductListPage/ProductListPage.json -msgctxt "button" -msgid "Add Product" -msgstr "" - -#. [src.discounts.components.SaleListPage.1742771332] - button -#. defaultMessage is: -#. Add Sale -#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json -msgctxt "button" -msgid "Add Sale" -msgstr "" - -#. [src.staff.components.StaffAddMemberDialog.3490059488] - dialog header -#. defaultMessage is: -#. Add Staff Member -#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json -msgctxt "dialog header" -msgid "Add Staff Member" -msgstr "" - #. [src.attributes.components.AttributeValueEditDialog.1841790893] - add #. attribute value #. defaultMessage is: @@ -225,14 +169,6 @@ msgctxt "add attribute value" msgid "Add Value" msgstr "" -#. [src.products.views.2178905289] - header -#. defaultMessage is: -#. Add Variant -#: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "header" -msgid "Add Variant" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.1397795758] - add weight #. based shipping method, dialog header #. defaultMessage is: @@ -250,14 +186,6 @@ msgctxt "button" msgid "Add address" msgstr "" -#. [src.attributes.components.AttributeListPage.350498821] - button -#. defaultMessage is: -#. Add attribute -#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json -msgctxt "button" -msgid "Add attribute" -msgstr "Přidat atribut" - #. [src.siteSettings.components.SiteSettingsKeyDialog.50561933] - button #. defaultMessage is: #. Add authentication @@ -266,14 +194,6 @@ msgctxt "button" msgid "Add authentication" msgstr "" -#. [src.categories.components.CategoryListPage.228151782] - button -#. defaultMessage is: -#. Add category -#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json -msgctxt "button" -msgid "Add category" -msgstr "Přidat kategorii" - #. [src.collections.components.CollectionCreatePage.3958681866] - page header #. defaultMessage is: #. Add collection @@ -282,14 +202,6 @@ msgctxt "page header" msgid "Add collection" msgstr "Přidat kolekci" -#. [src.collections.components.CollectionListPage.3958681866] - button -#. defaultMessage is: -#. Add collection -#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json -msgctxt "button" -msgid "Add collection" -msgstr "Přidat kolekci" - #. [src.customers.components.CustomerCreatePage.1934221653] - page header #. defaultMessage is: #. Add customer @@ -322,14 +234,6 @@ msgctxt "button" msgid "Add key" msgstr "" -#. [menuItemsAddItem] - add new menu item -#. defaultMessage is: -#. Add new item -#: build/locale/src/navigation/components/MenuItems/MenuItems.json -msgctxt "add new menu item" -msgid "Add new item" -msgstr "" - #. [menuItemsPlaceholder] #. defaultMessage is: #. Add new menu item to begin creating menu @@ -364,14 +268,6 @@ msgctxt "button" msgid "Add or Edit Link" msgstr "" -#. [src.pages.components.PageListPage.1767905232] - button -#. defaultMessage is: -#. Add page -#: build/locale/src/pages/components/PageListPage/PageListPage.json -msgctxt "button" -msgid "Add page" -msgstr "Přidat stranu" - #. [src.categories.components.CategoryProducts.3554578821] - button #. defaultMessage is: #. Add product @@ -380,14 +276,6 @@ msgctxt "button" msgid "Add product" msgstr "Přidat produkt" -#. [src.productTypes.components.ProductTypeListPage.889729490] - button -#. defaultMessage is: -#. Add product type -#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json -msgctxt "button" -msgid "Add product type" -msgstr "Přidat typ produktu" - #. [src.orders.components.OrderDraftDetails.2528459381] - button #. defaultMessage is: #. Add products @@ -396,14 +284,6 @@ msgctxt "button" msgid "Add products" msgstr "" -#. [src.shipping.components.ShippingZoneRates.352297149] - button -#. defaultMessage is: -#. Add rate -#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json -msgctxt "button" -msgid "Add rate" -msgstr "" - #. [src.categories.components.CategoryCreatePage.2563994280] #. defaultMessage is: #. Add search engine title and description to make this category easier to @@ -465,30 +345,6 @@ msgctxt "button" msgid "Add shipping carrier" msgstr "" -#. [src.shipping.components.ShippingZonesList.2474410767] - button -#. defaultMessage is: -#. Add shipping zone -#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json -msgctxt "button" -msgid "Add shipping zone" -msgstr "Přidat oblast doručení" - -#. [src.staff.components.StaffListPage.802625341] - button -#. defaultMessage is: -#. Add staff member -#: build/locale/src/staff/components/StaffListPage/StaffListPage.json -msgctxt "button" -msgid "Add staff member" -msgstr "Přidat člena personálu" - -#. [src.categories.components.CategoryList.435697837] - button -#. defaultMessage is: -#. Add subcategory -#: build/locale/src/categories/components/CategoryList/CategoryList.json -msgctxt "button" -msgid "Add subcategory" -msgstr "" - #. [src.attributes.components.AttributeProperties.673770329] - add attribute #. as column in product list table #. defaultMessage is: @@ -516,35 +372,14 @@ msgctxt "dialog header" msgid "Add tracking code" msgstr "" -#. [src.attributes.components.AttributeValues.254756045] - add attribute value -#. button -#. defaultMessage is: -#. Add value -#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json -msgctxt "add attribute value button" -msgid "Add value" -msgstr "" - #. [src.products.components.ProductVariantNavigation.2845381934] - button #. defaultMessage is: #. Add variant -#. [src.products.components.ProductVariants.2845381934] - button -#. defaultMessage is: -#. Add variant #: build/locale/src/products/components/ProductVariantNavigation/ProductVariantNavigation.json -#: build/locale/src/products/components/ProductVariants/ProductVariants.json msgctxt "button" msgid "Add variant" msgstr "Přidat variantu" -#. [src.discounts.components.VoucherListPage.1536809153] - button -#. defaultMessage is: -#. Add voucher -#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json -msgctxt "button" -msgid "Add voucher" -msgstr "Přidat voucher" - #. [src.attributes.views.AttributeDetails.634268988] - added new attribute #. value #. defaultMessage is: @@ -602,14 +437,6 @@ msgctxt "description" msgid "Address line 2" msgstr "" -#. [src.customers.components.CustomerAddress.1320082647] - addres card header -#. defaultMessage is: -#. Address {addressNumber} -#: build/locale/src/customers/components/CustomerAddress/CustomerAddress.json -msgctxt "addres card header" -msgid "Address {addressNumber}" -msgstr "" - #. [src.attributes.components.AttributeValues.1565474525] - attribute values #. list: slug column header #. defaultMessage is: @@ -659,6 +486,46 @@ msgctxt "tax rate" msgid "Agricultural supplies" msgstr "" +#. [src.attributes.components.AttributeListPage.2417065806] - tab name +#. defaultMessage is: +#. All Attributes +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "tab name" +msgid "All Attributes" +msgstr "" + +#. [src.categories.components.CategoryListPage.4294878092] - tab name +#. defaultMessage is: +#. All Categories +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "tab name" +msgid "All Categories" +msgstr "" + +#. [src.collections.components.CollectionListPage.1631917001] - tab name +#. defaultMessage is: +#. All Collections +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "tab name" +msgid "All Collections" +msgstr "" + +#. [src.customers.components.CustomerListPage.477293306] - tab name +#. defaultMessage is: +#. All Customers +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "tab name" +msgid "All Customers" +msgstr "" + +#. [src.orders.components.OrderDraftListPage.551325728] - tab name +#. defaultMessage is: +#. All Drafts +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "tab name" +msgid "All Drafts" +msgstr "" + #. [src.orders.components.OrderListPage.875489544] - tab name #. defaultMessage is: #. All Orders @@ -676,22 +543,54 @@ msgctxt "section header" msgid "All Photos" msgstr "" -#. [src.products.components.ProductListPage.821159718] - tab name +#. [src.productTypes.components.ProductTypeListPage.1776073799] - tab name +#. defaultMessage is: +#. All Product Types +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "tab name" +msgid "All Product Types" +msgstr "" + +#. [src.products.components.ProductListFilter.821159718] - tab name #. defaultMessage is: #. All Products -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "tab name" msgid "All Products" msgstr "" -#. [src.categories.components.CategoryList.3229914152] - section header +#. [src.discounts.components.SaleListPage.3907768880] - tab name +#. defaultMessage is: +#. All Sales +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "tab name" +msgid "All Sales" +msgstr "" + +#. [src.staff.components.StaffListPage.2852350932] - tab name +#. defaultMessage is: +#. All Staff Members +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "tab name" +msgid "All Staff Members" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.3229914152] - section header #. defaultMessage is: #. All Subcategories -#: build/locale/src/categories/components/CategoryList/CategoryList.json +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json msgctxt "section header" msgid "All Subcategories" msgstr "" +#. [src.discounts.components.VoucherListPage.1112241061] - tab name +#. defaultMessage is: +#. All Vouchers +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "tab name" +msgid "All Vouchers" +msgstr "" + #. [src.taxes.components.TaxConfiguration.142803418] #. defaultMessage is: #. All products prices are entered with tax included @@ -799,6 +698,14 @@ msgctxt "description" msgid "Are you sure you want to delete collection's image?" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.36681973] +#. defaultMessage is: +#. Are you sure you want to delete draft #{number}? +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "description" +msgid "Are you sure you want to delete draft #{number}?" +msgstr "" + #. [menuDetailsDeleteMenuContent] #. defaultMessage is: #. Are you sure you want to delete menu {menuName}? @@ -815,6 +722,14 @@ msgctxt "description" msgid "Are you sure you want to delete this address from users address book?" msgstr "" +#. [src.products.views.2880386427] +#. defaultMessage is: +#. Are you sure you want to delete this image? +#: build/locale/src/products/views/ProductImage.json +msgctxt "description" +msgid "Are you sure you want to delete this image?" +msgstr "" + #. [src.attributes.components.AttributeDeleteDialog.3738429348] - dialog #. content #. defaultMessage is: @@ -865,12 +780,7 @@ msgstr "" #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this attribute} #. other{{displayQuantity} categories}}? -#. [src.categories.views.844574071] -#. defaultMessage is: -#. Are you sure you want to delete {counter,plural,one{this attribute} -#. other{{displayQuantity} categories}}? #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this attribute} " @@ -888,22 +798,33 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.2497542455] +#. [src.categories.views.CategoryList.2144707585] +#. defaultMessage is: +#. Are you sure you want to delete {counter,plural,one{this category} +#. other{{displayQuantity} categories}}? +#: build/locale/src/categories/views/CategoryList/CategoryList.json +msgctxt "description" +msgid "" +"Are you sure you want to delete {counter,plural,one{this category} " +"other{{displayQuantity} categories}}?" +msgstr "" + +#. [src.collections.views.CollectionList.2497542455] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this collection} " "other{{displayQuantity} collections}}?" msgstr "" -#. [src.customers.views.409347866] +#. [src.customers.views.CustomerList.409347866] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this customer} #. other{{displayQuantity} customers}}? -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this customer} " @@ -921,11 +842,11 @@ msgid "" "other{{displayQuantity} menus}}?" msgstr "" -#. [src.orders.views.1389231130] - dialog content +#. [src.orders.views.OrderDraftList.1389231130] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this order draft} #. other{{displayQuantity} orderDrafts}}? -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this order draft} " @@ -943,11 +864,11 @@ msgid "" "other{{displayQuantity} pages}}?" msgstr "" -#. [src.productTypes.views.2294091098] - dialog content +#. [src.productTypes.views.ProductTypeList.2294091098] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this product type} #. other{{displayQuantity} product types}}? -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this product type} " @@ -965,11 +886,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.discounts.views.2516361175] - dialog content +#. [src.discounts.views.SaleList.2516361175] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this sale} #. other{{displayQuantity} sales}}? -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this sale} " @@ -998,17 +919,33 @@ msgid "" "other{{displayQuantity} variants}}?" msgstr "" -#. [src.discounts.views.1791926983] - dialog content +#. [src.discounts.views.VoucherList.1791926983] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this voucher} #. other{{displayQuantity} vouchers}}? -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this voucher} " "other{{displayQuantity} vouchers}}?" msgstr "" +#. [src.shipping.views.ShippingZoneDetails.131963671] - unassign country +#. defaultMessage is: +#. Are you sure you want to delete {countryName} from this shipping zone? +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country" +msgid "Are you sure you want to delete {countryName} from this shipping zone?" +msgstr "" + +#. [src.staff.views.8878988] +#. defaultMessage is: +#. Are you sure you want to delete {email} from staff members? +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "description" +msgid "Are you sure you want to delete {email} from staff members?" +msgstr "" + #. [src.customers.views.1927691511] - delete customer, dialog content #. defaultMessage is: #. Are you sure you want to delete {email}? @@ -1123,11 +1060,11 @@ msgctxt "description" msgid "Are you sure you want to mark this order as paid?" msgstr "" -#. [src.collections.views.1348793822] +#. [src.collections.views.CollectionList.1348793822] #. defaultMessage is: #. Are you sure you want to publish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to publish {counter,plural,one{this collection} " @@ -1156,30 +1093,6 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.orders.components.OrderDraftCancelDialog.3199827590] -#. defaultMessage is: -#. Are you sure you want to remove draft #{number}? -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "description" -msgid "Are you sure you want to remove draft #{number}?" -msgstr "" - -#. [src.products.views.672103788] -#. defaultMessage is: -#. Are you sure you want to remove this image? -#: build/locale/src/products/views/ProductImage.json -msgctxt "description" -msgid "Are you sure you want to remove this image?" -msgstr "" - -#. [src.shipping.views.ShippingZoneDetails.1790261672] - unassign country -#. defaultMessage is: -#. Are you sure you want to remove {countryName} from this shipping zone? -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country" -msgid "Are you sure you want to remove {countryName} from this shipping zone?" -msgstr "" - #. [src.staff.views.3945766678] #. defaultMessage is: #. Are you sure you want to remove {email} avatar? @@ -1188,14 +1101,6 @@ msgctxt "description" msgid "Are you sure you want to remove {email} avatar?" msgstr "" -#. [src.staff.views.2728048444] -#. defaultMessage is: -#. Are you sure you want to remove {email} from staff members? -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "description" -msgid "Are you sure you want to remove {email} from staff members?" -msgstr "" - #. [src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450] #. defaultMessage is: #. Are you sure you want to unassign {attributeName} from {productTypeName}? @@ -1276,11 +1181,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.3944356444] +#. [src.collections.views.CollectionList.3944356444] #. defaultMessage is: #. Are you sure you want to unpublish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to unpublish {counter,plural,one{this collection} " @@ -1441,6 +1346,15 @@ msgctxt "button" msgid "Assign products" msgstr "" +#. [src.attributes.components.AttributeValues.351422234] - assign attribute +#. value button +#. defaultMessage is: +#. Assign value +#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json +msgctxt "assign attribute value button" +msgid "Assign value" +msgstr "" + #. [src.attributes.components.AttributeDetails.3605174225] - attribute's slug #. short code label #. defaultMessage is: @@ -1519,6 +1433,14 @@ msgctxt "product attributes, section header" msgid "Attributes" msgstr "Atributy" +#. [src.configuration.2326418019] +#. defaultMessage is: +#. Attributes and Product Typess +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Attributes and Product Typess" +msgstr "" + #. [src.attributes.views.AttributeList.3218248395] - deleted multiple #. attributes #. defaultMessage is: @@ -2302,6 +2224,22 @@ msgctxt "description" msgid "Country area" msgstr "" +#. [menuCreateDialogHeader] - dialog header +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json +msgctxt "dialog header" +msgid "Create Menu" +msgstr "" + +#. [menuListPageAddMenu] - button +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json +msgctxt "button" +msgid "Create Menu" +msgstr "" + #. [src.attributes.components.AttributePage.2855501559] - page title #. defaultMessage is: #. Create New Attribute @@ -2326,6 +2264,30 @@ msgctxt "header" msgid "Create New Shipping Zone" msgstr "" +#. [src.pages.components.PageDetailsPage.1068617485] - page header +#. defaultMessage is: +#. Create Page +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page header" +msgid "Create Page" +msgstr "" + +#. [src.orders.components.OrderProductAddDialog.1542417144] - dialog header +#. defaultMessage is: +#. Create Product +#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json +msgctxt "dialog header" +msgid "Create Product" +msgstr "" + +#. [src.products.components.ProductListPage.1542417144] - button +#. defaultMessage is: +#. Create Product +#: build/locale/src/products/components/ProductListPage/ProductListPage.json +msgctxt "button" +msgid "Create Product" +msgstr "" + #. [src.products.views.1542417144] - window title #. defaultMessage is: #. Create Product @@ -2358,11 +2320,19 @@ msgctxt "page header" msgid "Create Sale" msgstr "" -#. [src.products.views.2362587265] - window title +#. [src.discounts.components.SaleListPage.3866518732] - button +#. defaultMessage is: +#. Create Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "button" +msgid "Create Sale" +msgstr "" + +#. [src.products.views.2362587265] - header #. defaultMessage is: #. Create Variant #: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "window title" +msgctxt "header" msgid "Create Variant" msgstr "" @@ -2374,6 +2344,22 @@ msgctxt "page header" msgid "Create Voucher" msgstr "" +#. [src.attributes.components.AttributeListPage.3824684885] - button +#. defaultMessage is: +#. Create attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "button" +msgid "Create attribute" +msgstr "" + +#. [src.categories.components.CategoryListPage.1140231710] - button +#. defaultMessage is: +#. Create category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "button" +msgid "Create category" +msgstr "" + #. [src.categories.views.1140231710] - window title #. defaultMessage is: #. Create category @@ -2382,6 +2368,14 @@ msgctxt "window title" msgid "Create category" msgstr "" +#. [src.collections.components.CollectionListPage.686910896] - button +#. defaultMessage is: +#. Create collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "button" +msgid "Create collection" +msgstr "" + #. [src.collections.views.686910896] - window title #. defaultMessage is: #. Create collection @@ -2398,6 +2392,14 @@ msgctxt "window title" msgid "Create customer" msgstr "" +#. [menuItemsAddItem] - add new menu item +#. defaultMessage is: +#. Create new item +#: build/locale/src/navigation/components/MenuItems/MenuItems.json +msgctxt "add new menu item" +msgid "Create new item" +msgstr "" + #. [src.orders.components.OrderDraftListPage.2826235371] - button #. defaultMessage is: #. Create order @@ -2410,6 +2412,14 @@ msgctxt "button" msgid "Create order" msgstr "Vytvořit objednávku" +#. [src.pages.components.PageListPage.3785394515] - button +#. defaultMessage is: +#. Create page +#: build/locale/src/pages/components/PageListPage/PageListPage.json +msgctxt "button" +msgid "Create page" +msgstr "" + #. [src.pages.views.3785394515] - header #. defaultMessage is: #. Create page @@ -2421,11 +2431,55 @@ msgstr "" #. [src.shipping.components.ShippingZoneRateDialog.16061680] - button #. defaultMessage is: #. Create rate +#. [src.shipping.components.ShippingZoneRates.16061680] - button +#. defaultMessage is: +#. Create rate #: build/locale/src/shipping/components/ShippingZoneRateDialog/ShippingZoneRateDialog.json +#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json msgctxt "button" msgid "Create rate" msgstr "" +#. [src.shipping.components.ShippingZonesList.2673544109] - button +#. defaultMessage is: +#. Create shipping zone +#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json +msgctxt "button" +msgid "Create shipping zone" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.770296100] - button +#. defaultMessage is: +#. Create subcategory +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json +msgctxt "button" +msgid "Create subcategory" +msgstr "" + +#. [src.products.components.ProductVariants.3989383405] - button +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/components/ProductVariants/ProductVariants.json +msgctxt "button" +msgid "Create variant" +msgstr "" + +#. [src.products.views.3989383405] - window title +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/views/ProductVariantCreate.json +msgctxt "window title" +msgid "Create variant" +msgstr "" + +#. [src.discounts.components.VoucherListPage.614836274] - button +#. defaultMessage is: +#. Create voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "button" +msgid "Create voucher" +msgstr "" + #. [src.collections.views.1597339737] #. defaultMessage is: #. Created collection @@ -2472,7 +2526,11 @@ msgstr "" #. [src.components.FilterBar.2340527467] #. defaultMessage is: #. Custom Filter +#. [src.components.SearchBar.2340527467] +#. defaultMessage is: +#. Custom Filter #: build/locale/src/components/FilterBar/FilterBar.json +#: build/locale/src/components/SearchBar/SearchBar.json msgctxt "description" msgid "Custom Filter" msgstr "" @@ -2728,10 +2786,18 @@ msgctxt "dialog title" msgid "Delete Collection" msgstr "" -#. [src.orders.views.1161115149] - dialog header +#. [src.products.views.1731766393] - dialog header +#. defaultMessage is: +#. Delete Image +#: build/locale/src/products/views/ProductImage.json +msgctxt "dialog header" +msgid "Delete Image" +msgstr "" + +#. [src.orders.views.OrderDraftList.1161115149] - dialog header #. defaultMessage is: #. Delete Order Drafts -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog header" msgid "Delete Order Drafts" msgstr "" @@ -2769,10 +2835,10 @@ msgctxt "dialog header" msgid "Delete Product Type" msgstr "" -#. [src.productTypes.views.4080551769] - dialog header +#. [src.productTypes.views.ProductTypeList.4080551769] - dialog header #. defaultMessage is: #. Delete Product Types -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog header" msgid "Delete Product Types" msgstr "" @@ -2801,10 +2867,10 @@ msgctxt "dialog header" msgid "Delete Sale" msgstr "" -#. [src.discounts.views.2809303671] - dialog header +#. [src.discounts.views.SaleList.2809303671] - dialog header #. defaultMessage is: #. Delete Sales -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog header" msgid "Delete Sales" msgstr "" @@ -2818,9 +2884,13 @@ msgctxt "custom search delete, dialog header" msgid "Delete Search" msgstr "" +#. [src.components.Filter.2173195312] - button +#. defaultMessage is: +#. Delete Search #. [src.components.TableFilter.2173195312] - button #. defaultMessage is: #. Delete Search +#: build/locale/src/components/Filter/FilterSearch.json #: build/locale/src/components/TableFilter/FilterChips.json msgctxt "button" msgid "Delete Search" @@ -2887,10 +2957,10 @@ msgctxt "dialog header" msgid "Delete Voucher" msgstr "" -#. [src.discounts.views.367317371] - dialog header +#. [src.discounts.views.VoucherList.367317371] - dialog header #. defaultMessage is: #. Delete Vouchers -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog header" msgid "Delete Vouchers" msgstr "" @@ -2924,11 +2994,11 @@ msgstr "" #. [src.categories.views.712767046] - dialog title #. defaultMessage is: #. Delete categories -#. [src.categories.views.712767046] - dialog title +#. [src.categories.views.CategoryList.712767046] - dialog title #. defaultMessage is: #. Delete categories #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "dialog title" msgid "Delete categories" msgstr "" @@ -2945,10 +3015,10 @@ msgctxt "dialog title" msgid "Delete category" msgstr "" -#. [src.collections.views.3817188998] - dialog title +#. [src.collections.views.CollectionList.3817188998] - dialog title #. defaultMessage is: #. Delete collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Delete collections" msgstr "" @@ -2961,14 +3031,31 @@ msgctxt "dialog header" msgid "Delete customer" msgstr "" -#. [src.customers.views.1946482599] - dialog header +#. [src.customers.views.CustomerList.1946482599] - dialog header #. defaultMessage is: #. Delete customers -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "dialog header" msgid "Delete customers" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.632633254] - dialog header +#. defaultMessage is: +#. Delete draft order +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "dialog header" +msgid "Delete draft order" +msgstr "" + +#. [src.shipping.views.ShippingZoneDetails.1947090060] - unassign country, +#. dialog header +#. defaultMessage is: +#. Delete from shipping zone +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country, dialog header" +msgid "Delete from shipping zone" +msgstr "" + #. [src.collections.views.942133001] - dialog title #. defaultMessage is: #. Delete image @@ -3029,6 +3116,14 @@ msgctxt "description" msgid "Deleted collection" msgstr "Odstraněna kolekce" +#. [src.orders.views.OrderDraftList.1648805446] +#. defaultMessage is: +#. Deleted draft orders +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json +msgctxt "description" +msgid "Deleted draft orders" +msgstr "" + #. [menuListDeletedMenu] #. defaultMessage is: #. Deleted menu @@ -3628,14 +3723,6 @@ msgctxt "order history message" msgid "Fulfilled {quantity} items" msgstr "" -#. [src.orders.components.OrderListFilter.2943502192] - order -#. defaultMessage is: -#. Fulfillment Status -#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json -msgctxt "order" -msgid "Fulfillment Status" -msgstr "" - #. [src.orders.components.OrderHistory.3081292385] - order history message #. defaultMessage is: #. Fulfillment confirmation was sent to customer @@ -3793,12 +3880,12 @@ msgid "If empty, the preview shows what will be autogenerated." msgstr "" "Pokud je prázdný, v náhledu se zobrazí, co bude automaticky generováno." -#. [src.attributes.components.AttributeProperties.2519239682] +#. [src.attributes.components.AttributeProperties.4048785456] #. defaultMessage is: -#. If enable this attribute can be used as a column in product table. +#. If enabled this attribute can be used as a column in product table. #: build/locale/src/attributes/components/AttributeProperties/AttributeProperties.json msgctxt "description" -msgid "If enable this attribute can be used as a column in product table." +msgid "If enabled this attribute can be used as a column in product table." msgstr "" #. [src.attributes.components.AttributeProperties.787251583] @@ -3904,6 +3991,22 @@ msgctxt "product variant stock" msgid "Inventory" msgstr "Inventář" +#. [src.staff.components.StaffAddMemberDialog.1481503299] - dialog header +#. defaultMessage is: +#. Invite Staff Member +#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json +msgctxt "dialog header" +msgid "Invite Staff Member" +msgstr "" + +#. [src.staff.components.StaffListPage.797461521] - button +#. defaultMessage is: +#. Invite staff member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "button" +msgid "Invite staff member" +msgstr "" + #. [src.productTypes.components.ProductTypeShipping.2143413921] - switch #. button #. defaultMessage is: @@ -4256,6 +4359,14 @@ msgctxt "voucher requirement" msgid "Minimum quantity of items" msgstr "" +#. [src.configuration.1233229030] +#. defaultMessage is: +#. Miscellaneous +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Miscellaneous" +msgstr "" + #. [src.attributes.components.AttributeDetails.3334509011] - product attribute #. type #. defaultMessage is: @@ -5088,6 +5199,14 @@ msgctxt "description" msgid "Order History" msgstr "" +#. [src.orders.components.OrderListFilter.2222765704] +#. defaultMessage is: +#. Order Status +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +msgctxt "description" +msgid "Order Status" +msgstr "" + #. [src.orders.components.OrderHistory.1230178536] - order history message #. defaultMessage is: #. Order address was updated @@ -5104,13 +5223,13 @@ msgctxt "order history message" msgid "Order confirmation was sent to customer" msgstr "" -#. [src.orders.views.1872939752] +#. [src.orders.views.OrderDraftList.1872939752] #. defaultMessage is: #. Order draft succesfully created #. [src.orders.views.OrderList.1872939752] #. defaultMessage is: #. Order draft succesfully created -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json #: build/locale/src/orders/views/OrderList/OrderList.json msgctxt "description" msgid "Order draft succesfully created" @@ -5775,6 +5894,14 @@ msgctxt "description" msgid "Product Name" msgstr "" +#. [src.configuration.3655543906] +#. defaultMessage is: +#. Product Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Product Settings" +msgstr "" + #. [src.discounts.components.DiscountProducts.4257289053] #. defaultMessage is: #. Product Type @@ -5933,12 +6060,12 @@ msgctxt "order history message" msgid "Products were added to draft order" msgstr "" -#. [src.orders.components.OrderHistory.2574162126] - order history message +#. [src.orders.components.OrderHistory.4067959693] - order history message #. defaultMessage is: -#. Products were removed from draft order +#. Products were deleted from draft order #: build/locale/src/orders/components/OrderHistory/OrderHistory.json msgctxt "order history message" -msgid "Products were removed from draft order" +msgid "Products were deleted from draft order" msgstr "" #. [src.properties] @@ -5965,10 +6092,10 @@ msgctxt "description" msgid "Provided email address does not exist in our database." msgstr "" -#. [src.collections.views.1547167026] - publish collections +#. [src.collections.views.CollectionList.1547167026] - publish collections #. defaultMessage is: #. Publish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "publish collections" msgid "Publish" msgstr "Zveřejnit" @@ -6005,10 +6132,10 @@ msgctxt "dialog header" msgid "Publish Products" msgstr "" -#. [src.collections.views.2823425739] - dialog title +#. [src.collections.views.CollectionList.2823425739] - dialog title #. defaultMessage is: #. Publish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Publish collections" msgstr "" @@ -6182,6 +6309,18 @@ msgctxt "shipping method price" msgid "Rate Price" msgstr "" +#. [src.orders.components.OrderListFilter.2415661583] - order status +#. defaultMessage is: +#. Ready to Capture +#. [src.orders.views.OrderList.readyToCapture] - order status +#. defaultMessage is: +#. Ready to Capture +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +#: build/locale/src/orders/views/OrderList/filters.json +msgctxt "order status" +msgid "Ready to Capture" +msgstr "" + #. [src.customers.components.CustomerOrders.3878642352] - section header #. defaultMessage is: #. Recent orders @@ -6230,22 +6369,14 @@ msgctxt "switch button" msgid "Release all stock allocated to this order" msgstr "" -#. [src.auth.components.LoginPage.3182284913] - login -#. defaultMessage is: -#. Remember me -#: build/locale/src/auth/components/LoginPage/LoginPage.json -msgctxt "login" -msgid "Remember me" -msgstr "" - #. [src.categories.views.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. -#. [src.categories.views.3488150607] +#. [src.categories.views.CategoryList.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "description" msgid "Remember this will also delete all products assigned to this category." msgstr "" @@ -6258,39 +6389,6 @@ msgctxt "button" msgid "Remove" msgstr "Odstranit" -#. [src.products.views.490753666] - dialog header -#. defaultMessage is: -#. Remove Image -#: build/locale/src/products/views/ProductImage.json -msgctxt "dialog header" -msgid "Remove Image" -msgstr "" - -#. [src.orders.components.OrderDraftCancelDialog.500287069] - dialog header -#. defaultMessage is: -#. Remove draft order -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "dialog header" -msgid "Remove draft order" -msgstr "Odstranění pořadí návrhů" - -#. [src.shipping.views.ShippingZoneDetails.254167659] - unassign country, -#. dialog header -#. defaultMessage is: -#. Remove from shipping zone -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country, dialog header" -msgid "Remove from shipping zone" -msgstr "" - -#. [src.orders.views.3880993240] -#. defaultMessage is: -#. Removed draft orders -#: build/locale/src/orders/views/OrderDraftList.json -msgctxt "description" -msgid "Removed draft orders" -msgstr "" - #. [src.pages.views.1457312643] #. defaultMessage is: #. Removed page @@ -6456,6 +6554,18 @@ msgctxt "button" msgid "Save" msgstr "Uložit" +#. [src.components.Filter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#. [src.components.TableFilter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#: build/locale/src/components/Filter/FilterSearch.json +#: build/locale/src/components/TableFilter/FilterChips.json +msgctxt "button" +msgid "Save Custom Search" +msgstr "" + #. [src.components.SaveFilterTabDialog.1514415736] - save filter tab, header #. defaultMessage is: #. Save Custom Search @@ -6464,14 +6574,6 @@ msgctxt "save filter tab, header" msgid "Save Custom Search" msgstr "" -#. [src.components.TableFilter.1514415736] - button -#. defaultMessage is: -#. Save Custom Search -#: build/locale/src/components/TableFilter/FilterChips.json -msgctxt "button" -msgid "Save Custom Search" -msgstr "" - #. [src.products.components.ProductVariantCreatePage.2853608829] - button #. defaultMessage is: #. Save variant @@ -6488,6 +6590,14 @@ msgctxt "description" msgid "Saved changes" msgstr "" +#. [src.attributes.components.AttributeListPage.3916653510] +#. defaultMessage is: +#. Search Attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "description" +msgid "Search Attribute" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.902296540] #. defaultMessage is: #. Search Attributes @@ -6504,10 +6614,30 @@ msgctxt "description" msgid "Search Categories" msgstr "" +#. [src.categories.components.CategoryListPage.3841025483] +#. defaultMessage is: +#. Search Category +#. [src.translations.components.TranslationsEntitiesListPage.3841025483] +#. defaultMessage is: +#. Search Category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Category" +msgstr "" + +#. [src.collections.components.CollectionListPage.4057224233] +#. defaultMessage is: +#. Search Collection #. [src.components.AssignCollectionDialog.4057224233] #. defaultMessage is: #. Search Collection +#. [src.translations.components.TranslationsEntitiesListPage.4057224233] +#. defaultMessage is: +#. Search Collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json #: build/locale/src/components/AssignCollectionDialog/AssignCollectionDialog.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json msgctxt "description" msgid "Search Collection" msgstr "" @@ -6520,6 +6650,14 @@ msgctxt "description" msgid "Search Countries" msgstr "" +#. [src.customers.components.CustomerListPage.1643417013] +#. defaultMessage is: +#. Search Customer +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "description" +msgid "Search Customer" +msgstr "" + #. [src.orders.components.OrderCustomer.2433460203] #. defaultMessage is: #. Search Customers @@ -6528,6 +6666,14 @@ msgctxt "description" msgid "Search Customers" msgstr "" +#. [src.orders.components.OrderDraftListPage.77765281] +#. defaultMessage is: +#. Search Draft +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "description" +msgid "Search Draft" +msgstr "" + #. [src.translations.components.TranslationsCategoriesPage.1406947243] #. defaultMessage is: #. Search Engine Description @@ -6608,6 +6754,34 @@ msgctxt "description" msgid "Search Orders..." msgstr "" +#. [src.translations.components.TranslationsEntitiesListPage.2559018090] +#. defaultMessage is: +#. Search Page +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Page" +msgstr "" + +#. [src.translations.components.TranslationsEntitiesListPage.2105464697] +#. defaultMessage is: +#. Search Product +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product" +msgstr "" + +#. [src.productTypes.components.ProductTypeListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#. [src.translations.components.TranslationsEntitiesListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product Type" +msgstr "" + #. [src.components.AssignProductDialog.2850255786] #. defaultMessage is: #. Search Products @@ -6620,14 +6794,46 @@ msgctxt "description" msgid "Search Products" msgstr "" -#. [src.products.components.ProductListPage.3550330425] +#. [src.products.components.ProductListFilter.3550330425] #. defaultMessage is: #. Search Products... -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Search Products..." msgstr "" +#. [src.discounts.components.SaleListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#. [src.translations.components.TranslationsEntitiesListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Sale" +msgstr "" + +#. [src.staff.components.StaffListPage.61043583] +#. defaultMessage is: +#. Search Staff Member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "description" +msgid "Search Staff Member" +msgstr "" + +#. [src.discounts.components.VoucherListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#. [src.translations.components.TranslationsEntitiesListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Voucher" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.524117994] #. defaultMessage is: #. Search by attribute name @@ -6734,10 +6940,10 @@ msgctxt "description" msgid "Select all orders where:" msgstr "" -#. [src.products.components.ProductListPage.1421689426] +#. [src.products.components.ProductListFilter.1421689426] #. defaultMessage is: #. Select all products where: -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Select all products where:" msgstr "" @@ -6823,6 +7029,14 @@ msgctxt "description" msgid "Set plugin as Active" msgstr "" +#. [src.components.VisibilityCard.292404896] +#. defaultMessage is: +#. Set publication date +#: build/locale/src/components/VisibilityCard/VisibilityCard.json +msgctxt "description" +msgid "Set publication date" +msgstr "" + #. [src.discounts.shipment] - voucher discount #. defaultMessage is: #. Shipment @@ -7088,6 +7302,14 @@ msgctxt "staff section name" msgid "Staff Members" msgstr "" +#. [src.configuration.3140151600] +#. defaultMessage is: +#. Staff Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Staff Settings" +msgstr "" + #. [src.standard] - tax rate #. defaultMessage is: #. Standard @@ -8072,10 +8294,10 @@ msgctxt "payment status" msgid "Unpaid" msgstr "" -#. [src.collections.views.2237014112] - unpublish collections +#. [src.collections.views.CollectionList.2237014112] - unpublish collections #. defaultMessage is: #. Unpublish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "unpublish collections" msgid "Unpublish" msgstr "Nezveřejňovat" @@ -8112,10 +8334,10 @@ msgctxt "dialog header" msgid "Unpublish Products" msgstr "" -#. [src.collections.views.2637364047] - dialog title +#. [src.collections.views.CollectionList.2637364047] - dialog title #. defaultMessage is: #. Unpublish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Unpublish collections" msgstr "" @@ -8615,6 +8837,22 @@ msgctxt "description" msgid "ZIP / Postal code" msgstr "" +#. [src.productTypes.components.ProductTypeListPage.3479705616] - button +#. defaultMessage is: +#. create product type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "button" +msgid "create product type" +msgstr "" + +#. [src.staff.views.1308770978] - dialog header +#. defaultMessage is: +#. delete Staff User +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "dialog header" +msgid "delete Staff User" +msgstr "" + #. [orderPaymentVATDoesNotApply] - vat not included in order price #. defaultMessage is: #. does not apply @@ -8688,19 +8926,35 @@ msgctxt "product status is set as" msgid "is set as" msgstr "" -#. [src.staff.views.2240444792] - dialog header -#. defaultMessage is: -#. remove Staff User -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "dialog header" -msgid "remove Staff User" -msgstr "" - -#. [src.components.VisibilityCard.1815688500] +#. [src.collections.components.CollectionCreatePage.1815688500] - collection #. defaultMessage is: #. since {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.1815688500] - collection +#. defaultMessage is: +#. since {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "since {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.1815688500] - page +#. defaultMessage is: +#. since {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "since {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#. [src.products.components.ProductUpdatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "since {date}" msgstr "" @@ -8728,11 +8982,35 @@ msgctxt "weight" msgid "to {value} {unit}" msgstr "" -#. [src.components.VisibilityCard.2001551496] +#. [src.collections.components.CollectionCreatePage.2001551496] - collection #. defaultMessage is: #. will be visible from {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.2001551496] - collection +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "will be visible from {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.2001551496] - page +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "will be visible from {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#. [src.products.components.ProductUpdatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "will be visible from {date}" msgstr "" diff --git a/locale/da.json b/locale/da.json index 8dfe419ff..b3caa3cb2 100644 --- a/locale/da.json +++ b/locale/da.json @@ -1 +1 @@ -{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.350498821":"Tilføj attribut","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.2519239682":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"Navn","src.categories.components.CategoryProducts.636461959":"Navn","src.collections.components.CollectionProducts.636461959":"Navn","src.products.components.ProductDetailsForm.636461959":"Navn","src.collections.components.CollectionDetails.636461959":"Navn","src.components.ProductList.636461959":"Navn","src.discounts.components.SaleInfo.636461959":"Navn","src.discounts.components.SaleList.636461959":"Navn","src.discounts.components.SaleSummary.636461959":"Navn","menuItemDialogNameLabel":"Navn","src.products.components.ProductVariants.636461959":"Navn","src.shipping.components.ShippingZoneRates.636461959":"Navn","src.shipping.components.ShippingZonesList.636461959":"Navn","src.staff.components.StaffList.636461959":"Navn","src.translations.components.TranslationsEntitiesList.636461959":"Navn","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.254756045":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.3182284913":"","src.auth.components.LoginPage.109182747":"Login","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"","src.categories.views.2004894945":"","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.3229914152":"","src.categories.components.CategoryList.435697837":"","src.categories.components.CategoryList.2159874182":"Subkategorier","src.categories.components.CategoryUpdatePage.2159874182":"Subkategorier","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.228151782":"Tilføj kategori","src.categories.components.CategoryProducts.2968663655":"Produkter","src.categories.components.CategoryUpdatePage.2968663655":"Produkter","src.discounts.components.DiscountCategories.2968663655":"Produkter","src.discounts.components.DiscountCollections.2968663655":"Produkter","src.products":"Produkter","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryProducts.3554578821":"Tilføj produkt","src.categories.components.CategoryProductsCard.3554578821":"Tilføj produkt","src.categories.components.CategoryProducts.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProducts.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.categories.components.CategoryProductsCard.4164156574":"","src.categories.views.1754466114":"","src.categories.views.1140231710":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.712767046":"","src.categories.views.299584400":"","src.categories.views.844574071":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.collections.components.CollectionCreatePage.3958681866":"Tilføj kollektion","src.collections.components.CollectionListPage.3958681866":"Tilføj kollektion","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"Tilgængelig","src.availability":"","src.collections.components.CollectionList.3640454975":"Offentliggjort","src.collections.components.CollectionProducts.3640454975":"Offentliggjort","src.discounts.components.DiscountProducts.3640454975":"Offentliggjort","src.components.ProductList.3640454975":"Offentliggjort","src.products.components.ProductListPage.3640454975":"Offentliggjort","src.pages.components.PageList.3640454975":"Offentliggjort","src.products.views.ProductList.published":"Offentliggjort","src.collections.components.CollectionList.2341910657":"Ikke offentliggjort","src.collections.components.CollectionProducts.2341910657":"Ikke offentliggjort","src.discounts.components.DiscountProducts.2341910657":"Ikke offentliggjort","src.components.ProductList.2341910657":"Ikke offentliggjort","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.686910896":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"","src.collections.views.2402899582":"","src.collections.views.2237014112":"Upublicerede","src.pages.views.2237014112":"Upublicerede","src.products.views.ProductList.2237014112":"Upublicerede","src.collections.views.1547167026":"Publicerede","src.pages.views.1547167026":"Publicerede","src.products.views.ProductList.1547167026":"Publicerede","src.collections.views.2823425739":"","src.collections.views.1348793822":"","src.collections.views.2637364047":"","src.collections.views.3944356444":"","src.collections.views.3817188998":"","src.collections.views.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"Log ud","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.4057224233":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"","src.components.ErrorMessageCard.2845142593":"","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.FilterBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"Tilføj","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.ProductList.1134347598":"Pris","src.orders.components.OrderDraftDetailsProducts.1134347598":"Pris","src.orders.components.OrderFulfillment.1134347598":"Pris","src.products.components.ProductListPage.1134347598":"Pris","src.products.components.ProductPricing.1134347598":"Pris","src.orders.components.OrderUnfulfilledItems.1134347598":"Pris","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"Pris","src.shipping.components.ShippingZoneRates.1134347598":"Pris","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"Synlighed","src.pages.components.PageList.1459686496":"Synlighed","src.products.components.ProductListFilter.1459686496":"Synlighed","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"Gemt","src.products.views.ProductList.hidden":"Gemt","src.components.VisibilityCard.1815688500":"","src.components.VisibilityCard.2001551496":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","configurationMenuStaff":"","configurationMenuShipping":"","configurationMenuTaxes":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","src.customers.components.CustomerAddress.1320082647":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"Betalingsadresse","src.customers.components.CustomerAddresses.3517722732":"Forsendelsesadresse","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"Adresse","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"Noter","src.orders.components.OrderCustomerNote.1520756907":"Noter","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"Note","src.customers.components.CustomerDetails.577013340":"Note","src.customers.components.CustomerCreatePage.1934221653":"Tilføj kunde","src.customers.components.CustomerListPage.1934221653":"Tilføj kunde","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerOrders.3878642352":"Seneste ordrer","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"Dato","src.orders.components.OrderDraftList.4205493358":"Dato","src.orders.components.OrderList.4205493358":"Dato","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"Status","src.orders.components.OrderListFilter.1756106276":"Status","src.products.components.ProductListFilter.1756106276":"Status","src.products.components.ProductVariants.1756106276":"Status","src.customers.components.CustomerOrders.878013594":"Total","src.orders.components.OrderDraftDetailsProducts.878013594":"Total","src.orders.components.OrderDraftDetailsSummary.878013594":"Total","src.orders.components.OrderDraftList.878013594":"Total","src.orders.components.OrderFulfillment.878013594":"Total","src.orders.components.OrderUnfulfilledItems.878013594":"Total","src.orders.components.OrderList.878013594":"Total","src.orders.components.OrderPayment.878013594":"Total","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.1946482599":"","src.customers.views.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"Værdi","src.discounts.components.SaleSummary.1148029984":"Værdi","src.discounts.components.VoucherList.1148029984":"Værdi","src.discounts.components.VoucherSummary.1148029984":"Værdi","src.discounts.components.VoucherValue.1148029984":"Værdi","src.products.components.ProductAttributes.1148029984":"Værdi","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.1742771332":"","src.discounts.components.SalePricing.1099355007":"Prissætning","src.products.components.ProductPricing.1099355007":"Prissætning","src.products.components.ProductVariantPrice.1099355007":"Prissætning","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"Lande","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"Kode","src.discounts.components.VoucherSummary.78726751":"Kode","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.1536809153":"Tilføj rabatkode","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"Specifikke produkter","src.discounts.shipment":"Forsendelse","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.2809303671":"","src.discounts.views.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.367317371":"","src.discounts.views.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"Annuller","src.orders.views.OrderList.3528672691":"Annuller","src.confirm":"","src.delete":"","src.edit":"Rediger","src.manage":"","src.remove":"Fjern","src.save":"Gem","src.show":"","src.undo":"","src.attributes":"Attributter","src.products.components.ProductAttributes.4153345096":"Attributter","src.categories":"Kategorier","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"Kollektioner","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"Konfiguration","src.customers":"Kunder","src.draftOrders":"","src.home":"Hjem","src.navigation":"Navigering","src.orders":"Ordre","src.pages":"Sider","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"Udsalg","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"Skatter","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"Skatter","src.taxes.components.CountryListPage.3955023266":"Skatter","src.translations":"","src.vouchers":"Rabatkode","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"","src.partiallyPaid":"","src.partiallyRefunded":"Delvist refunderet","src.refunded":"Fuldt refunderet","src.unpaid":"","src.cancelled":"","src.draft":"Udkast","src.fulfilled":"Pakket","src.orders.views.OrderList.fulfilled":"Pakket","src.orders.components.OrderListFilter.1712863026":"Pakket","src.partiallyFulfilled":"Delvist opfyldt","src.unfulfilled":"Uopfyldte","src.orders.views.OrderList.unfulfilled":"Uopfyldte","src.orders.components.OrderListFilter.1751787272":"Uopfyldte","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","src.1395232177":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"Link","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"Annuller ordre","src.orders.components.OrderDetailsPage.1854613983":"Annuller ordre","src.orders.components.OrderDraftPage.1854613983":"Annuller ordre","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"Kunde","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"Kunde","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"Samme som forsendelsesadresse","src.orders.components.OrderCustomerEditDialog.1411666943":"Ændre kundedetaljer","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.500287069":"Fjern ordreudkast","src.orders.components.OrderDraftCancelDialog.3199827590":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"Produkt","src.orders.components.OrderUnfulfilledItems.1895667608":"Produkt","src.orders.components.OrderDraftDetailsProducts.2796503714":"Kvantitet","src.orders.components.OrderFulfillment.2796503714":"Kvantitet","src.orders.components.OrderFulfillmentDialog.2796503714":"Kvantitet","src.orders.components.OrderUnfulfilledItems.2796503714":"Kvantitet","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"Subtotal","src.orders.components.OrderPayment.781550514":"Subtotal","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"Opret ordre","src.orders.components.OrderListPage.2826235371":"Opret ordre","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"Tilføj sporing","src.orders.components.OrderFulfillmentCancelDialog.732594284":"Annuller pakning","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"Annuller pakke","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"SKU","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"Tracking nummer","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.2574162126":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"Ordre var betalt","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"Ordren var placeret","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"Betaling","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2943502192":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"Forsendelse","src.productTypes.components.ProductTypeShipping.1325966144":"Forsendelse","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"Forsendelse","src.orders.components.OrderPayment.3768782744":"Preautoriseret beløb","src.orders.components.OrderPayment.2320183694":"Trukket beløb","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"Trukket","src.orders.components.OrderPayment.2845258362":"Refunderet","src.orders.components.OrderPayment.2444197639":"Annuller","src.orders.components.OrderPayment.3500506678":"Markér som betalt","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"Beløb","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.2775402904":"","src.products.components.ProductListPage.2775402904":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"Pakket","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.3880993240":"","src.orders.views.1161115149":"","src.orders.views.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.755314116":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"Titel","src.pages.components.PageList.1124600214":"Titel","src.pages.components.PageInfo.1116746286":"Indhold","src.translations.components.TranslationsPagesPage.1116746286":"Indhold","src.pages.components.PageList.3478065224":"Slug","src.pages.components.PageSlug.3478065224":"Slug","src.productTypes.components.ProductTypeAttributes.3478065224":"Slug","src.pages.components.PageList.3767550649":"Ikke udgivet","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.1767905232":"Tilføj side","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.3785394515":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"Værdier","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"Billeder","src.products.components.ProductVariantImages.3240888698":"Billeder","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"","src.products.components.ProductVariantStock.3841616483":"","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListPage.821159718":"","src.products.components.ProductListPage.1421689426":"","src.products.components.ProductListPage.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"Inventar","prodictStockInventoryLabel":"Inventar","src.products.components.ProductVariantStock.3490038570":"Inventar","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"","src.products.components.ProductVariants.2153006789":"","src.products.components.ProductVariantNavigation.2845381934":"Tilføj variant","src.products.components.ProductVariants.2845381934":"Tilføj variant","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1542417144":"","src.products.views.1591632382":"","src.products.views.490753666":"","src.products.views.672103788":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.1694086800":"","src.products.views.ProductList.224127438":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.products.views.2178905289":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1756957616":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.889729490":"Tilføj produkttype","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.4080551769":"","src.productTypes.views.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.352297149":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2474410767":"Tilføj forsendelseszone","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.254167659":"","src.shipping.views.ShippingZoneDetails.1790261672":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"Key","src.siteSettings.components.SiteSettingsKeys.2446088470":"Key","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.3490059488":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"Tilladelser","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.3247064221":"Aktiv","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.802625341":"Tilføj medarbejder","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"Brugeren er aktiv","src.staff.views.2240444792":"","src.staff.views.2728048444":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file +{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.3824684885":"","src.attributes.components.AttributeListPage.2417065806":"","src.attributes.components.AttributeListPage.3916653510":"","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.4048785456":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"Navn","src.categories.components.CategoryProductList.636461959":"Navn","src.components.ProductList.636461959":"Navn","src.products.components.ProductList.636461959":"Navn","src.collections.components.CollectionDetails.636461959":"Navn","src.collections.components.CollectionProducts.636461959":"Navn","src.products.components.ProductDetailsForm.636461959":"Navn","src.discounts.components.SaleInfo.636461959":"Navn","src.discounts.components.SaleList.636461959":"Navn","src.discounts.components.SaleSummary.636461959":"Navn","menuItemDialogNameLabel":"Navn","src.plugins.components.PluginsList.636461959":"Navn","src.products.components.ProductVariants.636461959":"Navn","src.shipping.components.ShippingZoneRates.636461959":"Navn","src.shipping.components.ShippingZonesList.636461959":"Navn","src.staff.components.StaffList.636461959":"Navn","src.translations.components.TranslationsEntitiesList.636461959":"Navn","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.351422234":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.109182747":"Login","src.auth.components.LoginPage.4028609483":"","src.auth.components.NewPasswordPage.1915811227":"","src.auth.components.NewPasswordPage.1254879564":"","src.auth.components.NewPasswordPage.2799926859":"","src.auth.components.NewPasswordPage.4253911811":"","src.auth.components.NewPasswordPage.2342634351":"","src.auth.components.ResetPasswordPage.2370700732":"","src.auth.components.ResetPasswordPage.3663311080":"","src.auth.components.ResetPasswordSuccessPage.4066297200":"","src.auth.components.ResetPasswordSuccessPage.2245157344":"","src.auth.views.2388238158":"","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"","src.categories.views.2004894945":"","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.2159874182":"Subkategorier","src.categories.components.CategoryUpdatePage.2159874182":"Subkategorier","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.1140231710":"","src.categories.views.1140231710":"","src.categories.components.CategoryListPage.4294878092":"","src.categories.components.CategoryListPage.3841025483":"","src.translations.components.TranslationsEntitiesListPage.3841025483":"","src.categories.components.CategoryProductList.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductList.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProductList.3640454975":"Offentliggjort","src.components.ProductList.3640454975":"Offentliggjort","src.products.components.ProductList.3640454975":"Offentliggjort","src.products.components.ProductListPage.3640454975":"Offentliggjort","productStatusLabel":"Offentliggjort","src.collections.components.CollectionList.3640454975":"Offentliggjort","src.collections.components.CollectionProducts.3640454975":"Offentliggjort","src.discounts.components.DiscountProducts.3640454975":"Offentliggjort","src.pages.components.PageList.3640454975":"Offentliggjort","src.products.views.ProductList.published":"Offentliggjort","src.categories.components.CategoryProductList.1134347598":"Pris","src.orders.components.OrderFulfillment.1134347598":"Pris","src.products.components.ProductList.1134347598":"Pris","src.products.components.ProductListPage.1134347598":"Pris","src.products.components.ProductPricing.1134347598":"Pris","src.components.ProductList.1134347598":"Pris","src.orders.components.OrderDraftDetailsProducts.1134347598":"Pris","src.orders.components.OrderUnfulfilledItems.1134347598":"Pris","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"Pris","src.shipping.components.ShippingZoneRates.1134347598":"Pris","src.categories.components.CategoryProductList.2341910657":"Ikke offentliggjort","src.products.components.ProductList.2341910657":"Ikke offentliggjort","src.collections.components.CollectionList.2341910657":"Ikke offentliggjort","src.collections.components.CollectionProducts.2341910657":"Ikke offentliggjort","src.discounts.components.DiscountProducts.2341910657":"Ikke offentliggjort","src.components.ProductList.2341910657":"Ikke offentliggjort","src.categories.components.CategoryProductList.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.products.components.ProductList.1657559629":"","src.categories.components.CategoryProducts.4164156574":"","src.categories.components.CategoryProducts.3554578821":"Tilføj produkt","src.categories.components.CategoryUpdatePage.2968663655":"Produkter","src.discounts.components.DiscountCategories.2968663655":"Produkter","src.discounts.components.DiscountCollections.2968663655":"Produkter","src.products":"Produkter","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryUpdatePage.3229914152":"","src.categories.components.CategoryUpdatePage.770296100":"","src.categories.views.1754466114":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.CategoryList.3488150607":"","src.categories.views.712767046":"","src.categories.views.CategoryList.712767046":"","src.categories.views.299584400":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.categories.views.CategoryList.2144707585":"","src.collections.components.CollectionCreatePage.3958681866":"Tilføj kollektion","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionCreatePage.2001551496":"","src.collections.components.CollectionDetailsPage.2001551496":"","src.pages.components.PageDetailsPage.2001551496":"","src.products.components.ProductCreatePage.2001551496":"","src.products.components.ProductUpdatePage.2001551496":"","src.collections.components.CollectionCreatePage.1815688500":"","src.collections.components.CollectionDetailsPage.1815688500":"","src.pages.components.PageDetailsPage.1815688500":"","src.products.components.ProductCreatePage.1815688500":"","src.products.components.ProductUpdatePage.1815688500":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"Tilgængelig","src.availability":"","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionListPage.686910896":"","src.collections.views.686910896":"","src.collections.components.CollectionListPage.1631917001":"","src.collections.components.CollectionListPage.4057224233":"","src.components.AssignCollectionDialog.4057224233":"","src.translations.components.TranslationsEntitiesListPage.4057224233":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"","src.collections.views.2402899582":"","src.collections.views.CollectionList.2237014112":"Upublicerede","src.pages.views.2237014112":"Upublicerede","src.products.views.ProductList.2237014112":"Upublicerede","src.collections.views.CollectionList.1547167026":"Publicerede","src.pages.views.1547167026":"Publicerede","src.products.views.ProductList.1547167026":"Publicerede","src.collections.views.CollectionList.2823425739":"","src.collections.views.CollectionList.1348793822":"","src.collections.views.CollectionList.2637364047":"","src.collections.views.CollectionList.3944356444":"","src.collections.views.CollectionList.3817188998":"","src.collections.views.CollectionList.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"Log ud","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"","src.components.ErrorMessageCard.2845142593":"","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.Filter.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.Filter.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.FilterBar.2340527467":"","src.components.SearchBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"Tilføj","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"Synlighed","src.pages.components.PageList.1459686496":"Synlighed","src.products.components.ProductListFilter.1459686496":"Synlighed","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"Gemt","src.products.views.ProductList.hidden":"Gemt","src.components.VisibilityCard.292404896":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","src.configuration.2326418019":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","src.configuration.3655543906":"","configurationMenuShipping":"","configurationMenuTaxes":"","src.configuration.3140151600":"","configurationMenuStaff":"","src.configuration.1233229030":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","configurationPluginsPages":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"Betalingsadresse","src.customers.components.CustomerAddresses.3517722732":"Forsendelsesadresse","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"Adresse","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"Noter","src.orders.components.OrderCustomerNote.1520756907":"Noter","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"Note","src.customers.components.CustomerDetails.577013340":"Note","src.customers.components.CustomerCreatePage.1934221653":"Tilføj kunde","src.customers.components.CustomerListPage.1934221653":"Tilføj kunde","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerListPage.477293306":"","src.customers.components.CustomerListPage.1643417013":"","src.customers.components.CustomerOrders.3878642352":"Seneste ordrer","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"Dato","src.orders.components.OrderDraftList.4205493358":"Dato","src.orders.components.OrderList.4205493358":"Dato","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"Status","src.orders.components.OrderListFilter.1756106276":"Status","src.plugins.components.PluginInfo.1756106276":"Status","src.products.components.ProductListFilter.1756106276":"Status","src.products.components.ProductVariants.1756106276":"Status","src.customers.components.CustomerOrders.878013594":"Total","src.orders.components.OrderDraftDetailsProducts.878013594":"Total","src.orders.components.OrderDraftDetailsSummary.878013594":"Total","src.orders.components.OrderDraftList.878013594":"Total","src.orders.components.OrderFulfillment.878013594":"Total","src.orders.components.OrderUnfulfilledItems.878013594":"Total","src.orders.components.OrderList.878013594":"Total","src.orders.components.OrderPayment.878013594":"Total","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.CustomerList.1946482599":"","src.customers.views.CustomerList.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","src.discounts.components.SaleListPage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"Værdi","src.discounts.components.SaleSummary.1148029984":"Værdi","src.discounts.components.VoucherList.1148029984":"Værdi","src.discounts.components.VoucherSummary.1148029984":"Værdi","src.discounts.components.VoucherValue.1148029984":"Værdi","src.products.components.ProductAttributes.1148029984":"Værdi","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.3907768880":"","src.discounts.components.SaleListPage.1866913828":"","src.translations.components.TranslationsEntitiesListPage.1866913828":"","src.discounts.components.SalePricing.1099355007":"Prissætning","src.products.components.ProductPricing.1099355007":"Prissætning","src.products.components.ProductVariantPrice.1099355007":"Prissætning","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"Lande","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"Kode","src.discounts.components.VoucherSummary.78726751":"Kode","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.614836274":"","src.discounts.components.VoucherListPage.1112241061":"","src.discounts.components.VoucherListPage.1930485532":"","src.translations.components.TranslationsEntitiesListPage.1930485532":"","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"Specifikke produkter","src.discounts.shipment":"Forsendelse","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.SaleList.2809303671":"","src.discounts.views.SaleList.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.VoucherList.367317371":"","src.discounts.views.VoucherList.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.somethingWentWrong":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"Annuller","src.orders.views.OrderList.3528672691":"Annuller","src.confirm":"","src.delete":"","src.edit":"Rediger","src.manage":"","src.remove":"Fjern","src.save":"Gem","src.show":"","src.undo":"","src.attributes":"Attributter","src.products.components.ProductAttributes.4153345096":"Attributter","src.categories":"Kategorier","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"Kollektioner","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"Konfiguration","src.customers":"Kunder","src.draftOrders":"","src.home":"Hjem","src.navigation":"Navigering","src.orders":"Ordre","src.pages":"Sider","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.plugins":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"Udsalg","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"Skatter","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"Skatter","src.taxes.components.CountryListPage.3955023266":"Skatter","src.translations":"","src.vouchers":"Rabatkode","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"","src.partiallyPaid":"","src.partiallyRefunded":"Delvist refunderet","src.refunded":"Fuldt refunderet","src.unpaid":"","src.cancelled":"","src.draft":"Udkast","src.fulfilled":"Pakket","src.orders.views.OrderList.fulfilled":"Pakket","src.orders.components.OrderListFilter.1712863026":"Pakket","src.partiallyFulfilled":"Delvist opfyldt","src.unfulfilled":"Uopfyldte","src.orders.views.OrderList.unfulfilled":"Uopfyldte","src.orders.components.OrderListFilter.1751787272":"Uopfyldte","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"Link","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"Annuller ordre","src.orders.components.OrderDetailsPage.1854613983":"Annuller ordre","src.orders.components.OrderDraftPage.1854613983":"Annuller ordre","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"Kunde","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"Kunde","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"Samme som forsendelsesadresse","src.orders.components.OrderCustomerEditDialog.1411666943":"Ændre kundedetaljer","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.632633254":"","src.orders.components.OrderDraftCancelDialog.36681973":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"Produkt","src.orders.components.OrderUnfulfilledItems.1895667608":"Produkt","src.orders.components.OrderDraftDetailsProducts.2796503714":"Kvantitet","src.orders.components.OrderFulfillment.2796503714":"Kvantitet","src.orders.components.OrderFulfillmentDialog.2796503714":"Kvantitet","src.orders.components.OrderUnfulfilledItems.2796503714":"Kvantitet","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"Subtotal","src.orders.components.OrderPayment.781550514":"Subtotal","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"Opret ordre","src.orders.components.OrderListPage.2826235371":"Opret ordre","src.orders.components.OrderDraftListPage.551325728":"","src.orders.components.OrderDraftListPage.77765281":"","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"Tilføj sporing","src.orders.components.OrderFulfillmentCancelDialog.732594284":"Annuller pakning","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"Annuller pakke","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"SKU","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"Tracking nummer","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.4067959693":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"Ordre var betalt","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"Ordren var placeret","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"Betaling","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2415661583":"","src.orders.views.OrderList.readyToCapture":"","src.orders.components.OrderListFilter.2222765704":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"Forsendelse","src.productTypes.components.ProductTypeShipping.1325966144":"Forsendelse","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"Forsendelse","src.orders.components.OrderPayment.3768782744":"Preautoriseret beløb","src.orders.components.OrderPayment.2320183694":"Trukket beløb","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"Trukket","src.orders.components.OrderPayment.2845258362":"Refunderet","src.orders.components.OrderPayment.2444197639":"Annuller","src.orders.components.OrderPayment.3500506678":"Markér som betalt","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"Beløb","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.1542417144":"","src.products.components.ProductListPage.1542417144":"","src.products.views.1542417144":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"Pakket","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.OrderDraftList.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.OrderDraftList.1648805446":"","src.orders.views.OrderDraftList.1161115149":"","src.orders.views.OrderDraftList.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.1068617485":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"Titel","src.pages.components.PageList.1124600214":"Titel","src.pages.components.PageInfo.1116746286":"Indhold","src.translations.components.TranslationsPagesPage.1116746286":"Indhold","src.pages.components.PageList.3478065224":"Slug","src.pages.components.PageSlug.3478065224":"Slug","src.productTypes.components.ProductTypeAttributes.3478065224":"Slug","src.pages.components.PageList.3767550649":"Ikke udgivet","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.3785394515":"","src.pages.views.3785394515":"","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.plugins.components.PluginInfo.3425535100":"","src.plugins.components.PluginsDetailsPage.3425535100":"","src.plugins.components.PluginInfo.1049131348":"","src.plugins.components.PluginInfo.4013064767":"","src.plugins.components.PluginsDetailsPage.3352026836":"","src.plugins.components.PluginsDetailsPage.2277745418":"","src.plugins.components.PluginsDetailsPage.1970881031":"","src.plugins.components.PluginSettings.1970881031":"","src.plugins.components.PluginsDetailsPage.4241018152":"","src.plugins.components.PluginsList.3247064221":"Aktiv","src.staff.components.StaffList.3247064221":"Aktiv","src.plugins.components.PluginsList.4120604650":"","src.plugins.components.PluginsList.666641390":"","src.plugins.views.100549097":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"Værdier","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"Billeder","src.products.components.ProductVariantImages.3240888698":"Billeder","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"","src.products.components.ProductVariantStock.3841616483":"","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListFilter.821159718":"","src.products.components.ProductListFilter.1421689426":"","src.products.components.ProductListFilter.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"Inventar","prodictStockInventoryLabel":"Inventar","src.products.components.ProductVariantStock.3490038570":"Inventar","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"","src.products.components.ProductVariants.2153006789":"","src.products.components.ProductVariantNavigation.2845381934":"Tilføj variant","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.3989383405":"","src.products.views.3989383405":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1591632382":"","src.products.views.1731766393":"","src.products.views.2880386427":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1217376589":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.3479705616":"","src.productTypes.components.ProductTypeListPage.1776073799":"","src.productTypes.components.ProductTypeListPage.3420445375":"","src.translations.components.TranslationsEntitiesListPage.3420445375":"","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.ProductTypeList.4080551769":"","src.productTypes.views.ProductTypeList.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRates.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2673544109":"","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.1947090060":"","src.shipping.views.ShippingZoneDetails.131963671":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"Key","src.siteSettings.components.SiteSettingsKeys.2446088470":"Key","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.1481503299":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"Tilladelser","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.797461521":"","src.staff.components.StaffListPage.2852350932":"","src.staff.components.StaffListPage.61043583":"","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"Brugeren er aktiv","src.staff.views.1308770978":"","src.staff.views.8878988":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.2105464697":"","src.translations.components.TranslationsEntitiesListPage.2559018090":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file diff --git a/locale/da.po b/locale/da.po index 556a55db3..594d3db5c 100644 --- a/locale/da.po +++ b/locale/da.po @@ -3,7 +3,7 @@ # msgid "" msgstr "" -"POT-Creation-Date: 2019-09-06T13:56:36.897Z\n" +"POT-Creation-Date: 2019-09-16T15:25:09.340Z\n" "Last-Translator: Mikkel, 2019\n" "Language-Team: Danish (https://www.transifex.com/mirumee/teams/34782/da/)\n" "MIME-Version: 1.0\n" @@ -141,22 +141,6 @@ msgctxt "create new menu item, header" msgid "Add Item" msgstr "" -#. [menuCreateDialogHeader] - dialog header -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json -msgctxt "dialog header" -msgid "Add Menu" -msgstr "" - -#. [menuListPageAddMenu] - button -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json -msgctxt "button" -msgid "Add Menu" -msgstr "" - #. [src.siteSettings.components.SiteSettingsKeyDialog.1238948746] - dialog #. header #. defaultMessage is: @@ -166,14 +150,6 @@ msgctxt "dialog header" msgid "Add New Authorization Key" msgstr "" -#. [src.pages.components.PageDetailsPage.755314116] - page header -#. defaultMessage is: -#. Add Page -#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json -msgctxt "page header" -msgid "Add Page" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.2892088870] - dialog header #. defaultMessage is: #. Add Price Rate @@ -182,38 +158,6 @@ msgctxt "dialog header" msgid "Add Price Rate" msgstr "" -#. [src.orders.components.OrderProductAddDialog.2775402904] - dialog header -#. defaultMessage is: -#. Add Product -#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json -msgctxt "dialog header" -msgid "Add Product" -msgstr "" - -#. [src.products.components.ProductListPage.2775402904] - button -#. defaultMessage is: -#. Add Product -#: build/locale/src/products/components/ProductListPage/ProductListPage.json -msgctxt "button" -msgid "Add Product" -msgstr "" - -#. [src.discounts.components.SaleListPage.1742771332] - button -#. defaultMessage is: -#. Add Sale -#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json -msgctxt "button" -msgid "Add Sale" -msgstr "" - -#. [src.staff.components.StaffAddMemberDialog.3490059488] - dialog header -#. defaultMessage is: -#. Add Staff Member -#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json -msgctxt "dialog header" -msgid "Add Staff Member" -msgstr "" - #. [src.attributes.components.AttributeValueEditDialog.1841790893] - add #. attribute value #. defaultMessage is: @@ -223,14 +167,6 @@ msgctxt "add attribute value" msgid "Add Value" msgstr "" -#. [src.products.views.2178905289] - header -#. defaultMessage is: -#. Add Variant -#: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "header" -msgid "Add Variant" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.1397795758] - add weight #. based shipping method, dialog header #. defaultMessage is: @@ -248,14 +184,6 @@ msgctxt "button" msgid "Add address" msgstr "" -#. [src.attributes.components.AttributeListPage.350498821] - button -#. defaultMessage is: -#. Add attribute -#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json -msgctxt "button" -msgid "Add attribute" -msgstr "Tilføj attribut" - #. [src.siteSettings.components.SiteSettingsKeyDialog.50561933] - button #. defaultMessage is: #. Add authentication @@ -264,14 +192,6 @@ msgctxt "button" msgid "Add authentication" msgstr "" -#. [src.categories.components.CategoryListPage.228151782] - button -#. defaultMessage is: -#. Add category -#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json -msgctxt "button" -msgid "Add category" -msgstr "Tilføj kategori" - #. [src.collections.components.CollectionCreatePage.3958681866] - page header #. defaultMessage is: #. Add collection @@ -280,14 +200,6 @@ msgctxt "page header" msgid "Add collection" msgstr "Tilføj kollektion" -#. [src.collections.components.CollectionListPage.3958681866] - button -#. defaultMessage is: -#. Add collection -#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json -msgctxt "button" -msgid "Add collection" -msgstr "Tilføj kollektion" - #. [src.customers.components.CustomerCreatePage.1934221653] - page header #. defaultMessage is: #. Add customer @@ -320,14 +232,6 @@ msgctxt "button" msgid "Add key" msgstr "" -#. [menuItemsAddItem] - add new menu item -#. defaultMessage is: -#. Add new item -#: build/locale/src/navigation/components/MenuItems/MenuItems.json -msgctxt "add new menu item" -msgid "Add new item" -msgstr "" - #. [menuItemsPlaceholder] #. defaultMessage is: #. Add new menu item to begin creating menu @@ -362,14 +266,6 @@ msgctxt "button" msgid "Add or Edit Link" msgstr "" -#. [src.pages.components.PageListPage.1767905232] - button -#. defaultMessage is: -#. Add page -#: build/locale/src/pages/components/PageListPage/PageListPage.json -msgctxt "button" -msgid "Add page" -msgstr "Tilføj side" - #. [src.categories.components.CategoryProducts.3554578821] - button #. defaultMessage is: #. Add product @@ -378,14 +274,6 @@ msgctxt "button" msgid "Add product" msgstr "Tilføj produkt" -#. [src.productTypes.components.ProductTypeListPage.889729490] - button -#. defaultMessage is: -#. Add product type -#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json -msgctxt "button" -msgid "Add product type" -msgstr "Tilføj produkttype" - #. [src.orders.components.OrderDraftDetails.2528459381] - button #. defaultMessage is: #. Add products @@ -394,14 +282,6 @@ msgctxt "button" msgid "Add products" msgstr "" -#. [src.shipping.components.ShippingZoneRates.352297149] - button -#. defaultMessage is: -#. Add rate -#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json -msgctxt "button" -msgid "Add rate" -msgstr "" - #. [src.categories.components.CategoryCreatePage.2563994280] #. defaultMessage is: #. Add search engine title and description to make this category easier to @@ -463,30 +343,6 @@ msgctxt "button" msgid "Add shipping carrier" msgstr "" -#. [src.shipping.components.ShippingZonesList.2474410767] - button -#. defaultMessage is: -#. Add shipping zone -#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json -msgctxt "button" -msgid "Add shipping zone" -msgstr "Tilføj forsendelseszone" - -#. [src.staff.components.StaffListPage.802625341] - button -#. defaultMessage is: -#. Add staff member -#: build/locale/src/staff/components/StaffListPage/StaffListPage.json -msgctxt "button" -msgid "Add staff member" -msgstr "Tilføj medarbejder" - -#. [src.categories.components.CategoryList.435697837] - button -#. defaultMessage is: -#. Add subcategory -#: build/locale/src/categories/components/CategoryList/CategoryList.json -msgctxt "button" -msgid "Add subcategory" -msgstr "" - #. [src.attributes.components.AttributeProperties.673770329] - add attribute #. as column in product list table #. defaultMessage is: @@ -514,35 +370,14 @@ msgctxt "dialog header" msgid "Add tracking code" msgstr "" -#. [src.attributes.components.AttributeValues.254756045] - add attribute value -#. button -#. defaultMessage is: -#. Add value -#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json -msgctxt "add attribute value button" -msgid "Add value" -msgstr "" - #. [src.products.components.ProductVariantNavigation.2845381934] - button #. defaultMessage is: #. Add variant -#. [src.products.components.ProductVariants.2845381934] - button -#. defaultMessage is: -#. Add variant #: build/locale/src/products/components/ProductVariantNavigation/ProductVariantNavigation.json -#: build/locale/src/products/components/ProductVariants/ProductVariants.json msgctxt "button" msgid "Add variant" msgstr "Tilføj variant" -#. [src.discounts.components.VoucherListPage.1536809153] - button -#. defaultMessage is: -#. Add voucher -#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json -msgctxt "button" -msgid "Add voucher" -msgstr "Tilføj rabatkode" - #. [src.attributes.views.AttributeDetails.634268988] - added new attribute #. value #. defaultMessage is: @@ -600,14 +435,6 @@ msgctxt "description" msgid "Address line 2" msgstr "" -#. [src.customers.components.CustomerAddress.1320082647] - addres card header -#. defaultMessage is: -#. Address {addressNumber} -#: build/locale/src/customers/components/CustomerAddress/CustomerAddress.json -msgctxt "addres card header" -msgid "Address {addressNumber}" -msgstr "" - #. [src.attributes.components.AttributeValues.1565474525] - attribute values #. list: slug column header #. defaultMessage is: @@ -657,6 +484,46 @@ msgctxt "tax rate" msgid "Agricultural supplies" msgstr "" +#. [src.attributes.components.AttributeListPage.2417065806] - tab name +#. defaultMessage is: +#. All Attributes +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "tab name" +msgid "All Attributes" +msgstr "" + +#. [src.categories.components.CategoryListPage.4294878092] - tab name +#. defaultMessage is: +#. All Categories +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "tab name" +msgid "All Categories" +msgstr "" + +#. [src.collections.components.CollectionListPage.1631917001] - tab name +#. defaultMessage is: +#. All Collections +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "tab name" +msgid "All Collections" +msgstr "" + +#. [src.customers.components.CustomerListPage.477293306] - tab name +#. defaultMessage is: +#. All Customers +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "tab name" +msgid "All Customers" +msgstr "" + +#. [src.orders.components.OrderDraftListPage.551325728] - tab name +#. defaultMessage is: +#. All Drafts +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "tab name" +msgid "All Drafts" +msgstr "" + #. [src.orders.components.OrderListPage.875489544] - tab name #. defaultMessage is: #. All Orders @@ -674,22 +541,54 @@ msgctxt "section header" msgid "All Photos" msgstr "" -#. [src.products.components.ProductListPage.821159718] - tab name +#. [src.productTypes.components.ProductTypeListPage.1776073799] - tab name +#. defaultMessage is: +#. All Product Types +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "tab name" +msgid "All Product Types" +msgstr "" + +#. [src.products.components.ProductListFilter.821159718] - tab name #. defaultMessage is: #. All Products -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "tab name" msgid "All Products" msgstr "" -#. [src.categories.components.CategoryList.3229914152] - section header +#. [src.discounts.components.SaleListPage.3907768880] - tab name +#. defaultMessage is: +#. All Sales +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "tab name" +msgid "All Sales" +msgstr "" + +#. [src.staff.components.StaffListPage.2852350932] - tab name +#. defaultMessage is: +#. All Staff Members +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "tab name" +msgid "All Staff Members" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.3229914152] - section header #. defaultMessage is: #. All Subcategories -#: build/locale/src/categories/components/CategoryList/CategoryList.json +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json msgctxt "section header" msgid "All Subcategories" msgstr "" +#. [src.discounts.components.VoucherListPage.1112241061] - tab name +#. defaultMessage is: +#. All Vouchers +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "tab name" +msgid "All Vouchers" +msgstr "" + #. [src.taxes.components.TaxConfiguration.142803418] #. defaultMessage is: #. All products prices are entered with tax included @@ -797,6 +696,14 @@ msgctxt "description" msgid "Are you sure you want to delete collection's image?" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.36681973] +#. defaultMessage is: +#. Are you sure you want to delete draft #{number}? +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "description" +msgid "Are you sure you want to delete draft #{number}?" +msgstr "" + #. [menuDetailsDeleteMenuContent] #. defaultMessage is: #. Are you sure you want to delete menu {menuName}? @@ -813,6 +720,14 @@ msgctxt "description" msgid "Are you sure you want to delete this address from users address book?" msgstr "" +#. [src.products.views.2880386427] +#. defaultMessage is: +#. Are you sure you want to delete this image? +#: build/locale/src/products/views/ProductImage.json +msgctxt "description" +msgid "Are you sure you want to delete this image?" +msgstr "" + #. [src.attributes.components.AttributeDeleteDialog.3738429348] - dialog #. content #. defaultMessage is: @@ -863,12 +778,7 @@ msgstr "" #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this attribute} #. other{{displayQuantity} categories}}? -#. [src.categories.views.844574071] -#. defaultMessage is: -#. Are you sure you want to delete {counter,plural,one{this attribute} -#. other{{displayQuantity} categories}}? #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this attribute} " @@ -886,22 +796,33 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.2497542455] +#. [src.categories.views.CategoryList.2144707585] +#. defaultMessage is: +#. Are you sure you want to delete {counter,plural,one{this category} +#. other{{displayQuantity} categories}}? +#: build/locale/src/categories/views/CategoryList/CategoryList.json +msgctxt "description" +msgid "" +"Are you sure you want to delete {counter,plural,one{this category} " +"other{{displayQuantity} categories}}?" +msgstr "" + +#. [src.collections.views.CollectionList.2497542455] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this collection} " "other{{displayQuantity} collections}}?" msgstr "" -#. [src.customers.views.409347866] +#. [src.customers.views.CustomerList.409347866] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this customer} #. other{{displayQuantity} customers}}? -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this customer} " @@ -919,11 +840,11 @@ msgid "" "other{{displayQuantity} menus}}?" msgstr "" -#. [src.orders.views.1389231130] - dialog content +#. [src.orders.views.OrderDraftList.1389231130] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this order draft} #. other{{displayQuantity} orderDrafts}}? -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this order draft} " @@ -941,11 +862,11 @@ msgid "" "other{{displayQuantity} pages}}?" msgstr "" -#. [src.productTypes.views.2294091098] - dialog content +#. [src.productTypes.views.ProductTypeList.2294091098] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this product type} #. other{{displayQuantity} product types}}? -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this product type} " @@ -963,11 +884,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.discounts.views.2516361175] - dialog content +#. [src.discounts.views.SaleList.2516361175] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this sale} #. other{{displayQuantity} sales}}? -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this sale} " @@ -996,17 +917,33 @@ msgid "" "other{{displayQuantity} variants}}?" msgstr "" -#. [src.discounts.views.1791926983] - dialog content +#. [src.discounts.views.VoucherList.1791926983] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this voucher} #. other{{displayQuantity} vouchers}}? -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this voucher} " "other{{displayQuantity} vouchers}}?" msgstr "" +#. [src.shipping.views.ShippingZoneDetails.131963671] - unassign country +#. defaultMessage is: +#. Are you sure you want to delete {countryName} from this shipping zone? +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country" +msgid "Are you sure you want to delete {countryName} from this shipping zone?" +msgstr "" + +#. [src.staff.views.8878988] +#. defaultMessage is: +#. Are you sure you want to delete {email} from staff members? +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "description" +msgid "Are you sure you want to delete {email} from staff members?" +msgstr "" + #. [src.customers.views.1927691511] - delete customer, dialog content #. defaultMessage is: #. Are you sure you want to delete {email}? @@ -1121,11 +1058,11 @@ msgctxt "description" msgid "Are you sure you want to mark this order as paid?" msgstr "" -#. [src.collections.views.1348793822] +#. [src.collections.views.CollectionList.1348793822] #. defaultMessage is: #. Are you sure you want to publish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to publish {counter,plural,one{this collection} " @@ -1154,30 +1091,6 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.orders.components.OrderDraftCancelDialog.3199827590] -#. defaultMessage is: -#. Are you sure you want to remove draft #{number}? -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "description" -msgid "Are you sure you want to remove draft #{number}?" -msgstr "" - -#. [src.products.views.672103788] -#. defaultMessage is: -#. Are you sure you want to remove this image? -#: build/locale/src/products/views/ProductImage.json -msgctxt "description" -msgid "Are you sure you want to remove this image?" -msgstr "" - -#. [src.shipping.views.ShippingZoneDetails.1790261672] - unassign country -#. defaultMessage is: -#. Are you sure you want to remove {countryName} from this shipping zone? -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country" -msgid "Are you sure you want to remove {countryName} from this shipping zone?" -msgstr "" - #. [src.staff.views.3945766678] #. defaultMessage is: #. Are you sure you want to remove {email} avatar? @@ -1186,14 +1099,6 @@ msgctxt "description" msgid "Are you sure you want to remove {email} avatar?" msgstr "" -#. [src.staff.views.2728048444] -#. defaultMessage is: -#. Are you sure you want to remove {email} from staff members? -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "description" -msgid "Are you sure you want to remove {email} from staff members?" -msgstr "" - #. [src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450] #. defaultMessage is: #. Are you sure you want to unassign {attributeName} from {productTypeName}? @@ -1274,11 +1179,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.3944356444] +#. [src.collections.views.CollectionList.3944356444] #. defaultMessage is: #. Are you sure you want to unpublish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to unpublish {counter,plural,one{this collection} " @@ -1439,6 +1344,15 @@ msgctxt "button" msgid "Assign products" msgstr "" +#. [src.attributes.components.AttributeValues.351422234] - assign attribute +#. value button +#. defaultMessage is: +#. Assign value +#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json +msgctxt "assign attribute value button" +msgid "Assign value" +msgstr "" + #. [src.attributes.components.AttributeDetails.3605174225] - attribute's slug #. short code label #. defaultMessage is: @@ -1517,6 +1431,14 @@ msgctxt "product attributes, section header" msgid "Attributes" msgstr "Attributter" +#. [src.configuration.2326418019] +#. defaultMessage is: +#. Attributes and Product Typess +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Attributes and Product Typess" +msgstr "" + #. [src.attributes.views.AttributeList.3218248395] - deleted multiple #. attributes #. defaultMessage is: @@ -2300,6 +2222,22 @@ msgctxt "description" msgid "Country area" msgstr "" +#. [menuCreateDialogHeader] - dialog header +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json +msgctxt "dialog header" +msgid "Create Menu" +msgstr "" + +#. [menuListPageAddMenu] - button +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json +msgctxt "button" +msgid "Create Menu" +msgstr "" + #. [src.attributes.components.AttributePage.2855501559] - page title #. defaultMessage is: #. Create New Attribute @@ -2324,6 +2262,30 @@ msgctxt "header" msgid "Create New Shipping Zone" msgstr "" +#. [src.pages.components.PageDetailsPage.1068617485] - page header +#. defaultMessage is: +#. Create Page +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page header" +msgid "Create Page" +msgstr "" + +#. [src.orders.components.OrderProductAddDialog.1542417144] - dialog header +#. defaultMessage is: +#. Create Product +#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json +msgctxt "dialog header" +msgid "Create Product" +msgstr "" + +#. [src.products.components.ProductListPage.1542417144] - button +#. defaultMessage is: +#. Create Product +#: build/locale/src/products/components/ProductListPage/ProductListPage.json +msgctxt "button" +msgid "Create Product" +msgstr "" + #. [src.products.views.1542417144] - window title #. defaultMessage is: #. Create Product @@ -2356,11 +2318,19 @@ msgctxt "page header" msgid "Create Sale" msgstr "" -#. [src.products.views.2362587265] - window title +#. [src.discounts.components.SaleListPage.3866518732] - button +#. defaultMessage is: +#. Create Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "button" +msgid "Create Sale" +msgstr "" + +#. [src.products.views.2362587265] - header #. defaultMessage is: #. Create Variant #: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "window title" +msgctxt "header" msgid "Create Variant" msgstr "" @@ -2372,6 +2342,22 @@ msgctxt "page header" msgid "Create Voucher" msgstr "" +#. [src.attributes.components.AttributeListPage.3824684885] - button +#. defaultMessage is: +#. Create attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "button" +msgid "Create attribute" +msgstr "" + +#. [src.categories.components.CategoryListPage.1140231710] - button +#. defaultMessage is: +#. Create category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "button" +msgid "Create category" +msgstr "" + #. [src.categories.views.1140231710] - window title #. defaultMessage is: #. Create category @@ -2380,6 +2366,14 @@ msgctxt "window title" msgid "Create category" msgstr "" +#. [src.collections.components.CollectionListPage.686910896] - button +#. defaultMessage is: +#. Create collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "button" +msgid "Create collection" +msgstr "" + #. [src.collections.views.686910896] - window title #. defaultMessage is: #. Create collection @@ -2396,6 +2390,14 @@ msgctxt "window title" msgid "Create customer" msgstr "" +#. [menuItemsAddItem] - add new menu item +#. defaultMessage is: +#. Create new item +#: build/locale/src/navigation/components/MenuItems/MenuItems.json +msgctxt "add new menu item" +msgid "Create new item" +msgstr "" + #. [src.orders.components.OrderDraftListPage.2826235371] - button #. defaultMessage is: #. Create order @@ -2408,6 +2410,14 @@ msgctxt "button" msgid "Create order" msgstr "Opret ordre" +#. [src.pages.components.PageListPage.3785394515] - button +#. defaultMessage is: +#. Create page +#: build/locale/src/pages/components/PageListPage/PageListPage.json +msgctxt "button" +msgid "Create page" +msgstr "" + #. [src.pages.views.3785394515] - header #. defaultMessage is: #. Create page @@ -2419,11 +2429,55 @@ msgstr "" #. [src.shipping.components.ShippingZoneRateDialog.16061680] - button #. defaultMessage is: #. Create rate +#. [src.shipping.components.ShippingZoneRates.16061680] - button +#. defaultMessage is: +#. Create rate #: build/locale/src/shipping/components/ShippingZoneRateDialog/ShippingZoneRateDialog.json +#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json msgctxt "button" msgid "Create rate" msgstr "" +#. [src.shipping.components.ShippingZonesList.2673544109] - button +#. defaultMessage is: +#. Create shipping zone +#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json +msgctxt "button" +msgid "Create shipping zone" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.770296100] - button +#. defaultMessage is: +#. Create subcategory +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json +msgctxt "button" +msgid "Create subcategory" +msgstr "" + +#. [src.products.components.ProductVariants.3989383405] - button +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/components/ProductVariants/ProductVariants.json +msgctxt "button" +msgid "Create variant" +msgstr "" + +#. [src.products.views.3989383405] - window title +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/views/ProductVariantCreate.json +msgctxt "window title" +msgid "Create variant" +msgstr "" + +#. [src.discounts.components.VoucherListPage.614836274] - button +#. defaultMessage is: +#. Create voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "button" +msgid "Create voucher" +msgstr "" + #. [src.collections.views.1597339737] #. defaultMessage is: #. Created collection @@ -2470,7 +2524,11 @@ msgstr "" #. [src.components.FilterBar.2340527467] #. defaultMessage is: #. Custom Filter +#. [src.components.SearchBar.2340527467] +#. defaultMessage is: +#. Custom Filter #: build/locale/src/components/FilterBar/FilterBar.json +#: build/locale/src/components/SearchBar/SearchBar.json msgctxt "description" msgid "Custom Filter" msgstr "" @@ -2726,10 +2784,18 @@ msgctxt "dialog title" msgid "Delete Collection" msgstr "" -#. [src.orders.views.1161115149] - dialog header +#. [src.products.views.1731766393] - dialog header +#. defaultMessage is: +#. Delete Image +#: build/locale/src/products/views/ProductImage.json +msgctxt "dialog header" +msgid "Delete Image" +msgstr "" + +#. [src.orders.views.OrderDraftList.1161115149] - dialog header #. defaultMessage is: #. Delete Order Drafts -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog header" msgid "Delete Order Drafts" msgstr "" @@ -2767,10 +2833,10 @@ msgctxt "dialog header" msgid "Delete Product Type" msgstr "" -#. [src.productTypes.views.4080551769] - dialog header +#. [src.productTypes.views.ProductTypeList.4080551769] - dialog header #. defaultMessage is: #. Delete Product Types -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog header" msgid "Delete Product Types" msgstr "" @@ -2799,10 +2865,10 @@ msgctxt "dialog header" msgid "Delete Sale" msgstr "" -#. [src.discounts.views.2809303671] - dialog header +#. [src.discounts.views.SaleList.2809303671] - dialog header #. defaultMessage is: #. Delete Sales -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog header" msgid "Delete Sales" msgstr "" @@ -2816,9 +2882,13 @@ msgctxt "custom search delete, dialog header" msgid "Delete Search" msgstr "" +#. [src.components.Filter.2173195312] - button +#. defaultMessage is: +#. Delete Search #. [src.components.TableFilter.2173195312] - button #. defaultMessage is: #. Delete Search +#: build/locale/src/components/Filter/FilterSearch.json #: build/locale/src/components/TableFilter/FilterChips.json msgctxt "button" msgid "Delete Search" @@ -2885,10 +2955,10 @@ msgctxt "dialog header" msgid "Delete Voucher" msgstr "" -#. [src.discounts.views.367317371] - dialog header +#. [src.discounts.views.VoucherList.367317371] - dialog header #. defaultMessage is: #. Delete Vouchers -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog header" msgid "Delete Vouchers" msgstr "" @@ -2922,11 +2992,11 @@ msgstr "" #. [src.categories.views.712767046] - dialog title #. defaultMessage is: #. Delete categories -#. [src.categories.views.712767046] - dialog title +#. [src.categories.views.CategoryList.712767046] - dialog title #. defaultMessage is: #. Delete categories #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "dialog title" msgid "Delete categories" msgstr "" @@ -2943,10 +3013,10 @@ msgctxt "dialog title" msgid "Delete category" msgstr "" -#. [src.collections.views.3817188998] - dialog title +#. [src.collections.views.CollectionList.3817188998] - dialog title #. defaultMessage is: #. Delete collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Delete collections" msgstr "" @@ -2959,14 +3029,31 @@ msgctxt "dialog header" msgid "Delete customer" msgstr "" -#. [src.customers.views.1946482599] - dialog header +#. [src.customers.views.CustomerList.1946482599] - dialog header #. defaultMessage is: #. Delete customers -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "dialog header" msgid "Delete customers" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.632633254] - dialog header +#. defaultMessage is: +#. Delete draft order +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "dialog header" +msgid "Delete draft order" +msgstr "" + +#. [src.shipping.views.ShippingZoneDetails.1947090060] - unassign country, +#. dialog header +#. defaultMessage is: +#. Delete from shipping zone +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country, dialog header" +msgid "Delete from shipping zone" +msgstr "" + #. [src.collections.views.942133001] - dialog title #. defaultMessage is: #. Delete image @@ -3027,6 +3114,14 @@ msgctxt "description" msgid "Deleted collection" msgstr "Slettede kollektion" +#. [src.orders.views.OrderDraftList.1648805446] +#. defaultMessage is: +#. Deleted draft orders +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json +msgctxt "description" +msgid "Deleted draft orders" +msgstr "" + #. [menuListDeletedMenu] #. defaultMessage is: #. Deleted menu @@ -3626,14 +3721,6 @@ msgctxt "order history message" msgid "Fulfilled {quantity} items" msgstr "" -#. [src.orders.components.OrderListFilter.2943502192] - order -#. defaultMessage is: -#. Fulfillment Status -#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json -msgctxt "order" -msgid "Fulfillment Status" -msgstr "" - #. [src.orders.components.OrderHistory.3081292385] - order history message #. defaultMessage is: #. Fulfillment confirmation was sent to customer @@ -3791,12 +3878,12 @@ msgid "If empty, the preview shows what will be autogenerated." msgstr "" "Hvis den er tom, vil forhåndsvisningen vise hvad der bliver autogenereret" -#. [src.attributes.components.AttributeProperties.2519239682] +#. [src.attributes.components.AttributeProperties.4048785456] #. defaultMessage is: -#. If enable this attribute can be used as a column in product table. +#. If enabled this attribute can be used as a column in product table. #: build/locale/src/attributes/components/AttributeProperties/AttributeProperties.json msgctxt "description" -msgid "If enable this attribute can be used as a column in product table." +msgid "If enabled this attribute can be used as a column in product table." msgstr "" #. [src.attributes.components.AttributeProperties.787251583] @@ -3902,6 +3989,22 @@ msgctxt "product variant stock" msgid "Inventory" msgstr "Inventar" +#. [src.staff.components.StaffAddMemberDialog.1481503299] - dialog header +#. defaultMessage is: +#. Invite Staff Member +#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json +msgctxt "dialog header" +msgid "Invite Staff Member" +msgstr "" + +#. [src.staff.components.StaffListPage.797461521] - button +#. defaultMessage is: +#. Invite staff member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "button" +msgid "Invite staff member" +msgstr "" + #. [src.productTypes.components.ProductTypeShipping.2143413921] - switch #. button #. defaultMessage is: @@ -4254,6 +4357,14 @@ msgctxt "voucher requirement" msgid "Minimum quantity of items" msgstr "" +#. [src.configuration.1233229030] +#. defaultMessage is: +#. Miscellaneous +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Miscellaneous" +msgstr "" + #. [src.attributes.components.AttributeDetails.3334509011] - product attribute #. type #. defaultMessage is: @@ -5086,6 +5197,14 @@ msgctxt "description" msgid "Order History" msgstr "" +#. [src.orders.components.OrderListFilter.2222765704] +#. defaultMessage is: +#. Order Status +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +msgctxt "description" +msgid "Order Status" +msgstr "" + #. [src.orders.components.OrderHistory.1230178536] - order history message #. defaultMessage is: #. Order address was updated @@ -5102,13 +5221,13 @@ msgctxt "order history message" msgid "Order confirmation was sent to customer" msgstr "" -#. [src.orders.views.1872939752] +#. [src.orders.views.OrderDraftList.1872939752] #. defaultMessage is: #. Order draft succesfully created #. [src.orders.views.OrderList.1872939752] #. defaultMessage is: #. Order draft succesfully created -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json #: build/locale/src/orders/views/OrderList/OrderList.json msgctxt "description" msgid "Order draft succesfully created" @@ -5773,6 +5892,14 @@ msgctxt "description" msgid "Product Name" msgstr "" +#. [src.configuration.3655543906] +#. defaultMessage is: +#. Product Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Product Settings" +msgstr "" + #. [src.discounts.components.DiscountProducts.4257289053] #. defaultMessage is: #. Product Type @@ -5931,12 +6058,12 @@ msgctxt "order history message" msgid "Products were added to draft order" msgstr "" -#. [src.orders.components.OrderHistory.2574162126] - order history message +#. [src.orders.components.OrderHistory.4067959693] - order history message #. defaultMessage is: -#. Products were removed from draft order +#. Products were deleted from draft order #: build/locale/src/orders/components/OrderHistory/OrderHistory.json msgctxt "order history message" -msgid "Products were removed from draft order" +msgid "Products were deleted from draft order" msgstr "" #. [src.properties] @@ -5963,10 +6090,10 @@ msgctxt "description" msgid "Provided email address does not exist in our database." msgstr "" -#. [src.collections.views.1547167026] - publish collections +#. [src.collections.views.CollectionList.1547167026] - publish collections #. defaultMessage is: #. Publish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "publish collections" msgid "Publish" msgstr "Publicerede" @@ -6003,10 +6130,10 @@ msgctxt "dialog header" msgid "Publish Products" msgstr "" -#. [src.collections.views.2823425739] - dialog title +#. [src.collections.views.CollectionList.2823425739] - dialog title #. defaultMessage is: #. Publish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Publish collections" msgstr "" @@ -6180,6 +6307,18 @@ msgctxt "shipping method price" msgid "Rate Price" msgstr "" +#. [src.orders.components.OrderListFilter.2415661583] - order status +#. defaultMessage is: +#. Ready to Capture +#. [src.orders.views.OrderList.readyToCapture] - order status +#. defaultMessage is: +#. Ready to Capture +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +#: build/locale/src/orders/views/OrderList/filters.json +msgctxt "order status" +msgid "Ready to Capture" +msgstr "" + #. [src.customers.components.CustomerOrders.3878642352] - section header #. defaultMessage is: #. Recent orders @@ -6228,22 +6367,14 @@ msgctxt "switch button" msgid "Release all stock allocated to this order" msgstr "" -#. [src.auth.components.LoginPage.3182284913] - login -#. defaultMessage is: -#. Remember me -#: build/locale/src/auth/components/LoginPage/LoginPage.json -msgctxt "login" -msgid "Remember me" -msgstr "" - #. [src.categories.views.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. -#. [src.categories.views.3488150607] +#. [src.categories.views.CategoryList.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "description" msgid "Remember this will also delete all products assigned to this category." msgstr "" @@ -6256,39 +6387,6 @@ msgctxt "button" msgid "Remove" msgstr "Fjern" -#. [src.products.views.490753666] - dialog header -#. defaultMessage is: -#. Remove Image -#: build/locale/src/products/views/ProductImage.json -msgctxt "dialog header" -msgid "Remove Image" -msgstr "" - -#. [src.orders.components.OrderDraftCancelDialog.500287069] - dialog header -#. defaultMessage is: -#. Remove draft order -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "dialog header" -msgid "Remove draft order" -msgstr "Fjern ordreudkast" - -#. [src.shipping.views.ShippingZoneDetails.254167659] - unassign country, -#. dialog header -#. defaultMessage is: -#. Remove from shipping zone -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country, dialog header" -msgid "Remove from shipping zone" -msgstr "" - -#. [src.orders.views.3880993240] -#. defaultMessage is: -#. Removed draft orders -#: build/locale/src/orders/views/OrderDraftList.json -msgctxt "description" -msgid "Removed draft orders" -msgstr "" - #. [src.pages.views.1457312643] #. defaultMessage is: #. Removed page @@ -6454,6 +6552,18 @@ msgctxt "button" msgid "Save" msgstr "Gem" +#. [src.components.Filter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#. [src.components.TableFilter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#: build/locale/src/components/Filter/FilterSearch.json +#: build/locale/src/components/TableFilter/FilterChips.json +msgctxt "button" +msgid "Save Custom Search" +msgstr "" + #. [src.components.SaveFilterTabDialog.1514415736] - save filter tab, header #. defaultMessage is: #. Save Custom Search @@ -6462,14 +6572,6 @@ msgctxt "save filter tab, header" msgid "Save Custom Search" msgstr "" -#. [src.components.TableFilter.1514415736] - button -#. defaultMessage is: -#. Save Custom Search -#: build/locale/src/components/TableFilter/FilterChips.json -msgctxt "button" -msgid "Save Custom Search" -msgstr "" - #. [src.products.components.ProductVariantCreatePage.2853608829] - button #. defaultMessage is: #. Save variant @@ -6486,6 +6588,14 @@ msgctxt "description" msgid "Saved changes" msgstr "" +#. [src.attributes.components.AttributeListPage.3916653510] +#. defaultMessage is: +#. Search Attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "description" +msgid "Search Attribute" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.902296540] #. defaultMessage is: #. Search Attributes @@ -6502,10 +6612,30 @@ msgctxt "description" msgid "Search Categories" msgstr "" +#. [src.categories.components.CategoryListPage.3841025483] +#. defaultMessage is: +#. Search Category +#. [src.translations.components.TranslationsEntitiesListPage.3841025483] +#. defaultMessage is: +#. Search Category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Category" +msgstr "" + +#. [src.collections.components.CollectionListPage.4057224233] +#. defaultMessage is: +#. Search Collection #. [src.components.AssignCollectionDialog.4057224233] #. defaultMessage is: #. Search Collection +#. [src.translations.components.TranslationsEntitiesListPage.4057224233] +#. defaultMessage is: +#. Search Collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json #: build/locale/src/components/AssignCollectionDialog/AssignCollectionDialog.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json msgctxt "description" msgid "Search Collection" msgstr "" @@ -6518,6 +6648,14 @@ msgctxt "description" msgid "Search Countries" msgstr "" +#. [src.customers.components.CustomerListPage.1643417013] +#. defaultMessage is: +#. Search Customer +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "description" +msgid "Search Customer" +msgstr "" + #. [src.orders.components.OrderCustomer.2433460203] #. defaultMessage is: #. Search Customers @@ -6526,6 +6664,14 @@ msgctxt "description" msgid "Search Customers" msgstr "" +#. [src.orders.components.OrderDraftListPage.77765281] +#. defaultMessage is: +#. Search Draft +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "description" +msgid "Search Draft" +msgstr "" + #. [src.translations.components.TranslationsCategoriesPage.1406947243] #. defaultMessage is: #. Search Engine Description @@ -6606,6 +6752,34 @@ msgctxt "description" msgid "Search Orders..." msgstr "" +#. [src.translations.components.TranslationsEntitiesListPage.2559018090] +#. defaultMessage is: +#. Search Page +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Page" +msgstr "" + +#. [src.translations.components.TranslationsEntitiesListPage.2105464697] +#. defaultMessage is: +#. Search Product +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product" +msgstr "" + +#. [src.productTypes.components.ProductTypeListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#. [src.translations.components.TranslationsEntitiesListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product Type" +msgstr "" + #. [src.components.AssignProductDialog.2850255786] #. defaultMessage is: #. Search Products @@ -6618,14 +6792,46 @@ msgctxt "description" msgid "Search Products" msgstr "" -#. [src.products.components.ProductListPage.3550330425] +#. [src.products.components.ProductListFilter.3550330425] #. defaultMessage is: #. Search Products... -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Search Products..." msgstr "" +#. [src.discounts.components.SaleListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#. [src.translations.components.TranslationsEntitiesListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Sale" +msgstr "" + +#. [src.staff.components.StaffListPage.61043583] +#. defaultMessage is: +#. Search Staff Member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "description" +msgid "Search Staff Member" +msgstr "" + +#. [src.discounts.components.VoucherListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#. [src.translations.components.TranslationsEntitiesListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Voucher" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.524117994] #. defaultMessage is: #. Search by attribute name @@ -6732,10 +6938,10 @@ msgctxt "description" msgid "Select all orders where:" msgstr "" -#. [src.products.components.ProductListPage.1421689426] +#. [src.products.components.ProductListFilter.1421689426] #. defaultMessage is: #. Select all products where: -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Select all products where:" msgstr "" @@ -6821,6 +7027,14 @@ msgctxt "description" msgid "Set plugin as Active" msgstr "" +#. [src.components.VisibilityCard.292404896] +#. defaultMessage is: +#. Set publication date +#: build/locale/src/components/VisibilityCard/VisibilityCard.json +msgctxt "description" +msgid "Set publication date" +msgstr "" + #. [src.discounts.shipment] - voucher discount #. defaultMessage is: #. Shipment @@ -7086,6 +7300,14 @@ msgctxt "staff section name" msgid "Staff Members" msgstr "" +#. [src.configuration.3140151600] +#. defaultMessage is: +#. Staff Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Staff Settings" +msgstr "" + #. [src.standard] - tax rate #. defaultMessage is: #. Standard @@ -8070,10 +8292,10 @@ msgctxt "payment status" msgid "Unpaid" msgstr "" -#. [src.collections.views.2237014112] - unpublish collections +#. [src.collections.views.CollectionList.2237014112] - unpublish collections #. defaultMessage is: #. Unpublish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "unpublish collections" msgid "Unpublish" msgstr "Upublicerede" @@ -8110,10 +8332,10 @@ msgctxt "dialog header" msgid "Unpublish Products" msgstr "" -#. [src.collections.views.2637364047] - dialog title +#. [src.collections.views.CollectionList.2637364047] - dialog title #. defaultMessage is: #. Unpublish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Unpublish collections" msgstr "" @@ -8613,6 +8835,22 @@ msgctxt "description" msgid "ZIP / Postal code" msgstr "" +#. [src.productTypes.components.ProductTypeListPage.3479705616] - button +#. defaultMessage is: +#. create product type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "button" +msgid "create product type" +msgstr "" + +#. [src.staff.views.1308770978] - dialog header +#. defaultMessage is: +#. delete Staff User +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "dialog header" +msgid "delete Staff User" +msgstr "" + #. [orderPaymentVATDoesNotApply] - vat not included in order price #. defaultMessage is: #. does not apply @@ -8686,19 +8924,35 @@ msgctxt "product status is set as" msgid "is set as" msgstr "" -#. [src.staff.views.2240444792] - dialog header -#. defaultMessage is: -#. remove Staff User -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "dialog header" -msgid "remove Staff User" -msgstr "" - -#. [src.components.VisibilityCard.1815688500] +#. [src.collections.components.CollectionCreatePage.1815688500] - collection #. defaultMessage is: #. since {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.1815688500] - collection +#. defaultMessage is: +#. since {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "since {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.1815688500] - page +#. defaultMessage is: +#. since {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "since {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#. [src.products.components.ProductUpdatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "since {date}" msgstr "" @@ -8726,11 +8980,35 @@ msgctxt "weight" msgid "to {value} {unit}" msgstr "" -#. [src.components.VisibilityCard.2001551496] +#. [src.collections.components.CollectionCreatePage.2001551496] - collection #. defaultMessage is: #. will be visible from {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.2001551496] - collection +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "will be visible from {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.2001551496] - page +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "will be visible from {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#. [src.products.components.ProductUpdatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "will be visible from {date}" msgstr "" diff --git a/locale/de.json b/locale/de.json index 6cd5a4c10..2ca592184 100644 --- a/locale/de.json +++ b/locale/de.json @@ -1 +1 @@ -{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"Attribut löschen","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.350498821":"Attribut hinzufügen","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.2519239682":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"Name","src.categories.components.CategoryProducts.636461959":"Name","src.collections.components.CollectionProducts.636461959":"Name","src.products.components.ProductDetailsForm.636461959":"Name","src.collections.components.CollectionDetails.636461959":"Name","src.components.ProductList.636461959":"Name","src.discounts.components.SaleInfo.636461959":"Name","src.discounts.components.SaleList.636461959":"Name","src.discounts.components.SaleSummary.636461959":"Name","menuItemDialogNameLabel":"Name","src.products.components.ProductVariants.636461959":"Name","src.shipping.components.ShippingZoneRates.636461959":"Name","src.shipping.components.ShippingZonesList.636461959":"Name","src.staff.components.StaffList.636461959":"Name","src.translations.components.TranslationsEntitiesList.636461959":"Name","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.254756045":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.3182284913":"","src.auth.components.LoginPage.109182747":"Anmelden","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"Kategorie löschen","src.categories.views.2004894945":"Kategorie löschen","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.3229914152":"","src.categories.components.CategoryList.435697837":"","src.categories.components.CategoryList.2159874182":"Subkategorien","src.categories.components.CategoryUpdatePage.2159874182":"Subkategorien","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.228151782":"Kategorie hinzufügen","src.categories.components.CategoryProducts.2968663655":"Produkte","src.categories.components.CategoryUpdatePage.2968663655":"Produkte","src.discounts.components.DiscountCategories.2968663655":"Produkte","src.discounts.components.DiscountCollections.2968663655":"Produkte","src.products":"Produkte","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryProducts.3554578821":"Produkt hinzufügen","src.categories.components.CategoryProductsCard.3554578821":"Produkt hinzufügen","src.categories.components.CategoryProducts.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProducts.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.categories.components.CategoryProductsCard.4164156574":"","src.categories.views.1754466114":"","src.categories.views.1140231710":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.712767046":"","src.categories.views.299584400":"","src.categories.views.844574071":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.collections.components.CollectionCreatePage.3958681866":"Kollektion hinzufügen","src.collections.components.CollectionListPage.3958681866":"Kollektion hinzufügen","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"Verfügbarkeit","src.availability":"","src.collections.components.CollectionList.3640454975":"Veröffentlicht","src.collections.components.CollectionProducts.3640454975":"Veröffentlicht","src.discounts.components.DiscountProducts.3640454975":"Veröffentlicht","src.components.ProductList.3640454975":"Veröffentlicht","src.products.components.ProductListPage.3640454975":"Veröffentlicht","src.pages.components.PageList.3640454975":"Veröffentlicht","src.products.views.ProductList.published":"Veröffentlicht","src.collections.components.CollectionList.2341910657":"Nicht veröffentlicht","src.collections.components.CollectionProducts.2341910657":"Nicht veröffentlicht","src.discounts.components.DiscountProducts.2341910657":"Nicht veröffentlicht","src.components.ProductList.2341910657":"Nicht veröffentlicht","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.686910896":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"Bils löschen","src.collections.views.2402899582":"","src.collections.views.2237014112":"Veröffentlichung entfernen","src.pages.views.2237014112":"Veröffentlichung entfernen","src.products.views.ProductList.2237014112":"Veröffentlichung entfernen","src.collections.views.1547167026":"Veröffentlichen","src.pages.views.1547167026":"Veröffentlichen","src.products.views.ProductList.1547167026":"Veröffentlichen","src.collections.views.2823425739":"","src.collections.views.1348793822":"","src.collections.views.2637364047":"","src.collections.views.3944356444":"","src.collections.views.3817188998":"","src.collections.views.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"Abmelden","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.4057224233":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"Fehler","src.components.ErrorMessageCard.2845142593":"Fehler","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.FilterBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"Hinzufügen","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.ProductList.1134347598":"Preis","src.orders.components.OrderDraftDetailsProducts.1134347598":"Preis","src.orders.components.OrderFulfillment.1134347598":"Preis","src.products.components.ProductListPage.1134347598":"Preis","src.products.components.ProductPricing.1134347598":"Preis","src.orders.components.OrderUnfulfilledItems.1134347598":"Preis","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"Preis","src.shipping.components.ShippingZoneRates.1134347598":"Preis","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"Sichtbarkeit","src.pages.components.PageList.1459686496":"Sichtbarkeit","src.products.components.ProductListFilter.1459686496":"Sichtbarkeit","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"Versteckt","src.products.views.ProductList.hidden":"Versteckt","src.components.VisibilityCard.1815688500":"","src.components.VisibilityCard.2001551496":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","configurationMenuStaff":"","configurationMenuShipping":"","configurationMenuTaxes":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","src.customers.components.CustomerAddress.1320082647":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"Rechnungsadresse","src.customers.components.CustomerAddresses.3517722732":"Versandadresse","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"Anschrift","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"Notizen","src.orders.components.OrderCustomerNote.1520756907":"Notizen","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"Notiz","src.customers.components.CustomerDetails.577013340":"Notiz","src.customers.components.CustomerCreatePage.1934221653":"Kunde hinzufügen","src.customers.components.CustomerListPage.1934221653":"Kunde hinzufügen","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerOrders.3878642352":"Letzte Bestellungen","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"Datum","src.orders.components.OrderDraftList.4205493358":"Datum","src.orders.components.OrderList.4205493358":"Datum","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"Status","src.orders.components.OrderListFilter.1756106276":"Status","src.products.components.ProductListFilter.1756106276":"Status","src.products.components.ProductVariants.1756106276":"Status","src.customers.components.CustomerOrders.878013594":"Gesamtsumme","src.orders.components.OrderDraftDetailsProducts.878013594":"Gesamtsumme","src.orders.components.OrderDraftDetailsSummary.878013594":"Gesamtsumme","src.orders.components.OrderDraftList.878013594":"Gesamtsumme","src.orders.components.OrderFulfillment.878013594":"Gesamtsumme","src.orders.components.OrderUnfulfilledItems.878013594":"Gesamtsumme","src.orders.components.OrderList.878013594":"Gesamtsumme","src.orders.components.OrderPayment.878013594":"Gesamtsumme","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"Adresse löschen","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.1946482599":"","src.customers.views.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"Wert","src.discounts.components.SaleSummary.1148029984":"Wert","src.discounts.components.VoucherList.1148029984":"Wert","src.discounts.components.VoucherSummary.1148029984":"Wert","src.discounts.components.VoucherValue.1148029984":"Wert","src.products.components.ProductAttributes.1148029984":"Wert","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.1742771332":"","src.discounts.components.SalePricing.1099355007":"Preis","src.products.components.ProductPricing.1099355007":"Preis","src.products.components.ProductVariantPrice.1099355007":"Preis","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"Länder","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"Code","src.discounts.components.VoucherSummary.78726751":"Code","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.1536809153":"Gutschein hinzufügen","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"Gesamte Bestellung","src.discounts.products":"Bestimmte Produkte","src.discounts.shipment":"Versand","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.2809303671":"","src.discounts.views.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.367317371":"","src.discounts.views.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"Abbrechen","src.orders.views.OrderList.3528672691":"Abbrechen","src.confirm":"","src.delete":"Löschen","src.edit":"Bearbeiten","src.manage":"","src.remove":"Entfernen","src.save":"Sichern","src.show":"","src.undo":"","src.attributes":"Attribute","src.products.components.ProductAttributes.4153345096":"Attribute","src.categories":"Kategorien","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"Sammlungen","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"Konfiguration","src.customers":"Kunden","src.draftOrders":"","src.home":"Start","src.navigation":"Navigation","src.orders":"Bestellungen","src.pages":"Seiten","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"Angebote","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"Steuern","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"Steuern","src.taxes.components.CountryListPage.3955023266":"Steuern","src.translations":"","src.vouchers":"Gutscheine","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"Bezahlt","src.partiallyPaid":"","src.partiallyRefunded":"Teilweise zurückerstattet","src.refunded":"Voll zurückerstattet","src.unpaid":"","src.cancelled":"Abgebrochen","src.draft":"Entwurf","src.fulfilled":"Abgeschlossen","src.orders.views.OrderList.fulfilled":"Abgeschlossen","src.orders.components.OrderListFilter.1712863026":"Abgeschlossen","src.partiallyFulfilled":"Zum Teil abgeschlossen","src.unfulfilled":"Noch nicht abgeschlossen","src.orders.views.OrderList.unfulfilled":"Noch nicht abgeschlossen","src.orders.components.OrderListFilter.1751787272":"Noch nicht abgeschlossen","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","src.1395232177":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"Link","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"Bestellung abbrechen","src.orders.components.OrderDetailsPage.1854613983":"Bestellung abbrechen","src.orders.components.OrderDraftPage.1854613983":"Bestellung abbrechen","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"Kunde","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"Kunde","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"An Versandadresse","src.orders.components.OrderCustomerEditDialog.1411666943":"Kundeninformationen bearbeiten","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.500287069":"Entwurfsbestellung löschen","src.orders.components.OrderDraftCancelDialog.3199827590":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"Produkt","src.orders.components.OrderUnfulfilledItems.1895667608":"Produkt","src.orders.components.OrderDraftDetailsProducts.2796503714":"Menge","src.orders.components.OrderFulfillment.2796503714":"Menge","src.orders.components.OrderFulfillmentDialog.2796503714":"Menge","src.orders.components.OrderUnfulfilledItems.2796503714":"Menge","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"Zwischensumme","src.orders.components.OrderPayment.781550514":"Zwischensumme","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"Bestellung erstellen","src.orders.components.OrderListPage.2826235371":"Bestellung erstellen","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"Sendungsverfolgung hinzufügen","src.orders.components.OrderFulfillmentCancelDialog.732594284":"Auftragsabwicklung abbrechen","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"Auftragsabwicklung abbrechen","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"Artikelnummer","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"Sendungsnummer","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.2574162126":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"Bestellung wurde vollständig bezahlt","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"Bestellung wurde aufgegeben","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"Zahlungen","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2943502192":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"Versand","src.productTypes.components.ProductTypeShipping.1325966144":"Versand","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"Versand","src.orders.components.OrderPayment.3768782744":"Autorisierter Betrag","src.orders.components.OrderPayment.2320183694":"Eingelöste Summe","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"Einlösen","src.orders.components.OrderPayment.2845258362":"Erstatten","src.orders.components.OrderPayment.2444197639":"Storniert","src.orders.components.OrderPayment.3500506678":"Als bezahlt markieren","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"Betrag","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.2775402904":"","src.products.components.ProductListPage.2775402904":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"Abschluss","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.3880993240":"","src.orders.views.1161115149":"","src.orders.views.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.755314116":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"Titel","src.pages.components.PageList.1124600214":"Titel","src.pages.components.PageInfo.1116746286":"Inhalt","src.translations.components.TranslationsPagesPage.1116746286":"Inhalt","src.pages.components.PageList.3478065224":"Slug","src.pages.components.PageSlug.3478065224":"Slug","src.productTypes.components.ProductTypeAttributes.3478065224":"Slug","src.pages.components.PageList.3767550649":"Nicht veröffentlicht","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.1767905232":"Seite hinzufügen","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.3785394515":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"Werte","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"Bilder","src.products.components.ProductVariantImages.3240888698":"Bilder","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"Lager","src.products.components.ProductVariantStock.3841616483":"Lager","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListPage.821159718":"","src.products.components.ProductListPage.1421689426":"","src.products.components.ProductListPage.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"Lager","prodictStockInventoryLabel":"Lager","src.products.components.ProductVariantStock.3490038570":"Lager","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"Variante löschen","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"Varianten","src.products.components.ProductVariants.2153006789":"Varianten","src.products.components.ProductVariantNavigation.2845381934":"Variante hinzufügen","src.products.components.ProductVariants.2845381934":"Variante hinzufügen","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1542417144":"","src.products.views.1591632382":"","src.products.views.490753666":"","src.products.views.672103788":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.1694086800":"","src.products.views.ProductList.224127438":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.products.views.2178905289":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1756957616":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.889729490":"Produkttypen hinzufügen","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.4080551769":"","src.productTypes.views.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.352297149":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2474410767":"Versandzone hinzufügen","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.254167659":"","src.shipping.views.ShippingZoneDetails.1790261672":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"Schlüssel","src.siteSettings.components.SiteSettingsKeys.2446088470":"Schlüssel","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.3490059488":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"Rechte","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.3247064221":"Aktiv","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.802625341":"Neuen Mitarbeiter hinzufügen","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"Benutzer aktiv","src.staff.views.2240444792":"","src.staff.views.2728048444":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file +{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"Attribut löschen","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.3824684885":"","src.attributes.components.AttributeListPage.2417065806":"","src.attributes.components.AttributeListPage.3916653510":"","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.4048785456":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"Name","src.categories.components.CategoryProductList.636461959":"Name","src.components.ProductList.636461959":"Name","src.products.components.ProductList.636461959":"Name","src.collections.components.CollectionDetails.636461959":"Name","src.collections.components.CollectionProducts.636461959":"Name","src.products.components.ProductDetailsForm.636461959":"Name","src.discounts.components.SaleInfo.636461959":"Name","src.discounts.components.SaleList.636461959":"Name","src.discounts.components.SaleSummary.636461959":"Name","menuItemDialogNameLabel":"Name","src.plugins.components.PluginsList.636461959":"Name","src.products.components.ProductVariants.636461959":"Name","src.shipping.components.ShippingZoneRates.636461959":"Name","src.shipping.components.ShippingZonesList.636461959":"Name","src.staff.components.StaffList.636461959":"Name","src.translations.components.TranslationsEntitiesList.636461959":"Name","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.351422234":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.109182747":"Anmelden","src.auth.components.LoginPage.4028609483":"","src.auth.components.NewPasswordPage.1915811227":"","src.auth.components.NewPasswordPage.1254879564":"","src.auth.components.NewPasswordPage.2799926859":"","src.auth.components.NewPasswordPage.4253911811":"","src.auth.components.NewPasswordPage.2342634351":"","src.auth.components.ResetPasswordPage.2370700732":"","src.auth.components.ResetPasswordPage.3663311080":"","src.auth.components.ResetPasswordSuccessPage.4066297200":"","src.auth.components.ResetPasswordSuccessPage.2245157344":"","src.auth.views.2388238158":"","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"Kategorie löschen","src.categories.views.2004894945":"Kategorie löschen","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.2159874182":"Subkategorien","src.categories.components.CategoryUpdatePage.2159874182":"Subkategorien","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.1140231710":"","src.categories.views.1140231710":"","src.categories.components.CategoryListPage.4294878092":"","src.categories.components.CategoryListPage.3841025483":"","src.translations.components.TranslationsEntitiesListPage.3841025483":"","src.categories.components.CategoryProductList.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductList.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProductList.3640454975":"Veröffentlicht","src.components.ProductList.3640454975":"Veröffentlicht","src.products.components.ProductList.3640454975":"Veröffentlicht","src.products.components.ProductListPage.3640454975":"Veröffentlicht","productStatusLabel":"Veröffentlicht","src.collections.components.CollectionList.3640454975":"Veröffentlicht","src.collections.components.CollectionProducts.3640454975":"Veröffentlicht","src.discounts.components.DiscountProducts.3640454975":"Veröffentlicht","src.pages.components.PageList.3640454975":"Veröffentlicht","src.products.views.ProductList.published":"Veröffentlicht","src.categories.components.CategoryProductList.1134347598":"Preis","src.orders.components.OrderFulfillment.1134347598":"Preis","src.products.components.ProductList.1134347598":"Preis","src.products.components.ProductListPage.1134347598":"Preis","src.products.components.ProductPricing.1134347598":"Preis","src.components.ProductList.1134347598":"Preis","src.orders.components.OrderDraftDetailsProducts.1134347598":"Preis","src.orders.components.OrderUnfulfilledItems.1134347598":"Preis","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"Preis","src.shipping.components.ShippingZoneRates.1134347598":"Preis","src.categories.components.CategoryProductList.2341910657":"Nicht veröffentlicht","src.products.components.ProductList.2341910657":"Nicht veröffentlicht","src.collections.components.CollectionList.2341910657":"Nicht veröffentlicht","src.collections.components.CollectionProducts.2341910657":"Nicht veröffentlicht","src.discounts.components.DiscountProducts.2341910657":"Nicht veröffentlicht","src.components.ProductList.2341910657":"Nicht veröffentlicht","src.categories.components.CategoryProductList.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.products.components.ProductList.1657559629":"","src.categories.components.CategoryProducts.4164156574":"","src.categories.components.CategoryProducts.3554578821":"Produkt hinzufügen","src.categories.components.CategoryUpdatePage.2968663655":"Produkte","src.discounts.components.DiscountCategories.2968663655":"Produkte","src.discounts.components.DiscountCollections.2968663655":"Produkte","src.products":"Produkte","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryUpdatePage.3229914152":"","src.categories.components.CategoryUpdatePage.770296100":"","src.categories.views.1754466114":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.CategoryList.3488150607":"","src.categories.views.712767046":"","src.categories.views.CategoryList.712767046":"","src.categories.views.299584400":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.categories.views.CategoryList.2144707585":"","src.collections.components.CollectionCreatePage.3958681866":"Kollektion hinzufügen","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionCreatePage.2001551496":"","src.collections.components.CollectionDetailsPage.2001551496":"","src.pages.components.PageDetailsPage.2001551496":"","src.products.components.ProductCreatePage.2001551496":"","src.products.components.ProductUpdatePage.2001551496":"","src.collections.components.CollectionCreatePage.1815688500":"","src.collections.components.CollectionDetailsPage.1815688500":"","src.pages.components.PageDetailsPage.1815688500":"","src.products.components.ProductCreatePage.1815688500":"","src.products.components.ProductUpdatePage.1815688500":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"Verfügbarkeit","src.availability":"","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionListPage.686910896":"","src.collections.views.686910896":"","src.collections.components.CollectionListPage.1631917001":"","src.collections.components.CollectionListPage.4057224233":"","src.components.AssignCollectionDialog.4057224233":"","src.translations.components.TranslationsEntitiesListPage.4057224233":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"Bils löschen","src.collections.views.2402899582":"","src.collections.views.CollectionList.2237014112":"Veröffentlichung entfernen","src.pages.views.2237014112":"Veröffentlichung entfernen","src.products.views.ProductList.2237014112":"Veröffentlichung entfernen","src.collections.views.CollectionList.1547167026":"Veröffentlichen","src.pages.views.1547167026":"Veröffentlichen","src.products.views.ProductList.1547167026":"Veröffentlichen","src.collections.views.CollectionList.2823425739":"","src.collections.views.CollectionList.1348793822":"","src.collections.views.CollectionList.2637364047":"","src.collections.views.CollectionList.3944356444":"","src.collections.views.CollectionList.3817188998":"","src.collections.views.CollectionList.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"Abmelden","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"Fehler","src.components.ErrorMessageCard.2845142593":"Fehler","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.Filter.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.Filter.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.FilterBar.2340527467":"","src.components.SearchBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"Hinzufügen","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"Sichtbarkeit","src.pages.components.PageList.1459686496":"Sichtbarkeit","src.products.components.ProductListFilter.1459686496":"Sichtbarkeit","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"Versteckt","src.products.views.ProductList.hidden":"Versteckt","src.components.VisibilityCard.292404896":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","src.configuration.2326418019":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","src.configuration.3655543906":"","configurationMenuShipping":"","configurationMenuTaxes":"","src.configuration.3140151600":"","configurationMenuStaff":"","src.configuration.1233229030":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","configurationPluginsPages":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"Rechnungsadresse","src.customers.components.CustomerAddresses.3517722732":"Versandadresse","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"Anschrift","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"Notizen","src.orders.components.OrderCustomerNote.1520756907":"Notizen","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"Notiz","src.customers.components.CustomerDetails.577013340":"Notiz","src.customers.components.CustomerCreatePage.1934221653":"Kunde hinzufügen","src.customers.components.CustomerListPage.1934221653":"Kunde hinzufügen","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerListPage.477293306":"","src.customers.components.CustomerListPage.1643417013":"","src.customers.components.CustomerOrders.3878642352":"Letzte Bestellungen","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"Datum","src.orders.components.OrderDraftList.4205493358":"Datum","src.orders.components.OrderList.4205493358":"Datum","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"Status","src.orders.components.OrderListFilter.1756106276":"Status","src.plugins.components.PluginInfo.1756106276":"Status","src.products.components.ProductListFilter.1756106276":"Status","src.products.components.ProductVariants.1756106276":"Status","src.customers.components.CustomerOrders.878013594":"Gesamtsumme","src.orders.components.OrderDraftDetailsProducts.878013594":"Gesamtsumme","src.orders.components.OrderDraftDetailsSummary.878013594":"Gesamtsumme","src.orders.components.OrderDraftList.878013594":"Gesamtsumme","src.orders.components.OrderFulfillment.878013594":"Gesamtsumme","src.orders.components.OrderUnfulfilledItems.878013594":"Gesamtsumme","src.orders.components.OrderList.878013594":"Gesamtsumme","src.orders.components.OrderPayment.878013594":"Gesamtsumme","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"Adresse löschen","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.CustomerList.1946482599":"","src.customers.views.CustomerList.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","src.discounts.components.SaleListPage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"Wert","src.discounts.components.SaleSummary.1148029984":"Wert","src.discounts.components.VoucherList.1148029984":"Wert","src.discounts.components.VoucherSummary.1148029984":"Wert","src.discounts.components.VoucherValue.1148029984":"Wert","src.products.components.ProductAttributes.1148029984":"Wert","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.3907768880":"","src.discounts.components.SaleListPage.1866913828":"","src.translations.components.TranslationsEntitiesListPage.1866913828":"","src.discounts.components.SalePricing.1099355007":"Preis","src.products.components.ProductPricing.1099355007":"Preis","src.products.components.ProductVariantPrice.1099355007":"Preis","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"Länder","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"Code","src.discounts.components.VoucherSummary.78726751":"Code","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.614836274":"","src.discounts.components.VoucherListPage.1112241061":"","src.discounts.components.VoucherListPage.1930485532":"","src.translations.components.TranslationsEntitiesListPage.1930485532":"","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"Gesamte Bestellung","src.discounts.products":"Bestimmte Produkte","src.discounts.shipment":"Versand","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.SaleList.2809303671":"","src.discounts.views.SaleList.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.VoucherList.367317371":"","src.discounts.views.VoucherList.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.somethingWentWrong":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"Abbrechen","src.orders.views.OrderList.3528672691":"Abbrechen","src.confirm":"","src.delete":"Löschen","src.edit":"Bearbeiten","src.manage":"","src.remove":"Entfernen","src.save":"Sichern","src.show":"","src.undo":"","src.attributes":"Attribute","src.products.components.ProductAttributes.4153345096":"Attribute","src.categories":"Kategorien","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"Sammlungen","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"Konfiguration","src.customers":"Kunden","src.draftOrders":"","src.home":"Start","src.navigation":"Navigation","src.orders":"Bestellungen","src.pages":"Seiten","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.plugins":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"Angebote","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"Steuern","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"Steuern","src.taxes.components.CountryListPage.3955023266":"Steuern","src.translations":"","src.vouchers":"Gutscheine","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"Bezahlt","src.partiallyPaid":"","src.partiallyRefunded":"Teilweise zurückerstattet","src.refunded":"Voll zurückerstattet","src.unpaid":"","src.cancelled":"Abgebrochen","src.draft":"Entwurf","src.fulfilled":"Abgeschlossen","src.orders.views.OrderList.fulfilled":"Abgeschlossen","src.orders.components.OrderListFilter.1712863026":"Abgeschlossen","src.partiallyFulfilled":"Zum Teil abgeschlossen","src.unfulfilled":"Noch nicht abgeschlossen","src.orders.views.OrderList.unfulfilled":"Noch nicht abgeschlossen","src.orders.components.OrderListFilter.1751787272":"Noch nicht abgeschlossen","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"Link","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"Bestellung abbrechen","src.orders.components.OrderDetailsPage.1854613983":"Bestellung abbrechen","src.orders.components.OrderDraftPage.1854613983":"Bestellung abbrechen","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"Kunde","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"Kunde","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"An Versandadresse","src.orders.components.OrderCustomerEditDialog.1411666943":"Kundeninformationen bearbeiten","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.632633254":"","src.orders.components.OrderDraftCancelDialog.36681973":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"Produkt","src.orders.components.OrderUnfulfilledItems.1895667608":"Produkt","src.orders.components.OrderDraftDetailsProducts.2796503714":"Menge","src.orders.components.OrderFulfillment.2796503714":"Menge","src.orders.components.OrderFulfillmentDialog.2796503714":"Menge","src.orders.components.OrderUnfulfilledItems.2796503714":"Menge","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"Zwischensumme","src.orders.components.OrderPayment.781550514":"Zwischensumme","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"Bestellung erstellen","src.orders.components.OrderListPage.2826235371":"Bestellung erstellen","src.orders.components.OrderDraftListPage.551325728":"","src.orders.components.OrderDraftListPage.77765281":"","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"Sendungsverfolgung hinzufügen","src.orders.components.OrderFulfillmentCancelDialog.732594284":"Auftragsabwicklung abbrechen","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"Auftragsabwicklung abbrechen","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"Artikelnummer","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"Sendungsnummer","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.4067959693":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"Bestellung wurde vollständig bezahlt","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"Bestellung wurde aufgegeben","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"Zahlungen","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2415661583":"","src.orders.views.OrderList.readyToCapture":"","src.orders.components.OrderListFilter.2222765704":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"Versand","src.productTypes.components.ProductTypeShipping.1325966144":"Versand","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"Versand","src.orders.components.OrderPayment.3768782744":"Autorisierter Betrag","src.orders.components.OrderPayment.2320183694":"Eingelöste Summe","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"Einlösen","src.orders.components.OrderPayment.2845258362":"Erstatten","src.orders.components.OrderPayment.2444197639":"Storniert","src.orders.components.OrderPayment.3500506678":"Als bezahlt markieren","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"Betrag","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.1542417144":"","src.products.components.ProductListPage.1542417144":"","src.products.views.1542417144":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"Abschluss","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.OrderDraftList.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.OrderDraftList.1648805446":"","src.orders.views.OrderDraftList.1161115149":"","src.orders.views.OrderDraftList.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.1068617485":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"Titel","src.pages.components.PageList.1124600214":"Titel","src.pages.components.PageInfo.1116746286":"Inhalt","src.translations.components.TranslationsPagesPage.1116746286":"Inhalt","src.pages.components.PageList.3478065224":"Slug","src.pages.components.PageSlug.3478065224":"Slug","src.productTypes.components.ProductTypeAttributes.3478065224":"Slug","src.pages.components.PageList.3767550649":"Nicht veröffentlicht","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.3785394515":"","src.pages.views.3785394515":"","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.plugins.components.PluginInfo.3425535100":"","src.plugins.components.PluginsDetailsPage.3425535100":"","src.plugins.components.PluginInfo.1049131348":"","src.plugins.components.PluginInfo.4013064767":"","src.plugins.components.PluginsDetailsPage.3352026836":"","src.plugins.components.PluginsDetailsPage.2277745418":"","src.plugins.components.PluginsDetailsPage.1970881031":"","src.plugins.components.PluginSettings.1970881031":"","src.plugins.components.PluginsDetailsPage.4241018152":"","src.plugins.components.PluginsList.3247064221":"Aktiv","src.staff.components.StaffList.3247064221":"Aktiv","src.plugins.components.PluginsList.4120604650":"","src.plugins.components.PluginsList.666641390":"","src.plugins.views.100549097":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"Werte","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"Bilder","src.products.components.ProductVariantImages.3240888698":"Bilder","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"Lager","src.products.components.ProductVariantStock.3841616483":"Lager","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListFilter.821159718":"","src.products.components.ProductListFilter.1421689426":"","src.products.components.ProductListFilter.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"Lager","prodictStockInventoryLabel":"Lager","src.products.components.ProductVariantStock.3490038570":"Lager","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"Variante löschen","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"Varianten","src.products.components.ProductVariants.2153006789":"Varianten","src.products.components.ProductVariantNavigation.2845381934":"Variante hinzufügen","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.3989383405":"","src.products.views.3989383405":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1591632382":"","src.products.views.1731766393":"","src.products.views.2880386427":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1217376589":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.3479705616":"","src.productTypes.components.ProductTypeListPage.1776073799":"","src.productTypes.components.ProductTypeListPage.3420445375":"","src.translations.components.TranslationsEntitiesListPage.3420445375":"","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.ProductTypeList.4080551769":"","src.productTypes.views.ProductTypeList.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRates.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2673544109":"","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.1947090060":"","src.shipping.views.ShippingZoneDetails.131963671":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"Schlüssel","src.siteSettings.components.SiteSettingsKeys.2446088470":"Schlüssel","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.1481503299":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"Rechte","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.797461521":"","src.staff.components.StaffListPage.2852350932":"","src.staff.components.StaffListPage.61043583":"","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"Benutzer aktiv","src.staff.views.1308770978":"","src.staff.views.8878988":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.2105464697":"","src.translations.components.TranslationsEntitiesListPage.2559018090":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file diff --git a/locale/de.po b/locale/de.po index e647e7356..c1984bc66 100644 --- a/locale/de.po +++ b/locale/de.po @@ -13,7 +13,7 @@ # msgid "" msgstr "" -"POT-Creation-Date: 2019-09-06T13:56:36.897Z\n" +"POT-Creation-Date: 2019-09-16T15:25:09.340Z\n" "Last-Translator: Till Hinrichs , 2019\n" "Language-Team: German (https://www.transifex.com/mirumee/teams/34782/de/)\n" "MIME-Version: 1.0\n" @@ -151,22 +151,6 @@ msgctxt "create new menu item, header" msgid "Add Item" msgstr "" -#. [menuCreateDialogHeader] - dialog header -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json -msgctxt "dialog header" -msgid "Add Menu" -msgstr "" - -#. [menuListPageAddMenu] - button -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json -msgctxt "button" -msgid "Add Menu" -msgstr "" - #. [src.siteSettings.components.SiteSettingsKeyDialog.1238948746] - dialog #. header #. defaultMessage is: @@ -176,14 +160,6 @@ msgctxt "dialog header" msgid "Add New Authorization Key" msgstr "" -#. [src.pages.components.PageDetailsPage.755314116] - page header -#. defaultMessage is: -#. Add Page -#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json -msgctxt "page header" -msgid "Add Page" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.2892088870] - dialog header #. defaultMessage is: #. Add Price Rate @@ -192,38 +168,6 @@ msgctxt "dialog header" msgid "Add Price Rate" msgstr "" -#. [src.orders.components.OrderProductAddDialog.2775402904] - dialog header -#. defaultMessage is: -#. Add Product -#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json -msgctxt "dialog header" -msgid "Add Product" -msgstr "" - -#. [src.products.components.ProductListPage.2775402904] - button -#. defaultMessage is: -#. Add Product -#: build/locale/src/products/components/ProductListPage/ProductListPage.json -msgctxt "button" -msgid "Add Product" -msgstr "" - -#. [src.discounts.components.SaleListPage.1742771332] - button -#. defaultMessage is: -#. Add Sale -#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json -msgctxt "button" -msgid "Add Sale" -msgstr "" - -#. [src.staff.components.StaffAddMemberDialog.3490059488] - dialog header -#. defaultMessage is: -#. Add Staff Member -#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json -msgctxt "dialog header" -msgid "Add Staff Member" -msgstr "" - #. [src.attributes.components.AttributeValueEditDialog.1841790893] - add #. attribute value #. defaultMessage is: @@ -233,14 +177,6 @@ msgctxt "add attribute value" msgid "Add Value" msgstr "" -#. [src.products.views.2178905289] - header -#. defaultMessage is: -#. Add Variant -#: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "header" -msgid "Add Variant" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.1397795758] - add weight #. based shipping method, dialog header #. defaultMessage is: @@ -258,14 +194,6 @@ msgctxt "button" msgid "Add address" msgstr "" -#. [src.attributes.components.AttributeListPage.350498821] - button -#. defaultMessage is: -#. Add attribute -#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json -msgctxt "button" -msgid "Add attribute" -msgstr "Attribut hinzufügen" - #. [src.siteSettings.components.SiteSettingsKeyDialog.50561933] - button #. defaultMessage is: #. Add authentication @@ -274,14 +202,6 @@ msgctxt "button" msgid "Add authentication" msgstr "" -#. [src.categories.components.CategoryListPage.228151782] - button -#. defaultMessage is: -#. Add category -#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json -msgctxt "button" -msgid "Add category" -msgstr "Kategorie hinzufügen" - #. [src.collections.components.CollectionCreatePage.3958681866] - page header #. defaultMessage is: #. Add collection @@ -290,14 +210,6 @@ msgctxt "page header" msgid "Add collection" msgstr "Kollektion hinzufügen" -#. [src.collections.components.CollectionListPage.3958681866] - button -#. defaultMessage is: -#. Add collection -#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json -msgctxt "button" -msgid "Add collection" -msgstr "Kollektion hinzufügen" - #. [src.customers.components.CustomerCreatePage.1934221653] - page header #. defaultMessage is: #. Add customer @@ -330,14 +242,6 @@ msgctxt "button" msgid "Add key" msgstr "" -#. [menuItemsAddItem] - add new menu item -#. defaultMessage is: -#. Add new item -#: build/locale/src/navigation/components/MenuItems/MenuItems.json -msgctxt "add new menu item" -msgid "Add new item" -msgstr "" - #. [menuItemsPlaceholder] #. defaultMessage is: #. Add new menu item to begin creating menu @@ -372,14 +276,6 @@ msgctxt "button" msgid "Add or Edit Link" msgstr "" -#. [src.pages.components.PageListPage.1767905232] - button -#. defaultMessage is: -#. Add page -#: build/locale/src/pages/components/PageListPage/PageListPage.json -msgctxt "button" -msgid "Add page" -msgstr "Seite hinzufügen" - #. [src.categories.components.CategoryProducts.3554578821] - button #. defaultMessage is: #. Add product @@ -388,14 +284,6 @@ msgctxt "button" msgid "Add product" msgstr "Produkt hinzufügen" -#. [src.productTypes.components.ProductTypeListPage.889729490] - button -#. defaultMessage is: -#. Add product type -#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json -msgctxt "button" -msgid "Add product type" -msgstr "Produkttypen hinzufügen" - #. [src.orders.components.OrderDraftDetails.2528459381] - button #. defaultMessage is: #. Add products @@ -404,14 +292,6 @@ msgctxt "button" msgid "Add products" msgstr "" -#. [src.shipping.components.ShippingZoneRates.352297149] - button -#. defaultMessage is: -#. Add rate -#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json -msgctxt "button" -msgid "Add rate" -msgstr "" - #. [src.categories.components.CategoryCreatePage.2563994280] #. defaultMessage is: #. Add search engine title and description to make this category easier to @@ -473,30 +353,6 @@ msgctxt "button" msgid "Add shipping carrier" msgstr "" -#. [src.shipping.components.ShippingZonesList.2474410767] - button -#. defaultMessage is: -#. Add shipping zone -#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json -msgctxt "button" -msgid "Add shipping zone" -msgstr "Versandzone hinzufügen" - -#. [src.staff.components.StaffListPage.802625341] - button -#. defaultMessage is: -#. Add staff member -#: build/locale/src/staff/components/StaffListPage/StaffListPage.json -msgctxt "button" -msgid "Add staff member" -msgstr "Neuen Mitarbeiter hinzufügen" - -#. [src.categories.components.CategoryList.435697837] - button -#. defaultMessage is: -#. Add subcategory -#: build/locale/src/categories/components/CategoryList/CategoryList.json -msgctxt "button" -msgid "Add subcategory" -msgstr "" - #. [src.attributes.components.AttributeProperties.673770329] - add attribute #. as column in product list table #. defaultMessage is: @@ -524,35 +380,14 @@ msgctxt "dialog header" msgid "Add tracking code" msgstr "" -#. [src.attributes.components.AttributeValues.254756045] - add attribute value -#. button -#. defaultMessage is: -#. Add value -#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json -msgctxt "add attribute value button" -msgid "Add value" -msgstr "" - #. [src.products.components.ProductVariantNavigation.2845381934] - button #. defaultMessage is: #. Add variant -#. [src.products.components.ProductVariants.2845381934] - button -#. defaultMessage is: -#. Add variant #: build/locale/src/products/components/ProductVariantNavigation/ProductVariantNavigation.json -#: build/locale/src/products/components/ProductVariants/ProductVariants.json msgctxt "button" msgid "Add variant" msgstr "Variante hinzufügen" -#. [src.discounts.components.VoucherListPage.1536809153] - button -#. defaultMessage is: -#. Add voucher -#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json -msgctxt "button" -msgid "Add voucher" -msgstr "Gutschein hinzufügen" - #. [src.attributes.views.AttributeDetails.634268988] - added new attribute #. value #. defaultMessage is: @@ -610,14 +445,6 @@ msgctxt "description" msgid "Address line 2" msgstr "" -#. [src.customers.components.CustomerAddress.1320082647] - addres card header -#. defaultMessage is: -#. Address {addressNumber} -#: build/locale/src/customers/components/CustomerAddress/CustomerAddress.json -msgctxt "addres card header" -msgid "Address {addressNumber}" -msgstr "" - #. [src.attributes.components.AttributeValues.1565474525] - attribute values #. list: slug column header #. defaultMessage is: @@ -667,6 +494,46 @@ msgctxt "tax rate" msgid "Agricultural supplies" msgstr "" +#. [src.attributes.components.AttributeListPage.2417065806] - tab name +#. defaultMessage is: +#. All Attributes +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "tab name" +msgid "All Attributes" +msgstr "" + +#. [src.categories.components.CategoryListPage.4294878092] - tab name +#. defaultMessage is: +#. All Categories +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "tab name" +msgid "All Categories" +msgstr "" + +#. [src.collections.components.CollectionListPage.1631917001] - tab name +#. defaultMessage is: +#. All Collections +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "tab name" +msgid "All Collections" +msgstr "" + +#. [src.customers.components.CustomerListPage.477293306] - tab name +#. defaultMessage is: +#. All Customers +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "tab name" +msgid "All Customers" +msgstr "" + +#. [src.orders.components.OrderDraftListPage.551325728] - tab name +#. defaultMessage is: +#. All Drafts +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "tab name" +msgid "All Drafts" +msgstr "" + #. [src.orders.components.OrderListPage.875489544] - tab name #. defaultMessage is: #. All Orders @@ -684,22 +551,54 @@ msgctxt "section header" msgid "All Photos" msgstr "" -#. [src.products.components.ProductListPage.821159718] - tab name +#. [src.productTypes.components.ProductTypeListPage.1776073799] - tab name +#. defaultMessage is: +#. All Product Types +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "tab name" +msgid "All Product Types" +msgstr "" + +#. [src.products.components.ProductListFilter.821159718] - tab name #. defaultMessage is: #. All Products -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "tab name" msgid "All Products" msgstr "" -#. [src.categories.components.CategoryList.3229914152] - section header +#. [src.discounts.components.SaleListPage.3907768880] - tab name +#. defaultMessage is: +#. All Sales +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "tab name" +msgid "All Sales" +msgstr "" + +#. [src.staff.components.StaffListPage.2852350932] - tab name +#. defaultMessage is: +#. All Staff Members +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "tab name" +msgid "All Staff Members" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.3229914152] - section header #. defaultMessage is: #. All Subcategories -#: build/locale/src/categories/components/CategoryList/CategoryList.json +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json msgctxt "section header" msgid "All Subcategories" msgstr "" +#. [src.discounts.components.VoucherListPage.1112241061] - tab name +#. defaultMessage is: +#. All Vouchers +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "tab name" +msgid "All Vouchers" +msgstr "" + #. [src.taxes.components.TaxConfiguration.142803418] #. defaultMessage is: #. All products prices are entered with tax included @@ -807,6 +706,14 @@ msgctxt "description" msgid "Are you sure you want to delete collection's image?" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.36681973] +#. defaultMessage is: +#. Are you sure you want to delete draft #{number}? +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "description" +msgid "Are you sure you want to delete draft #{number}?" +msgstr "" + #. [menuDetailsDeleteMenuContent] #. defaultMessage is: #. Are you sure you want to delete menu {menuName}? @@ -823,6 +730,14 @@ msgctxt "description" msgid "Are you sure you want to delete this address from users address book?" msgstr "" +#. [src.products.views.2880386427] +#. defaultMessage is: +#. Are you sure you want to delete this image? +#: build/locale/src/products/views/ProductImage.json +msgctxt "description" +msgid "Are you sure you want to delete this image?" +msgstr "" + #. [src.attributes.components.AttributeDeleteDialog.3738429348] - dialog #. content #. defaultMessage is: @@ -873,12 +788,7 @@ msgstr "" #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this attribute} #. other{{displayQuantity} categories}}? -#. [src.categories.views.844574071] -#. defaultMessage is: -#. Are you sure you want to delete {counter,plural,one{this attribute} -#. other{{displayQuantity} categories}}? #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this attribute} " @@ -896,22 +806,33 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.2497542455] +#. [src.categories.views.CategoryList.2144707585] +#. defaultMessage is: +#. Are you sure you want to delete {counter,plural,one{this category} +#. other{{displayQuantity} categories}}? +#: build/locale/src/categories/views/CategoryList/CategoryList.json +msgctxt "description" +msgid "" +"Are you sure you want to delete {counter,plural,one{this category} " +"other{{displayQuantity} categories}}?" +msgstr "" + +#. [src.collections.views.CollectionList.2497542455] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this collection} " "other{{displayQuantity} collections}}?" msgstr "" -#. [src.customers.views.409347866] +#. [src.customers.views.CustomerList.409347866] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this customer} #. other{{displayQuantity} customers}}? -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this customer} " @@ -929,11 +850,11 @@ msgid "" "other{{displayQuantity} menus}}?" msgstr "" -#. [src.orders.views.1389231130] - dialog content +#. [src.orders.views.OrderDraftList.1389231130] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this order draft} #. other{{displayQuantity} orderDrafts}}? -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this order draft} " @@ -951,11 +872,11 @@ msgid "" "other{{displayQuantity} pages}}?" msgstr "" -#. [src.productTypes.views.2294091098] - dialog content +#. [src.productTypes.views.ProductTypeList.2294091098] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this product type} #. other{{displayQuantity} product types}}? -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this product type} " @@ -973,11 +894,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.discounts.views.2516361175] - dialog content +#. [src.discounts.views.SaleList.2516361175] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this sale} #. other{{displayQuantity} sales}}? -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this sale} " @@ -1006,17 +927,33 @@ msgid "" "other{{displayQuantity} variants}}?" msgstr "" -#. [src.discounts.views.1791926983] - dialog content +#. [src.discounts.views.VoucherList.1791926983] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this voucher} #. other{{displayQuantity} vouchers}}? -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this voucher} " "other{{displayQuantity} vouchers}}?" msgstr "" +#. [src.shipping.views.ShippingZoneDetails.131963671] - unassign country +#. defaultMessage is: +#. Are you sure you want to delete {countryName} from this shipping zone? +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country" +msgid "Are you sure you want to delete {countryName} from this shipping zone?" +msgstr "" + +#. [src.staff.views.8878988] +#. defaultMessage is: +#. Are you sure you want to delete {email} from staff members? +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "description" +msgid "Are you sure you want to delete {email} from staff members?" +msgstr "" + #. [src.customers.views.1927691511] - delete customer, dialog content #. defaultMessage is: #. Are you sure you want to delete {email}? @@ -1131,11 +1068,11 @@ msgctxt "description" msgid "Are you sure you want to mark this order as paid?" msgstr "" -#. [src.collections.views.1348793822] +#. [src.collections.views.CollectionList.1348793822] #. defaultMessage is: #. Are you sure you want to publish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to publish {counter,plural,one{this collection} " @@ -1164,30 +1101,6 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.orders.components.OrderDraftCancelDialog.3199827590] -#. defaultMessage is: -#. Are you sure you want to remove draft #{number}? -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "description" -msgid "Are you sure you want to remove draft #{number}?" -msgstr "" - -#. [src.products.views.672103788] -#. defaultMessage is: -#. Are you sure you want to remove this image? -#: build/locale/src/products/views/ProductImage.json -msgctxt "description" -msgid "Are you sure you want to remove this image?" -msgstr "" - -#. [src.shipping.views.ShippingZoneDetails.1790261672] - unassign country -#. defaultMessage is: -#. Are you sure you want to remove {countryName} from this shipping zone? -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country" -msgid "Are you sure you want to remove {countryName} from this shipping zone?" -msgstr "" - #. [src.staff.views.3945766678] #. defaultMessage is: #. Are you sure you want to remove {email} avatar? @@ -1196,14 +1109,6 @@ msgctxt "description" msgid "Are you sure you want to remove {email} avatar?" msgstr "" -#. [src.staff.views.2728048444] -#. defaultMessage is: -#. Are you sure you want to remove {email} from staff members? -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "description" -msgid "Are you sure you want to remove {email} from staff members?" -msgstr "" - #. [src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450] #. defaultMessage is: #. Are you sure you want to unassign {attributeName} from {productTypeName}? @@ -1284,11 +1189,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.3944356444] +#. [src.collections.views.CollectionList.3944356444] #. defaultMessage is: #. Are you sure you want to unpublish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to unpublish {counter,plural,one{this collection} " @@ -1449,6 +1354,15 @@ msgctxt "button" msgid "Assign products" msgstr "" +#. [src.attributes.components.AttributeValues.351422234] - assign attribute +#. value button +#. defaultMessage is: +#. Assign value +#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json +msgctxt "assign attribute value button" +msgid "Assign value" +msgstr "" + #. [src.attributes.components.AttributeDetails.3605174225] - attribute's slug #. short code label #. defaultMessage is: @@ -1527,6 +1441,14 @@ msgctxt "product attributes, section header" msgid "Attributes" msgstr "Attribute" +#. [src.configuration.2326418019] +#. defaultMessage is: +#. Attributes and Product Typess +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Attributes and Product Typess" +msgstr "" + #. [src.attributes.views.AttributeList.3218248395] - deleted multiple #. attributes #. defaultMessage is: @@ -2310,6 +2232,22 @@ msgctxt "description" msgid "Country area" msgstr "" +#. [menuCreateDialogHeader] - dialog header +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json +msgctxt "dialog header" +msgid "Create Menu" +msgstr "" + +#. [menuListPageAddMenu] - button +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json +msgctxt "button" +msgid "Create Menu" +msgstr "" + #. [src.attributes.components.AttributePage.2855501559] - page title #. defaultMessage is: #. Create New Attribute @@ -2334,6 +2272,30 @@ msgctxt "header" msgid "Create New Shipping Zone" msgstr "" +#. [src.pages.components.PageDetailsPage.1068617485] - page header +#. defaultMessage is: +#. Create Page +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page header" +msgid "Create Page" +msgstr "" + +#. [src.orders.components.OrderProductAddDialog.1542417144] - dialog header +#. defaultMessage is: +#. Create Product +#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json +msgctxt "dialog header" +msgid "Create Product" +msgstr "" + +#. [src.products.components.ProductListPage.1542417144] - button +#. defaultMessage is: +#. Create Product +#: build/locale/src/products/components/ProductListPage/ProductListPage.json +msgctxt "button" +msgid "Create Product" +msgstr "" + #. [src.products.views.1542417144] - window title #. defaultMessage is: #. Create Product @@ -2366,11 +2328,19 @@ msgctxt "page header" msgid "Create Sale" msgstr "" -#. [src.products.views.2362587265] - window title +#. [src.discounts.components.SaleListPage.3866518732] - button +#. defaultMessage is: +#. Create Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "button" +msgid "Create Sale" +msgstr "" + +#. [src.products.views.2362587265] - header #. defaultMessage is: #. Create Variant #: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "window title" +msgctxt "header" msgid "Create Variant" msgstr "" @@ -2382,6 +2352,22 @@ msgctxt "page header" msgid "Create Voucher" msgstr "" +#. [src.attributes.components.AttributeListPage.3824684885] - button +#. defaultMessage is: +#. Create attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "button" +msgid "Create attribute" +msgstr "" + +#. [src.categories.components.CategoryListPage.1140231710] - button +#. defaultMessage is: +#. Create category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "button" +msgid "Create category" +msgstr "" + #. [src.categories.views.1140231710] - window title #. defaultMessage is: #. Create category @@ -2390,6 +2376,14 @@ msgctxt "window title" msgid "Create category" msgstr "" +#. [src.collections.components.CollectionListPage.686910896] - button +#. defaultMessage is: +#. Create collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "button" +msgid "Create collection" +msgstr "" + #. [src.collections.views.686910896] - window title #. defaultMessage is: #. Create collection @@ -2406,6 +2400,14 @@ msgctxt "window title" msgid "Create customer" msgstr "" +#. [menuItemsAddItem] - add new menu item +#. defaultMessage is: +#. Create new item +#: build/locale/src/navigation/components/MenuItems/MenuItems.json +msgctxt "add new menu item" +msgid "Create new item" +msgstr "" + #. [src.orders.components.OrderDraftListPage.2826235371] - button #. defaultMessage is: #. Create order @@ -2418,6 +2420,14 @@ msgctxt "button" msgid "Create order" msgstr "Bestellung erstellen" +#. [src.pages.components.PageListPage.3785394515] - button +#. defaultMessage is: +#. Create page +#: build/locale/src/pages/components/PageListPage/PageListPage.json +msgctxt "button" +msgid "Create page" +msgstr "" + #. [src.pages.views.3785394515] - header #. defaultMessage is: #. Create page @@ -2429,11 +2439,55 @@ msgstr "" #. [src.shipping.components.ShippingZoneRateDialog.16061680] - button #. defaultMessage is: #. Create rate +#. [src.shipping.components.ShippingZoneRates.16061680] - button +#. defaultMessage is: +#. Create rate #: build/locale/src/shipping/components/ShippingZoneRateDialog/ShippingZoneRateDialog.json +#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json msgctxt "button" msgid "Create rate" msgstr "" +#. [src.shipping.components.ShippingZonesList.2673544109] - button +#. defaultMessage is: +#. Create shipping zone +#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json +msgctxt "button" +msgid "Create shipping zone" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.770296100] - button +#. defaultMessage is: +#. Create subcategory +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json +msgctxt "button" +msgid "Create subcategory" +msgstr "" + +#. [src.products.components.ProductVariants.3989383405] - button +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/components/ProductVariants/ProductVariants.json +msgctxt "button" +msgid "Create variant" +msgstr "" + +#. [src.products.views.3989383405] - window title +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/views/ProductVariantCreate.json +msgctxt "window title" +msgid "Create variant" +msgstr "" + +#. [src.discounts.components.VoucherListPage.614836274] - button +#. defaultMessage is: +#. Create voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "button" +msgid "Create voucher" +msgstr "" + #. [src.collections.views.1597339737] #. defaultMessage is: #. Created collection @@ -2480,7 +2534,11 @@ msgstr "" #. [src.components.FilterBar.2340527467] #. defaultMessage is: #. Custom Filter +#. [src.components.SearchBar.2340527467] +#. defaultMessage is: +#. Custom Filter #: build/locale/src/components/FilterBar/FilterBar.json +#: build/locale/src/components/SearchBar/SearchBar.json msgctxt "description" msgid "Custom Filter" msgstr "" @@ -2736,10 +2794,18 @@ msgctxt "dialog title" msgid "Delete Collection" msgstr "" -#. [src.orders.views.1161115149] - dialog header +#. [src.products.views.1731766393] - dialog header +#. defaultMessage is: +#. Delete Image +#: build/locale/src/products/views/ProductImage.json +msgctxt "dialog header" +msgid "Delete Image" +msgstr "" + +#. [src.orders.views.OrderDraftList.1161115149] - dialog header #. defaultMessage is: #. Delete Order Drafts -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog header" msgid "Delete Order Drafts" msgstr "" @@ -2777,10 +2843,10 @@ msgctxt "dialog header" msgid "Delete Product Type" msgstr "" -#. [src.productTypes.views.4080551769] - dialog header +#. [src.productTypes.views.ProductTypeList.4080551769] - dialog header #. defaultMessage is: #. Delete Product Types -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog header" msgid "Delete Product Types" msgstr "" @@ -2809,10 +2875,10 @@ msgctxt "dialog header" msgid "Delete Sale" msgstr "" -#. [src.discounts.views.2809303671] - dialog header +#. [src.discounts.views.SaleList.2809303671] - dialog header #. defaultMessage is: #. Delete Sales -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog header" msgid "Delete Sales" msgstr "" @@ -2826,9 +2892,13 @@ msgctxt "custom search delete, dialog header" msgid "Delete Search" msgstr "" +#. [src.components.Filter.2173195312] - button +#. defaultMessage is: +#. Delete Search #. [src.components.TableFilter.2173195312] - button #. defaultMessage is: #. Delete Search +#: build/locale/src/components/Filter/FilterSearch.json #: build/locale/src/components/TableFilter/FilterChips.json msgctxt "button" msgid "Delete Search" @@ -2895,10 +2965,10 @@ msgctxt "dialog header" msgid "Delete Voucher" msgstr "" -#. [src.discounts.views.367317371] - dialog header +#. [src.discounts.views.VoucherList.367317371] - dialog header #. defaultMessage is: #. Delete Vouchers -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog header" msgid "Delete Vouchers" msgstr "" @@ -2932,11 +3002,11 @@ msgstr "" #. [src.categories.views.712767046] - dialog title #. defaultMessage is: #. Delete categories -#. [src.categories.views.712767046] - dialog title +#. [src.categories.views.CategoryList.712767046] - dialog title #. defaultMessage is: #. Delete categories #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "dialog title" msgid "Delete categories" msgstr "" @@ -2953,10 +3023,10 @@ msgctxt "dialog title" msgid "Delete category" msgstr "Kategorie löschen" -#. [src.collections.views.3817188998] - dialog title +#. [src.collections.views.CollectionList.3817188998] - dialog title #. defaultMessage is: #. Delete collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Delete collections" msgstr "" @@ -2969,14 +3039,31 @@ msgctxt "dialog header" msgid "Delete customer" msgstr "" -#. [src.customers.views.1946482599] - dialog header +#. [src.customers.views.CustomerList.1946482599] - dialog header #. defaultMessage is: #. Delete customers -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "dialog header" msgid "Delete customers" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.632633254] - dialog header +#. defaultMessage is: +#. Delete draft order +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "dialog header" +msgid "Delete draft order" +msgstr "" + +#. [src.shipping.views.ShippingZoneDetails.1947090060] - unassign country, +#. dialog header +#. defaultMessage is: +#. Delete from shipping zone +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country, dialog header" +msgid "Delete from shipping zone" +msgstr "" + #. [src.collections.views.942133001] - dialog title #. defaultMessage is: #. Delete image @@ -3037,6 +3124,14 @@ msgctxt "description" msgid "Deleted collection" msgstr "Sammlung gelöscht" +#. [src.orders.views.OrderDraftList.1648805446] +#. defaultMessage is: +#. Deleted draft orders +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json +msgctxt "description" +msgid "Deleted draft orders" +msgstr "" + #. [menuListDeletedMenu] #. defaultMessage is: #. Deleted menu @@ -3636,14 +3731,6 @@ msgctxt "order history message" msgid "Fulfilled {quantity} items" msgstr "" -#. [src.orders.components.OrderListFilter.2943502192] - order -#. defaultMessage is: -#. Fulfillment Status -#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json -msgctxt "order" -msgid "Fulfillment Status" -msgstr "" - #. [src.orders.components.OrderHistory.3081292385] - order history message #. defaultMessage is: #. Fulfillment confirmation was sent to customer @@ -3802,12 +3889,12 @@ msgstr "" "Wenn diese Feld nicht ausgefüllt wird, zeigt die Vorschau was automatisch " "generiert wird." -#. [src.attributes.components.AttributeProperties.2519239682] +#. [src.attributes.components.AttributeProperties.4048785456] #. defaultMessage is: -#. If enable this attribute can be used as a column in product table. +#. If enabled this attribute can be used as a column in product table. #: build/locale/src/attributes/components/AttributeProperties/AttributeProperties.json msgctxt "description" -msgid "If enable this attribute can be used as a column in product table." +msgid "If enabled this attribute can be used as a column in product table." msgstr "" #. [src.attributes.components.AttributeProperties.787251583] @@ -3913,6 +4000,22 @@ msgctxt "product variant stock" msgid "Inventory" msgstr "Lager" +#. [src.staff.components.StaffAddMemberDialog.1481503299] - dialog header +#. defaultMessage is: +#. Invite Staff Member +#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json +msgctxt "dialog header" +msgid "Invite Staff Member" +msgstr "" + +#. [src.staff.components.StaffListPage.797461521] - button +#. defaultMessage is: +#. Invite staff member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "button" +msgid "Invite staff member" +msgstr "" + #. [src.productTypes.components.ProductTypeShipping.2143413921] - switch #. button #. defaultMessage is: @@ -4265,6 +4368,14 @@ msgctxt "voucher requirement" msgid "Minimum quantity of items" msgstr "" +#. [src.configuration.1233229030] +#. defaultMessage is: +#. Miscellaneous +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Miscellaneous" +msgstr "" + #. [src.attributes.components.AttributeDetails.3334509011] - product attribute #. type #. defaultMessage is: @@ -5097,6 +5208,14 @@ msgctxt "description" msgid "Order History" msgstr "" +#. [src.orders.components.OrderListFilter.2222765704] +#. defaultMessage is: +#. Order Status +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +msgctxt "description" +msgid "Order Status" +msgstr "" + #. [src.orders.components.OrderHistory.1230178536] - order history message #. defaultMessage is: #. Order address was updated @@ -5113,13 +5232,13 @@ msgctxt "order history message" msgid "Order confirmation was sent to customer" msgstr "" -#. [src.orders.views.1872939752] +#. [src.orders.views.OrderDraftList.1872939752] #. defaultMessage is: #. Order draft succesfully created #. [src.orders.views.OrderList.1872939752] #. defaultMessage is: #. Order draft succesfully created -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json #: build/locale/src/orders/views/OrderList/OrderList.json msgctxt "description" msgid "Order draft succesfully created" @@ -5784,6 +5903,14 @@ msgctxt "description" msgid "Product Name" msgstr "" +#. [src.configuration.3655543906] +#. defaultMessage is: +#. Product Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Product Settings" +msgstr "" + #. [src.discounts.components.DiscountProducts.4257289053] #. defaultMessage is: #. Product Type @@ -5942,12 +6069,12 @@ msgctxt "order history message" msgid "Products were added to draft order" msgstr "" -#. [src.orders.components.OrderHistory.2574162126] - order history message +#. [src.orders.components.OrderHistory.4067959693] - order history message #. defaultMessage is: -#. Products were removed from draft order +#. Products were deleted from draft order #: build/locale/src/orders/components/OrderHistory/OrderHistory.json msgctxt "order history message" -msgid "Products were removed from draft order" +msgid "Products were deleted from draft order" msgstr "" #. [src.properties] @@ -5974,10 +6101,10 @@ msgctxt "description" msgid "Provided email address does not exist in our database." msgstr "" -#. [src.collections.views.1547167026] - publish collections +#. [src.collections.views.CollectionList.1547167026] - publish collections #. defaultMessage is: #. Publish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "publish collections" msgid "Publish" msgstr "Veröffentlichen" @@ -6014,10 +6141,10 @@ msgctxt "dialog header" msgid "Publish Products" msgstr "" -#. [src.collections.views.2823425739] - dialog title +#. [src.collections.views.CollectionList.2823425739] - dialog title #. defaultMessage is: #. Publish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Publish collections" msgstr "" @@ -6191,6 +6318,18 @@ msgctxt "shipping method price" msgid "Rate Price" msgstr "" +#. [src.orders.components.OrderListFilter.2415661583] - order status +#. defaultMessage is: +#. Ready to Capture +#. [src.orders.views.OrderList.readyToCapture] - order status +#. defaultMessage is: +#. Ready to Capture +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +#: build/locale/src/orders/views/OrderList/filters.json +msgctxt "order status" +msgid "Ready to Capture" +msgstr "" + #. [src.customers.components.CustomerOrders.3878642352] - section header #. defaultMessage is: #. Recent orders @@ -6239,22 +6378,14 @@ msgctxt "switch button" msgid "Release all stock allocated to this order" msgstr "" -#. [src.auth.components.LoginPage.3182284913] - login -#. defaultMessage is: -#. Remember me -#: build/locale/src/auth/components/LoginPage/LoginPage.json -msgctxt "login" -msgid "Remember me" -msgstr "" - #. [src.categories.views.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. -#. [src.categories.views.3488150607] +#. [src.categories.views.CategoryList.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "description" msgid "Remember this will also delete all products assigned to this category." msgstr "" @@ -6267,39 +6398,6 @@ msgctxt "button" msgid "Remove" msgstr "Entfernen" -#. [src.products.views.490753666] - dialog header -#. defaultMessage is: -#. Remove Image -#: build/locale/src/products/views/ProductImage.json -msgctxt "dialog header" -msgid "Remove Image" -msgstr "" - -#. [src.orders.components.OrderDraftCancelDialog.500287069] - dialog header -#. defaultMessage is: -#. Remove draft order -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "dialog header" -msgid "Remove draft order" -msgstr "Entwurfsbestellung löschen" - -#. [src.shipping.views.ShippingZoneDetails.254167659] - unassign country, -#. dialog header -#. defaultMessage is: -#. Remove from shipping zone -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country, dialog header" -msgid "Remove from shipping zone" -msgstr "" - -#. [src.orders.views.3880993240] -#. defaultMessage is: -#. Removed draft orders -#: build/locale/src/orders/views/OrderDraftList.json -msgctxt "description" -msgid "Removed draft orders" -msgstr "" - #. [src.pages.views.1457312643] #. defaultMessage is: #. Removed page @@ -6465,6 +6563,18 @@ msgctxt "button" msgid "Save" msgstr "Sichern" +#. [src.components.Filter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#. [src.components.TableFilter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#: build/locale/src/components/Filter/FilterSearch.json +#: build/locale/src/components/TableFilter/FilterChips.json +msgctxt "button" +msgid "Save Custom Search" +msgstr "" + #. [src.components.SaveFilterTabDialog.1514415736] - save filter tab, header #. defaultMessage is: #. Save Custom Search @@ -6473,14 +6583,6 @@ msgctxt "save filter tab, header" msgid "Save Custom Search" msgstr "" -#. [src.components.TableFilter.1514415736] - button -#. defaultMessage is: -#. Save Custom Search -#: build/locale/src/components/TableFilter/FilterChips.json -msgctxt "button" -msgid "Save Custom Search" -msgstr "" - #. [src.products.components.ProductVariantCreatePage.2853608829] - button #. defaultMessage is: #. Save variant @@ -6497,6 +6599,14 @@ msgctxt "description" msgid "Saved changes" msgstr "" +#. [src.attributes.components.AttributeListPage.3916653510] +#. defaultMessage is: +#. Search Attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "description" +msgid "Search Attribute" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.902296540] #. defaultMessage is: #. Search Attributes @@ -6513,10 +6623,30 @@ msgctxt "description" msgid "Search Categories" msgstr "" +#. [src.categories.components.CategoryListPage.3841025483] +#. defaultMessage is: +#. Search Category +#. [src.translations.components.TranslationsEntitiesListPage.3841025483] +#. defaultMessage is: +#. Search Category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Category" +msgstr "" + +#. [src.collections.components.CollectionListPage.4057224233] +#. defaultMessage is: +#. Search Collection #. [src.components.AssignCollectionDialog.4057224233] #. defaultMessage is: #. Search Collection +#. [src.translations.components.TranslationsEntitiesListPage.4057224233] +#. defaultMessage is: +#. Search Collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json #: build/locale/src/components/AssignCollectionDialog/AssignCollectionDialog.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json msgctxt "description" msgid "Search Collection" msgstr "" @@ -6529,6 +6659,14 @@ msgctxt "description" msgid "Search Countries" msgstr "" +#. [src.customers.components.CustomerListPage.1643417013] +#. defaultMessage is: +#. Search Customer +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "description" +msgid "Search Customer" +msgstr "" + #. [src.orders.components.OrderCustomer.2433460203] #. defaultMessage is: #. Search Customers @@ -6537,6 +6675,14 @@ msgctxt "description" msgid "Search Customers" msgstr "" +#. [src.orders.components.OrderDraftListPage.77765281] +#. defaultMessage is: +#. Search Draft +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "description" +msgid "Search Draft" +msgstr "" + #. [src.translations.components.TranslationsCategoriesPage.1406947243] #. defaultMessage is: #. Search Engine Description @@ -6617,6 +6763,34 @@ msgctxt "description" msgid "Search Orders..." msgstr "" +#. [src.translations.components.TranslationsEntitiesListPage.2559018090] +#. defaultMessage is: +#. Search Page +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Page" +msgstr "" + +#. [src.translations.components.TranslationsEntitiesListPage.2105464697] +#. defaultMessage is: +#. Search Product +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product" +msgstr "" + +#. [src.productTypes.components.ProductTypeListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#. [src.translations.components.TranslationsEntitiesListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product Type" +msgstr "" + #. [src.components.AssignProductDialog.2850255786] #. defaultMessage is: #. Search Products @@ -6629,14 +6803,46 @@ msgctxt "description" msgid "Search Products" msgstr "" -#. [src.products.components.ProductListPage.3550330425] +#. [src.products.components.ProductListFilter.3550330425] #. defaultMessage is: #. Search Products... -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Search Products..." msgstr "" +#. [src.discounts.components.SaleListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#. [src.translations.components.TranslationsEntitiesListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Sale" +msgstr "" + +#. [src.staff.components.StaffListPage.61043583] +#. defaultMessage is: +#. Search Staff Member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "description" +msgid "Search Staff Member" +msgstr "" + +#. [src.discounts.components.VoucherListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#. [src.translations.components.TranslationsEntitiesListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Voucher" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.524117994] #. defaultMessage is: #. Search by attribute name @@ -6743,10 +6949,10 @@ msgctxt "description" msgid "Select all orders where:" msgstr "" -#. [src.products.components.ProductListPage.1421689426] +#. [src.products.components.ProductListFilter.1421689426] #. defaultMessage is: #. Select all products where: -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Select all products where:" msgstr "" @@ -6832,6 +7038,14 @@ msgctxt "description" msgid "Set plugin as Active" msgstr "" +#. [src.components.VisibilityCard.292404896] +#. defaultMessage is: +#. Set publication date +#: build/locale/src/components/VisibilityCard/VisibilityCard.json +msgctxt "description" +msgid "Set publication date" +msgstr "" + #. [src.discounts.shipment] - voucher discount #. defaultMessage is: #. Shipment @@ -7097,6 +7311,14 @@ msgctxt "staff section name" msgid "Staff Members" msgstr "" +#. [src.configuration.3140151600] +#. defaultMessage is: +#. Staff Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Staff Settings" +msgstr "" + #. [src.standard] - tax rate #. defaultMessage is: #. Standard @@ -8081,10 +8303,10 @@ msgctxt "payment status" msgid "Unpaid" msgstr "" -#. [src.collections.views.2237014112] - unpublish collections +#. [src.collections.views.CollectionList.2237014112] - unpublish collections #. defaultMessage is: #. Unpublish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "unpublish collections" msgid "Unpublish" msgstr "Veröffentlichung entfernen" @@ -8121,10 +8343,10 @@ msgctxt "dialog header" msgid "Unpublish Products" msgstr "" -#. [src.collections.views.2637364047] - dialog title +#. [src.collections.views.CollectionList.2637364047] - dialog title #. defaultMessage is: #. Unpublish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Unpublish collections" msgstr "" @@ -8624,6 +8846,22 @@ msgctxt "description" msgid "ZIP / Postal code" msgstr "" +#. [src.productTypes.components.ProductTypeListPage.3479705616] - button +#. defaultMessage is: +#. create product type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "button" +msgid "create product type" +msgstr "" + +#. [src.staff.views.1308770978] - dialog header +#. defaultMessage is: +#. delete Staff User +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "dialog header" +msgid "delete Staff User" +msgstr "" + #. [orderPaymentVATDoesNotApply] - vat not included in order price #. defaultMessage is: #. does not apply @@ -8697,19 +8935,35 @@ msgctxt "product status is set as" msgid "is set as" msgstr "" -#. [src.staff.views.2240444792] - dialog header -#. defaultMessage is: -#. remove Staff User -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "dialog header" -msgid "remove Staff User" -msgstr "" - -#. [src.components.VisibilityCard.1815688500] +#. [src.collections.components.CollectionCreatePage.1815688500] - collection #. defaultMessage is: #. since {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.1815688500] - collection +#. defaultMessage is: +#. since {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "since {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.1815688500] - page +#. defaultMessage is: +#. since {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "since {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#. [src.products.components.ProductUpdatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "since {date}" msgstr "" @@ -8737,11 +8991,35 @@ msgctxt "weight" msgid "to {value} {unit}" msgstr "" -#. [src.components.VisibilityCard.2001551496] +#. [src.collections.components.CollectionCreatePage.2001551496] - collection #. defaultMessage is: #. will be visible from {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.2001551496] - collection +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "will be visible from {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.2001551496] - page +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "will be visible from {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#. [src.products.components.ProductUpdatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "will be visible from {date}" msgstr "" diff --git a/locale/el.json b/locale/el.json index a613c1220..72ffe4f9f 100644 --- a/locale/el.json +++ b/locale/el.json @@ -1 +1 @@ -{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.350498821":"Προσθήκη χαρακτηριστικού","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.2519239682":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"Όνομα","src.categories.components.CategoryProducts.636461959":"Όνομα","src.collections.components.CollectionProducts.636461959":"Όνομα","src.products.components.ProductDetailsForm.636461959":"Όνομα","src.collections.components.CollectionDetails.636461959":"Όνομα","src.components.ProductList.636461959":"Όνομα","src.discounts.components.SaleInfo.636461959":"Όνομα","src.discounts.components.SaleList.636461959":"Όνομα","src.discounts.components.SaleSummary.636461959":"Όνομα","menuItemDialogNameLabel":"Όνομα","src.products.components.ProductVariants.636461959":"Όνομα","src.shipping.components.ShippingZoneRates.636461959":"Όνομα","src.shipping.components.ShippingZonesList.636461959":"Όνομα","src.staff.components.StaffList.636461959":"Όνομα","src.translations.components.TranslationsEntitiesList.636461959":"Όνομα","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.254756045":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.3182284913":"","src.auth.components.LoginPage.109182747":"Είσοδος","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"","src.categories.views.2004894945":"","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.3229914152":"","src.categories.components.CategoryList.435697837":"","src.categories.components.CategoryList.2159874182":"","src.categories.components.CategoryUpdatePage.2159874182":"","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.228151782":"Πρόσθηκη κατηγορίας","src.categories.components.CategoryProducts.2968663655":"Προϊόντα","src.categories.components.CategoryUpdatePage.2968663655":"Προϊόντα","src.discounts.components.DiscountCategories.2968663655":"Προϊόντα","src.discounts.components.DiscountCollections.2968663655":"Προϊόντα","src.products":"Προϊόντα","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryProducts.3554578821":"Προσθήκη προϊόντος","src.categories.components.CategoryProductsCard.3554578821":"Προσθήκη προϊόντος","src.categories.components.CategoryProducts.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProducts.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.categories.components.CategoryProductsCard.4164156574":"","src.categories.views.1754466114":"","src.categories.views.1140231710":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.712767046":"","src.categories.views.299584400":"","src.categories.views.844574071":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.collections.components.CollectionCreatePage.3958681866":"","src.collections.components.CollectionListPage.3958681866":"","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"","src.availability":"","src.collections.components.CollectionList.3640454975":"Δημοσιευμένο","src.collections.components.CollectionProducts.3640454975":"Δημοσιευμένο","src.discounts.components.DiscountProducts.3640454975":"Δημοσιευμένο","src.components.ProductList.3640454975":"Δημοσιευμένο","src.products.components.ProductListPage.3640454975":"Δημοσιευμένο","src.pages.components.PageList.3640454975":"Δημοσιευμένο","src.products.views.ProductList.published":"Δημοσιευμένο","src.collections.components.CollectionList.2341910657":"Μη δημοσιευμένο","src.collections.components.CollectionProducts.2341910657":"Μη δημοσιευμένο","src.discounts.components.DiscountProducts.2341910657":"Μη δημοσιευμένο","src.components.ProductList.2341910657":"Μη δημοσιευμένο","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.686910896":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"","src.collections.views.2402899582":"","src.collections.views.2237014112":"","src.pages.views.2237014112":"","src.products.views.ProductList.2237014112":"","src.collections.views.1547167026":"Δημοσίευση","src.pages.views.1547167026":"Δημοσίευση","src.products.views.ProductList.1547167026":"Δημοσίευση","src.collections.views.2823425739":"","src.collections.views.1348793822":"","src.collections.views.2637364047":"","src.collections.views.3944356444":"","src.collections.views.3817188998":"","src.collections.views.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"Αποσύνδεση","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.4057224233":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"","src.components.ErrorMessageCard.2845142593":"","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.FilterBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.ProductList.1134347598":"Τιμή","src.orders.components.OrderDraftDetailsProducts.1134347598":"Τιμή","src.orders.components.OrderFulfillment.1134347598":"Τιμή","src.products.components.ProductListPage.1134347598":"Τιμή","src.products.components.ProductPricing.1134347598":"Τιμή","src.orders.components.OrderUnfulfilledItems.1134347598":"Τιμή","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"Τιμή","src.shipping.components.ShippingZoneRates.1134347598":"Τιμή","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"","src.pages.components.PageList.1459686496":"","src.products.components.ProductListFilter.1459686496":"","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"","src.products.views.ProductList.hidden":"","src.components.VisibilityCard.1815688500":"","src.components.VisibilityCard.2001551496":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","configurationMenuStaff":"","configurationMenuShipping":"","configurationMenuTaxes":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","src.customers.components.CustomerAddress.1320082647":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"Διεύθυνση τιμολόγησης","src.customers.components.CustomerAddresses.3517722732":"","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"Διεύθυνση","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"Σημειώσεις","src.orders.components.OrderCustomerNote.1520756907":"Σημειώσεις","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"Σημείωση","src.customers.components.CustomerDetails.577013340":"Σημείωση","src.customers.components.CustomerCreatePage.1934221653":"","src.customers.components.CustomerListPage.1934221653":"","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerOrders.3878642352":"","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"Ημερομηνία","src.orders.components.OrderDraftList.4205493358":"Ημερομηνία","src.orders.components.OrderList.4205493358":"Ημερομηνία","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"","src.orders.components.OrderListFilter.1756106276":"","src.products.components.ProductListFilter.1756106276":"","src.products.components.ProductVariants.1756106276":"","src.customers.components.CustomerOrders.878013594":"Σύνολο","src.orders.components.OrderDraftDetailsProducts.878013594":"Σύνολο","src.orders.components.OrderDraftDetailsSummary.878013594":"Σύνολο","src.orders.components.OrderDraftList.878013594":"Σύνολο","src.orders.components.OrderFulfillment.878013594":"Σύνολο","src.orders.components.OrderUnfulfilledItems.878013594":"Σύνολο","src.orders.components.OrderList.878013594":"Σύνολο","src.orders.components.OrderPayment.878013594":"Σύνολο","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.1946482599":"","src.customers.views.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"Αξία","src.discounts.components.SaleSummary.1148029984":"Αξία","src.discounts.components.VoucherList.1148029984":"Αξία","src.discounts.components.VoucherSummary.1148029984":"Αξία","src.discounts.components.VoucherValue.1148029984":"Αξία","src.products.components.ProductAttributes.1148029984":"Αξία","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.1742771332":"","src.discounts.components.SalePricing.1099355007":"","src.products.components.ProductPricing.1099355007":"","src.products.components.ProductVariantPrice.1099355007":"","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"Χώρες","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"Κωδικός","src.discounts.components.VoucherSummary.78726751":"Κωδικός","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.1536809153":"","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"","src.discounts.shipment":"","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.2809303671":"","src.discounts.views.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.367317371":"","src.discounts.views.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"","src.orders.views.OrderList.3528672691":"","src.confirm":"","src.delete":"","src.edit":"Επεξεργασία","src.manage":"","src.remove":"Αφαίρεση","src.save":"","src.show":"","src.undo":"","src.attributes":"","src.products.components.ProductAttributes.4153345096":"","src.categories":"Κατηγορίες","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"Συλλογές","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"","src.customers":"","src.draftOrders":"","src.home":"","src.navigation":"","src.orders":"","src.pages":"","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"Πωλήσεις","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"","src.taxes.components.CountryListPage.3955023266":"","src.translations":"","src.vouchers":"","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"","src.partiallyPaid":"","src.partiallyRefunded":"","src.refunded":"","src.unpaid":"","src.cancelled":"","src.draft":"","src.fulfilled":"","src.orders.views.OrderList.fulfilled":"","src.orders.components.OrderListFilter.1712863026":"","src.partiallyFulfilled":"","src.unfulfilled":"","src.orders.views.OrderList.unfulfilled":"","src.orders.components.OrderListFilter.1751787272":"","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","src.1395232177":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"Σύνδεσμος","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"","src.orders.components.OrderDetailsPage.1854613983":"","src.orders.components.OrderDraftPage.1854613983":"","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"Πελάτης","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"Πελάτης","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"","src.orders.components.OrderCustomerEditDialog.1411666943":"","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.500287069":"","src.orders.components.OrderDraftCancelDialog.3199827590":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"","src.orders.components.OrderUnfulfilledItems.1895667608":"","src.orders.components.OrderDraftDetailsProducts.2796503714":"Ποσότητα","src.orders.components.OrderFulfillment.2796503714":"Ποσότητα","src.orders.components.OrderFulfillmentDialog.2796503714":"Ποσότητα","src.orders.components.OrderUnfulfilledItems.2796503714":"Ποσότητα","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"","src.orders.components.OrderPayment.781550514":"","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"","src.orders.components.OrderListPage.2826235371":"","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"","src.orders.components.OrderFulfillmentCancelDialog.732594284":"","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"Αριθμός εντοπισμού","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.2574162126":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"Πληρωμή","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2943502192":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"Αποστολή","src.productTypes.components.ProductTypeShipping.1325966144":"Αποστολή","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"Αποστολή","src.orders.components.OrderPayment.3768782744":"Προεγκεκριμένο ποσό","src.orders.components.OrderPayment.2320183694":"Εκκαθαρισμένο ποσό","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"Εκκαθάριση","src.orders.components.OrderPayment.2845258362":"Επιστροφή","src.orders.components.OrderPayment.2444197639":"","src.orders.components.OrderPayment.3500506678":"","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"Ποσό","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.2775402904":"","src.products.components.ProductListPage.2775402904":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.3880993240":"","src.orders.views.1161115149":"","src.orders.views.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.755314116":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"Τίτλος","src.pages.components.PageList.1124600214":"Τίτλος","src.pages.components.PageInfo.1116746286":"Περιεχόμενο","src.translations.components.TranslationsPagesPage.1116746286":"Περιεχόμενο","src.pages.components.PageList.3478065224":"","src.pages.components.PageSlug.3478065224":"","src.productTypes.components.ProductTypeAttributes.3478065224":"","src.pages.components.PageList.3767550649":"","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.1767905232":"","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.3785394515":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"","src.products.components.ProductVariantImages.3240888698":"","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"","src.products.components.ProductVariantStock.3841616483":"","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListPage.821159718":"","src.products.components.ProductListPage.1421689426":"","src.products.components.ProductListPage.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"","prodictStockInventoryLabel":"","src.products.components.ProductVariantStock.3490038570":"","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"","src.products.components.ProductVariants.2153006789":"","src.products.components.ProductVariantNavigation.2845381934":"Προσθήκη παραλλαγής","src.products.components.ProductVariants.2845381934":"Προσθήκη παραλλαγής","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1542417144":"","src.products.views.1591632382":"","src.products.views.490753666":"","src.products.views.672103788":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.1694086800":"","src.products.views.ProductList.224127438":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.products.views.2178905289":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1756957616":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.889729490":"Προσθήκη τύπου προϊόντων","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.4080551769":"","src.productTypes.views.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.352297149":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2474410767":"","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.254167659":"","src.shipping.views.ShippingZoneDetails.1790261672":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"Κλειδί","src.siteSettings.components.SiteSettingsKeys.2446088470":"Κλειδί","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.3490059488":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"Δικαιώματα","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.3247064221":"Ενεργό","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.802625341":"","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"Ο χρήστης είναι ενεργός","src.staff.views.2240444792":"","src.staff.views.2728048444":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file +{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.3824684885":"","src.attributes.components.AttributeListPage.2417065806":"","src.attributes.components.AttributeListPage.3916653510":"","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.4048785456":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"Όνομα","src.categories.components.CategoryProductList.636461959":"Όνομα","src.components.ProductList.636461959":"Όνομα","src.products.components.ProductList.636461959":"Όνομα","src.collections.components.CollectionDetails.636461959":"Όνομα","src.collections.components.CollectionProducts.636461959":"Όνομα","src.products.components.ProductDetailsForm.636461959":"Όνομα","src.discounts.components.SaleInfo.636461959":"Όνομα","src.discounts.components.SaleList.636461959":"Όνομα","src.discounts.components.SaleSummary.636461959":"Όνομα","menuItemDialogNameLabel":"Όνομα","src.plugins.components.PluginsList.636461959":"Όνομα","src.products.components.ProductVariants.636461959":"Όνομα","src.shipping.components.ShippingZoneRates.636461959":"Όνομα","src.shipping.components.ShippingZonesList.636461959":"Όνομα","src.staff.components.StaffList.636461959":"Όνομα","src.translations.components.TranslationsEntitiesList.636461959":"Όνομα","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.351422234":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.109182747":"Είσοδος","src.auth.components.LoginPage.4028609483":"","src.auth.components.NewPasswordPage.1915811227":"","src.auth.components.NewPasswordPage.1254879564":"","src.auth.components.NewPasswordPage.2799926859":"","src.auth.components.NewPasswordPage.4253911811":"","src.auth.components.NewPasswordPage.2342634351":"","src.auth.components.ResetPasswordPage.2370700732":"","src.auth.components.ResetPasswordPage.3663311080":"","src.auth.components.ResetPasswordSuccessPage.4066297200":"","src.auth.components.ResetPasswordSuccessPage.2245157344":"","src.auth.views.2388238158":"","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"","src.categories.views.2004894945":"","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.2159874182":"","src.categories.components.CategoryUpdatePage.2159874182":"","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.1140231710":"","src.categories.views.1140231710":"","src.categories.components.CategoryListPage.4294878092":"","src.categories.components.CategoryListPage.3841025483":"","src.translations.components.TranslationsEntitiesListPage.3841025483":"","src.categories.components.CategoryProductList.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductList.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProductList.3640454975":"Δημοσιευμένο","src.components.ProductList.3640454975":"Δημοσιευμένο","src.products.components.ProductList.3640454975":"Δημοσιευμένο","src.products.components.ProductListPage.3640454975":"Δημοσιευμένο","productStatusLabel":"Δημοσιευμένο","src.collections.components.CollectionList.3640454975":"Δημοσιευμένο","src.collections.components.CollectionProducts.3640454975":"Δημοσιευμένο","src.discounts.components.DiscountProducts.3640454975":"Δημοσιευμένο","src.pages.components.PageList.3640454975":"Δημοσιευμένο","src.products.views.ProductList.published":"Δημοσιευμένο","src.categories.components.CategoryProductList.1134347598":"Τιμή","src.orders.components.OrderFulfillment.1134347598":"Τιμή","src.products.components.ProductList.1134347598":"Τιμή","src.products.components.ProductListPage.1134347598":"Τιμή","src.products.components.ProductPricing.1134347598":"Τιμή","src.components.ProductList.1134347598":"Τιμή","src.orders.components.OrderDraftDetailsProducts.1134347598":"Τιμή","src.orders.components.OrderUnfulfilledItems.1134347598":"Τιμή","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"Τιμή","src.shipping.components.ShippingZoneRates.1134347598":"Τιμή","src.categories.components.CategoryProductList.2341910657":"Μη δημοσιευμένο","src.products.components.ProductList.2341910657":"Μη δημοσιευμένο","src.collections.components.CollectionList.2341910657":"Μη δημοσιευμένο","src.collections.components.CollectionProducts.2341910657":"Μη δημοσιευμένο","src.discounts.components.DiscountProducts.2341910657":"Μη δημοσιευμένο","src.components.ProductList.2341910657":"Μη δημοσιευμένο","src.categories.components.CategoryProductList.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.products.components.ProductList.1657559629":"","src.categories.components.CategoryProducts.4164156574":"","src.categories.components.CategoryProducts.3554578821":"Προσθήκη προϊόντος","src.categories.components.CategoryUpdatePage.2968663655":"Προϊόντα","src.discounts.components.DiscountCategories.2968663655":"Προϊόντα","src.discounts.components.DiscountCollections.2968663655":"Προϊόντα","src.products":"Προϊόντα","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryUpdatePage.3229914152":"","src.categories.components.CategoryUpdatePage.770296100":"","src.categories.views.1754466114":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.CategoryList.3488150607":"","src.categories.views.712767046":"","src.categories.views.CategoryList.712767046":"","src.categories.views.299584400":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.categories.views.CategoryList.2144707585":"","src.collections.components.CollectionCreatePage.3958681866":"","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionCreatePage.2001551496":"","src.collections.components.CollectionDetailsPage.2001551496":"","src.pages.components.PageDetailsPage.2001551496":"","src.products.components.ProductCreatePage.2001551496":"","src.products.components.ProductUpdatePage.2001551496":"","src.collections.components.CollectionCreatePage.1815688500":"","src.collections.components.CollectionDetailsPage.1815688500":"","src.pages.components.PageDetailsPage.1815688500":"","src.products.components.ProductCreatePage.1815688500":"","src.products.components.ProductUpdatePage.1815688500":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"","src.availability":"","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionListPage.686910896":"","src.collections.views.686910896":"","src.collections.components.CollectionListPage.1631917001":"","src.collections.components.CollectionListPage.4057224233":"","src.components.AssignCollectionDialog.4057224233":"","src.translations.components.TranslationsEntitiesListPage.4057224233":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"","src.collections.views.2402899582":"","src.collections.views.CollectionList.2237014112":"","src.pages.views.2237014112":"","src.products.views.ProductList.2237014112":"","src.collections.views.CollectionList.1547167026":"Δημοσίευση","src.pages.views.1547167026":"Δημοσίευση","src.products.views.ProductList.1547167026":"Δημοσίευση","src.collections.views.CollectionList.2823425739":"","src.collections.views.CollectionList.1348793822":"","src.collections.views.CollectionList.2637364047":"","src.collections.views.CollectionList.3944356444":"","src.collections.views.CollectionList.3817188998":"","src.collections.views.CollectionList.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"Αποσύνδεση","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"","src.components.ErrorMessageCard.2845142593":"","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.Filter.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.Filter.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.FilterBar.2340527467":"","src.components.SearchBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"","src.pages.components.PageList.1459686496":"","src.products.components.ProductListFilter.1459686496":"","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"","src.products.views.ProductList.hidden":"","src.components.VisibilityCard.292404896":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","src.configuration.2326418019":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","src.configuration.3655543906":"","configurationMenuShipping":"","configurationMenuTaxes":"","src.configuration.3140151600":"","configurationMenuStaff":"","src.configuration.1233229030":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","configurationPluginsPages":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"Διεύθυνση τιμολόγησης","src.customers.components.CustomerAddresses.3517722732":"","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"Διεύθυνση","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"Σημειώσεις","src.orders.components.OrderCustomerNote.1520756907":"Σημειώσεις","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"Σημείωση","src.customers.components.CustomerDetails.577013340":"Σημείωση","src.customers.components.CustomerCreatePage.1934221653":"","src.customers.components.CustomerListPage.1934221653":"","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerListPage.477293306":"","src.customers.components.CustomerListPage.1643417013":"","src.customers.components.CustomerOrders.3878642352":"","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"Ημερομηνία","src.orders.components.OrderDraftList.4205493358":"Ημερομηνία","src.orders.components.OrderList.4205493358":"Ημερομηνία","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"","src.orders.components.OrderListFilter.1756106276":"","src.plugins.components.PluginInfo.1756106276":"","src.products.components.ProductListFilter.1756106276":"","src.products.components.ProductVariants.1756106276":"","src.customers.components.CustomerOrders.878013594":"Σύνολο","src.orders.components.OrderDraftDetailsProducts.878013594":"Σύνολο","src.orders.components.OrderDraftDetailsSummary.878013594":"Σύνολο","src.orders.components.OrderDraftList.878013594":"Σύνολο","src.orders.components.OrderFulfillment.878013594":"Σύνολο","src.orders.components.OrderUnfulfilledItems.878013594":"Σύνολο","src.orders.components.OrderList.878013594":"Σύνολο","src.orders.components.OrderPayment.878013594":"Σύνολο","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.CustomerList.1946482599":"","src.customers.views.CustomerList.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","src.discounts.components.SaleListPage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"Αξία","src.discounts.components.SaleSummary.1148029984":"Αξία","src.discounts.components.VoucherList.1148029984":"Αξία","src.discounts.components.VoucherSummary.1148029984":"Αξία","src.discounts.components.VoucherValue.1148029984":"Αξία","src.products.components.ProductAttributes.1148029984":"Αξία","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.3907768880":"","src.discounts.components.SaleListPage.1866913828":"","src.translations.components.TranslationsEntitiesListPage.1866913828":"","src.discounts.components.SalePricing.1099355007":"","src.products.components.ProductPricing.1099355007":"","src.products.components.ProductVariantPrice.1099355007":"","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"Χώρες","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"Κωδικός","src.discounts.components.VoucherSummary.78726751":"Κωδικός","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.614836274":"","src.discounts.components.VoucherListPage.1112241061":"","src.discounts.components.VoucherListPage.1930485532":"","src.translations.components.TranslationsEntitiesListPage.1930485532":"","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"","src.discounts.shipment":"","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.SaleList.2809303671":"","src.discounts.views.SaleList.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.VoucherList.367317371":"","src.discounts.views.VoucherList.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.somethingWentWrong":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"","src.orders.views.OrderList.3528672691":"","src.confirm":"","src.delete":"","src.edit":"Επεξεργασία","src.manage":"","src.remove":"Αφαίρεση","src.save":"","src.show":"","src.undo":"","src.attributes":"","src.products.components.ProductAttributes.4153345096":"","src.categories":"Κατηγορίες","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"Συλλογές","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"","src.customers":"","src.draftOrders":"","src.home":"","src.navigation":"","src.orders":"","src.pages":"","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.plugins":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"Πωλήσεις","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"","src.taxes.components.CountryListPage.3955023266":"","src.translations":"","src.vouchers":"","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"","src.partiallyPaid":"","src.partiallyRefunded":"","src.refunded":"","src.unpaid":"","src.cancelled":"","src.draft":"","src.fulfilled":"","src.orders.views.OrderList.fulfilled":"","src.orders.components.OrderListFilter.1712863026":"","src.partiallyFulfilled":"","src.unfulfilled":"","src.orders.views.OrderList.unfulfilled":"","src.orders.components.OrderListFilter.1751787272":"","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"Σύνδεσμος","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"","src.orders.components.OrderDetailsPage.1854613983":"","src.orders.components.OrderDraftPage.1854613983":"","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"Πελάτης","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"Πελάτης","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"","src.orders.components.OrderCustomerEditDialog.1411666943":"","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.632633254":"","src.orders.components.OrderDraftCancelDialog.36681973":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"","src.orders.components.OrderUnfulfilledItems.1895667608":"","src.orders.components.OrderDraftDetailsProducts.2796503714":"Ποσότητα","src.orders.components.OrderFulfillment.2796503714":"Ποσότητα","src.orders.components.OrderFulfillmentDialog.2796503714":"Ποσότητα","src.orders.components.OrderUnfulfilledItems.2796503714":"Ποσότητα","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"","src.orders.components.OrderPayment.781550514":"","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"","src.orders.components.OrderListPage.2826235371":"","src.orders.components.OrderDraftListPage.551325728":"","src.orders.components.OrderDraftListPage.77765281":"","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"","src.orders.components.OrderFulfillmentCancelDialog.732594284":"","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"Αριθμός εντοπισμού","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.4067959693":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"Πληρωμή","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2415661583":"","src.orders.views.OrderList.readyToCapture":"","src.orders.components.OrderListFilter.2222765704":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"Αποστολή","src.productTypes.components.ProductTypeShipping.1325966144":"Αποστολή","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"Αποστολή","src.orders.components.OrderPayment.3768782744":"Προεγκεκριμένο ποσό","src.orders.components.OrderPayment.2320183694":"Εκκαθαρισμένο ποσό","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"Εκκαθάριση","src.orders.components.OrderPayment.2845258362":"Επιστροφή","src.orders.components.OrderPayment.2444197639":"","src.orders.components.OrderPayment.3500506678":"","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"Ποσό","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.1542417144":"","src.products.components.ProductListPage.1542417144":"","src.products.views.1542417144":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.OrderDraftList.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.OrderDraftList.1648805446":"","src.orders.views.OrderDraftList.1161115149":"","src.orders.views.OrderDraftList.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.1068617485":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"Τίτλος","src.pages.components.PageList.1124600214":"Τίτλος","src.pages.components.PageInfo.1116746286":"Περιεχόμενο","src.translations.components.TranslationsPagesPage.1116746286":"Περιεχόμενο","src.pages.components.PageList.3478065224":"","src.pages.components.PageSlug.3478065224":"","src.productTypes.components.ProductTypeAttributes.3478065224":"","src.pages.components.PageList.3767550649":"","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.3785394515":"","src.pages.views.3785394515":"","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.plugins.components.PluginInfo.3425535100":"","src.plugins.components.PluginsDetailsPage.3425535100":"","src.plugins.components.PluginInfo.1049131348":"","src.plugins.components.PluginInfo.4013064767":"","src.plugins.components.PluginsDetailsPage.3352026836":"","src.plugins.components.PluginsDetailsPage.2277745418":"","src.plugins.components.PluginsDetailsPage.1970881031":"","src.plugins.components.PluginSettings.1970881031":"","src.plugins.components.PluginsDetailsPage.4241018152":"","src.plugins.components.PluginsList.3247064221":"Ενεργό","src.staff.components.StaffList.3247064221":"Ενεργό","src.plugins.components.PluginsList.4120604650":"","src.plugins.components.PluginsList.666641390":"","src.plugins.views.100549097":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"","src.products.components.ProductVariantImages.3240888698":"","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"","src.products.components.ProductVariantStock.3841616483":"","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListFilter.821159718":"","src.products.components.ProductListFilter.1421689426":"","src.products.components.ProductListFilter.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"","prodictStockInventoryLabel":"","src.products.components.ProductVariantStock.3490038570":"","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"","src.products.components.ProductVariants.2153006789":"","src.products.components.ProductVariantNavigation.2845381934":"Προσθήκη παραλλαγής","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.3989383405":"","src.products.views.3989383405":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1591632382":"","src.products.views.1731766393":"","src.products.views.2880386427":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1217376589":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.3479705616":"","src.productTypes.components.ProductTypeListPage.1776073799":"","src.productTypes.components.ProductTypeListPage.3420445375":"","src.translations.components.TranslationsEntitiesListPage.3420445375":"","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.ProductTypeList.4080551769":"","src.productTypes.views.ProductTypeList.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRates.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2673544109":"","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.1947090060":"","src.shipping.views.ShippingZoneDetails.131963671":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"Κλειδί","src.siteSettings.components.SiteSettingsKeys.2446088470":"Κλειδί","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.1481503299":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"Δικαιώματα","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.797461521":"","src.staff.components.StaffListPage.2852350932":"","src.staff.components.StaffListPage.61043583":"","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"Ο χρήστης είναι ενεργός","src.staff.views.1308770978":"","src.staff.views.8878988":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.2105464697":"","src.translations.components.TranslationsEntitiesListPage.2559018090":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file diff --git a/locale/el.po b/locale/el.po index 6d4ec5ad7..bb2cef71a 100644 --- a/locale/el.po +++ b/locale/el.po @@ -6,7 +6,7 @@ # msgid "" msgstr "" -"POT-Creation-Date: 2019-09-06T13:56:36.897Z\n" +"POT-Creation-Date: 2019-09-16T15:25:09.340Z\n" "Last-Translator: Yiannis Inglessis , 2019\n" "Language-Team: Greek (https://www.transifex.com/mirumee/teams/34782/el/)\n" "MIME-Version: 1.0\n" @@ -144,22 +144,6 @@ msgctxt "create new menu item, header" msgid "Add Item" msgstr "" -#. [menuCreateDialogHeader] - dialog header -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json -msgctxt "dialog header" -msgid "Add Menu" -msgstr "" - -#. [menuListPageAddMenu] - button -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json -msgctxt "button" -msgid "Add Menu" -msgstr "" - #. [src.siteSettings.components.SiteSettingsKeyDialog.1238948746] - dialog #. header #. defaultMessage is: @@ -169,14 +153,6 @@ msgctxt "dialog header" msgid "Add New Authorization Key" msgstr "" -#. [src.pages.components.PageDetailsPage.755314116] - page header -#. defaultMessage is: -#. Add Page -#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json -msgctxt "page header" -msgid "Add Page" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.2892088870] - dialog header #. defaultMessage is: #. Add Price Rate @@ -185,38 +161,6 @@ msgctxt "dialog header" msgid "Add Price Rate" msgstr "" -#. [src.orders.components.OrderProductAddDialog.2775402904] - dialog header -#. defaultMessage is: -#. Add Product -#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json -msgctxt "dialog header" -msgid "Add Product" -msgstr "" - -#. [src.products.components.ProductListPage.2775402904] - button -#. defaultMessage is: -#. Add Product -#: build/locale/src/products/components/ProductListPage/ProductListPage.json -msgctxt "button" -msgid "Add Product" -msgstr "" - -#. [src.discounts.components.SaleListPage.1742771332] - button -#. defaultMessage is: -#. Add Sale -#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json -msgctxt "button" -msgid "Add Sale" -msgstr "" - -#. [src.staff.components.StaffAddMemberDialog.3490059488] - dialog header -#. defaultMessage is: -#. Add Staff Member -#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json -msgctxt "dialog header" -msgid "Add Staff Member" -msgstr "" - #. [src.attributes.components.AttributeValueEditDialog.1841790893] - add #. attribute value #. defaultMessage is: @@ -226,14 +170,6 @@ msgctxt "add attribute value" msgid "Add Value" msgstr "" -#. [src.products.views.2178905289] - header -#. defaultMessage is: -#. Add Variant -#: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "header" -msgid "Add Variant" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.1397795758] - add weight #. based shipping method, dialog header #. defaultMessage is: @@ -251,14 +187,6 @@ msgctxt "button" msgid "Add address" msgstr "" -#. [src.attributes.components.AttributeListPage.350498821] - button -#. defaultMessage is: -#. Add attribute -#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json -msgctxt "button" -msgid "Add attribute" -msgstr "Προσθήκη χαρακτηριστικού" - #. [src.siteSettings.components.SiteSettingsKeyDialog.50561933] - button #. defaultMessage is: #. Add authentication @@ -267,14 +195,6 @@ msgctxt "button" msgid "Add authentication" msgstr "" -#. [src.categories.components.CategoryListPage.228151782] - button -#. defaultMessage is: -#. Add category -#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json -msgctxt "button" -msgid "Add category" -msgstr "Πρόσθηκη κατηγορίας" - #. [src.collections.components.CollectionCreatePage.3958681866] - page header #. defaultMessage is: #. Add collection @@ -283,14 +203,6 @@ msgctxt "page header" msgid "Add collection" msgstr "" -#. [src.collections.components.CollectionListPage.3958681866] - button -#. defaultMessage is: -#. Add collection -#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json -msgctxt "button" -msgid "Add collection" -msgstr "" - #. [src.customers.components.CustomerCreatePage.1934221653] - page header #. defaultMessage is: #. Add customer @@ -323,14 +235,6 @@ msgctxt "button" msgid "Add key" msgstr "" -#. [menuItemsAddItem] - add new menu item -#. defaultMessage is: -#. Add new item -#: build/locale/src/navigation/components/MenuItems/MenuItems.json -msgctxt "add new menu item" -msgid "Add new item" -msgstr "" - #. [menuItemsPlaceholder] #. defaultMessage is: #. Add new menu item to begin creating menu @@ -365,14 +269,6 @@ msgctxt "button" msgid "Add or Edit Link" msgstr "" -#. [src.pages.components.PageListPage.1767905232] - button -#. defaultMessage is: -#. Add page -#: build/locale/src/pages/components/PageListPage/PageListPage.json -msgctxt "button" -msgid "Add page" -msgstr "" - #. [src.categories.components.CategoryProducts.3554578821] - button #. defaultMessage is: #. Add product @@ -381,14 +277,6 @@ msgctxt "button" msgid "Add product" msgstr "Προσθήκη προϊόντος" -#. [src.productTypes.components.ProductTypeListPage.889729490] - button -#. defaultMessage is: -#. Add product type -#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json -msgctxt "button" -msgid "Add product type" -msgstr "Προσθήκη τύπου προϊόντων" - #. [src.orders.components.OrderDraftDetails.2528459381] - button #. defaultMessage is: #. Add products @@ -397,14 +285,6 @@ msgctxt "button" msgid "Add products" msgstr "" -#. [src.shipping.components.ShippingZoneRates.352297149] - button -#. defaultMessage is: -#. Add rate -#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json -msgctxt "button" -msgid "Add rate" -msgstr "" - #. [src.categories.components.CategoryCreatePage.2563994280] #. defaultMessage is: #. Add search engine title and description to make this category easier to @@ -466,30 +346,6 @@ msgctxt "button" msgid "Add shipping carrier" msgstr "" -#. [src.shipping.components.ShippingZonesList.2474410767] - button -#. defaultMessage is: -#. Add shipping zone -#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json -msgctxt "button" -msgid "Add shipping zone" -msgstr "" - -#. [src.staff.components.StaffListPage.802625341] - button -#. defaultMessage is: -#. Add staff member -#: build/locale/src/staff/components/StaffListPage/StaffListPage.json -msgctxt "button" -msgid "Add staff member" -msgstr "" - -#. [src.categories.components.CategoryList.435697837] - button -#. defaultMessage is: -#. Add subcategory -#: build/locale/src/categories/components/CategoryList/CategoryList.json -msgctxt "button" -msgid "Add subcategory" -msgstr "" - #. [src.attributes.components.AttributeProperties.673770329] - add attribute #. as column in product list table #. defaultMessage is: @@ -517,35 +373,14 @@ msgctxt "dialog header" msgid "Add tracking code" msgstr "" -#. [src.attributes.components.AttributeValues.254756045] - add attribute value -#. button -#. defaultMessage is: -#. Add value -#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json -msgctxt "add attribute value button" -msgid "Add value" -msgstr "" - #. [src.products.components.ProductVariantNavigation.2845381934] - button #. defaultMessage is: #. Add variant -#. [src.products.components.ProductVariants.2845381934] - button -#. defaultMessage is: -#. Add variant #: build/locale/src/products/components/ProductVariantNavigation/ProductVariantNavigation.json -#: build/locale/src/products/components/ProductVariants/ProductVariants.json msgctxt "button" msgid "Add variant" msgstr "Προσθήκη παραλλαγής" -#. [src.discounts.components.VoucherListPage.1536809153] - button -#. defaultMessage is: -#. Add voucher -#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json -msgctxt "button" -msgid "Add voucher" -msgstr "" - #. [src.attributes.views.AttributeDetails.634268988] - added new attribute #. value #. defaultMessage is: @@ -603,14 +438,6 @@ msgctxt "description" msgid "Address line 2" msgstr "" -#. [src.customers.components.CustomerAddress.1320082647] - addres card header -#. defaultMessage is: -#. Address {addressNumber} -#: build/locale/src/customers/components/CustomerAddress/CustomerAddress.json -msgctxt "addres card header" -msgid "Address {addressNumber}" -msgstr "" - #. [src.attributes.components.AttributeValues.1565474525] - attribute values #. list: slug column header #. defaultMessage is: @@ -660,6 +487,46 @@ msgctxt "tax rate" msgid "Agricultural supplies" msgstr "" +#. [src.attributes.components.AttributeListPage.2417065806] - tab name +#. defaultMessage is: +#. All Attributes +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "tab name" +msgid "All Attributes" +msgstr "" + +#. [src.categories.components.CategoryListPage.4294878092] - tab name +#. defaultMessage is: +#. All Categories +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "tab name" +msgid "All Categories" +msgstr "" + +#. [src.collections.components.CollectionListPage.1631917001] - tab name +#. defaultMessage is: +#. All Collections +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "tab name" +msgid "All Collections" +msgstr "" + +#. [src.customers.components.CustomerListPage.477293306] - tab name +#. defaultMessage is: +#. All Customers +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "tab name" +msgid "All Customers" +msgstr "" + +#. [src.orders.components.OrderDraftListPage.551325728] - tab name +#. defaultMessage is: +#. All Drafts +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "tab name" +msgid "All Drafts" +msgstr "" + #. [src.orders.components.OrderListPage.875489544] - tab name #. defaultMessage is: #. All Orders @@ -677,22 +544,54 @@ msgctxt "section header" msgid "All Photos" msgstr "" -#. [src.products.components.ProductListPage.821159718] - tab name +#. [src.productTypes.components.ProductTypeListPage.1776073799] - tab name +#. defaultMessage is: +#. All Product Types +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "tab name" +msgid "All Product Types" +msgstr "" + +#. [src.products.components.ProductListFilter.821159718] - tab name #. defaultMessage is: #. All Products -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "tab name" msgid "All Products" msgstr "" -#. [src.categories.components.CategoryList.3229914152] - section header +#. [src.discounts.components.SaleListPage.3907768880] - tab name +#. defaultMessage is: +#. All Sales +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "tab name" +msgid "All Sales" +msgstr "" + +#. [src.staff.components.StaffListPage.2852350932] - tab name +#. defaultMessage is: +#. All Staff Members +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "tab name" +msgid "All Staff Members" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.3229914152] - section header #. defaultMessage is: #. All Subcategories -#: build/locale/src/categories/components/CategoryList/CategoryList.json +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json msgctxt "section header" msgid "All Subcategories" msgstr "" +#. [src.discounts.components.VoucherListPage.1112241061] - tab name +#. defaultMessage is: +#. All Vouchers +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "tab name" +msgid "All Vouchers" +msgstr "" + #. [src.taxes.components.TaxConfiguration.142803418] #. defaultMessage is: #. All products prices are entered with tax included @@ -800,6 +699,14 @@ msgctxt "description" msgid "Are you sure you want to delete collection's image?" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.36681973] +#. defaultMessage is: +#. Are you sure you want to delete draft #{number}? +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "description" +msgid "Are you sure you want to delete draft #{number}?" +msgstr "" + #. [menuDetailsDeleteMenuContent] #. defaultMessage is: #. Are you sure you want to delete menu {menuName}? @@ -816,6 +723,14 @@ msgctxt "description" msgid "Are you sure you want to delete this address from users address book?" msgstr "" +#. [src.products.views.2880386427] +#. defaultMessage is: +#. Are you sure you want to delete this image? +#: build/locale/src/products/views/ProductImage.json +msgctxt "description" +msgid "Are you sure you want to delete this image?" +msgstr "" + #. [src.attributes.components.AttributeDeleteDialog.3738429348] - dialog #. content #. defaultMessage is: @@ -866,12 +781,7 @@ msgstr "" #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this attribute} #. other{{displayQuantity} categories}}? -#. [src.categories.views.844574071] -#. defaultMessage is: -#. Are you sure you want to delete {counter,plural,one{this attribute} -#. other{{displayQuantity} categories}}? #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this attribute} " @@ -889,22 +799,33 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.2497542455] +#. [src.categories.views.CategoryList.2144707585] +#. defaultMessage is: +#. Are you sure you want to delete {counter,plural,one{this category} +#. other{{displayQuantity} categories}}? +#: build/locale/src/categories/views/CategoryList/CategoryList.json +msgctxt "description" +msgid "" +"Are you sure you want to delete {counter,plural,one{this category} " +"other{{displayQuantity} categories}}?" +msgstr "" + +#. [src.collections.views.CollectionList.2497542455] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this collection} " "other{{displayQuantity} collections}}?" msgstr "" -#. [src.customers.views.409347866] +#. [src.customers.views.CustomerList.409347866] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this customer} #. other{{displayQuantity} customers}}? -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this customer} " @@ -922,11 +843,11 @@ msgid "" "other{{displayQuantity} menus}}?" msgstr "" -#. [src.orders.views.1389231130] - dialog content +#. [src.orders.views.OrderDraftList.1389231130] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this order draft} #. other{{displayQuantity} orderDrafts}}? -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this order draft} " @@ -944,11 +865,11 @@ msgid "" "other{{displayQuantity} pages}}?" msgstr "" -#. [src.productTypes.views.2294091098] - dialog content +#. [src.productTypes.views.ProductTypeList.2294091098] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this product type} #. other{{displayQuantity} product types}}? -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this product type} " @@ -966,11 +887,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.discounts.views.2516361175] - dialog content +#. [src.discounts.views.SaleList.2516361175] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this sale} #. other{{displayQuantity} sales}}? -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this sale} " @@ -999,17 +920,33 @@ msgid "" "other{{displayQuantity} variants}}?" msgstr "" -#. [src.discounts.views.1791926983] - dialog content +#. [src.discounts.views.VoucherList.1791926983] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this voucher} #. other{{displayQuantity} vouchers}}? -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this voucher} " "other{{displayQuantity} vouchers}}?" msgstr "" +#. [src.shipping.views.ShippingZoneDetails.131963671] - unassign country +#. defaultMessage is: +#. Are you sure you want to delete {countryName} from this shipping zone? +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country" +msgid "Are you sure you want to delete {countryName} from this shipping zone?" +msgstr "" + +#. [src.staff.views.8878988] +#. defaultMessage is: +#. Are you sure you want to delete {email} from staff members? +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "description" +msgid "Are you sure you want to delete {email} from staff members?" +msgstr "" + #. [src.customers.views.1927691511] - delete customer, dialog content #. defaultMessage is: #. Are you sure you want to delete {email}? @@ -1124,11 +1061,11 @@ msgctxt "description" msgid "Are you sure you want to mark this order as paid?" msgstr "" -#. [src.collections.views.1348793822] +#. [src.collections.views.CollectionList.1348793822] #. defaultMessage is: #. Are you sure you want to publish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to publish {counter,plural,one{this collection} " @@ -1157,30 +1094,6 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.orders.components.OrderDraftCancelDialog.3199827590] -#. defaultMessage is: -#. Are you sure you want to remove draft #{number}? -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "description" -msgid "Are you sure you want to remove draft #{number}?" -msgstr "" - -#. [src.products.views.672103788] -#. defaultMessage is: -#. Are you sure you want to remove this image? -#: build/locale/src/products/views/ProductImage.json -msgctxt "description" -msgid "Are you sure you want to remove this image?" -msgstr "" - -#. [src.shipping.views.ShippingZoneDetails.1790261672] - unassign country -#. defaultMessage is: -#. Are you sure you want to remove {countryName} from this shipping zone? -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country" -msgid "Are you sure you want to remove {countryName} from this shipping zone?" -msgstr "" - #. [src.staff.views.3945766678] #. defaultMessage is: #. Are you sure you want to remove {email} avatar? @@ -1189,14 +1102,6 @@ msgctxt "description" msgid "Are you sure you want to remove {email} avatar?" msgstr "" -#. [src.staff.views.2728048444] -#. defaultMessage is: -#. Are you sure you want to remove {email} from staff members? -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "description" -msgid "Are you sure you want to remove {email} from staff members?" -msgstr "" - #. [src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450] #. defaultMessage is: #. Are you sure you want to unassign {attributeName} from {productTypeName}? @@ -1277,11 +1182,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.3944356444] +#. [src.collections.views.CollectionList.3944356444] #. defaultMessage is: #. Are you sure you want to unpublish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to unpublish {counter,plural,one{this collection} " @@ -1442,6 +1347,15 @@ msgctxt "button" msgid "Assign products" msgstr "" +#. [src.attributes.components.AttributeValues.351422234] - assign attribute +#. value button +#. defaultMessage is: +#. Assign value +#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json +msgctxt "assign attribute value button" +msgid "Assign value" +msgstr "" + #. [src.attributes.components.AttributeDetails.3605174225] - attribute's slug #. short code label #. defaultMessage is: @@ -1520,6 +1434,14 @@ msgctxt "product attributes, section header" msgid "Attributes" msgstr "" +#. [src.configuration.2326418019] +#. defaultMessage is: +#. Attributes and Product Typess +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Attributes and Product Typess" +msgstr "" + #. [src.attributes.views.AttributeList.3218248395] - deleted multiple #. attributes #. defaultMessage is: @@ -2303,6 +2225,22 @@ msgctxt "description" msgid "Country area" msgstr "" +#. [menuCreateDialogHeader] - dialog header +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json +msgctxt "dialog header" +msgid "Create Menu" +msgstr "" + +#. [menuListPageAddMenu] - button +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json +msgctxt "button" +msgid "Create Menu" +msgstr "" + #. [src.attributes.components.AttributePage.2855501559] - page title #. defaultMessage is: #. Create New Attribute @@ -2327,6 +2265,30 @@ msgctxt "header" msgid "Create New Shipping Zone" msgstr "" +#. [src.pages.components.PageDetailsPage.1068617485] - page header +#. defaultMessage is: +#. Create Page +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page header" +msgid "Create Page" +msgstr "" + +#. [src.orders.components.OrderProductAddDialog.1542417144] - dialog header +#. defaultMessage is: +#. Create Product +#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json +msgctxt "dialog header" +msgid "Create Product" +msgstr "" + +#. [src.products.components.ProductListPage.1542417144] - button +#. defaultMessage is: +#. Create Product +#: build/locale/src/products/components/ProductListPage/ProductListPage.json +msgctxt "button" +msgid "Create Product" +msgstr "" + #. [src.products.views.1542417144] - window title #. defaultMessage is: #. Create Product @@ -2359,11 +2321,19 @@ msgctxt "page header" msgid "Create Sale" msgstr "" -#. [src.products.views.2362587265] - window title +#. [src.discounts.components.SaleListPage.3866518732] - button +#. defaultMessage is: +#. Create Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "button" +msgid "Create Sale" +msgstr "" + +#. [src.products.views.2362587265] - header #. defaultMessage is: #. Create Variant #: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "window title" +msgctxt "header" msgid "Create Variant" msgstr "" @@ -2375,6 +2345,22 @@ msgctxt "page header" msgid "Create Voucher" msgstr "" +#. [src.attributes.components.AttributeListPage.3824684885] - button +#. defaultMessage is: +#. Create attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "button" +msgid "Create attribute" +msgstr "" + +#. [src.categories.components.CategoryListPage.1140231710] - button +#. defaultMessage is: +#. Create category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "button" +msgid "Create category" +msgstr "" + #. [src.categories.views.1140231710] - window title #. defaultMessage is: #. Create category @@ -2383,6 +2369,14 @@ msgctxt "window title" msgid "Create category" msgstr "" +#. [src.collections.components.CollectionListPage.686910896] - button +#. defaultMessage is: +#. Create collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "button" +msgid "Create collection" +msgstr "" + #. [src.collections.views.686910896] - window title #. defaultMessage is: #. Create collection @@ -2399,6 +2393,14 @@ msgctxt "window title" msgid "Create customer" msgstr "" +#. [menuItemsAddItem] - add new menu item +#. defaultMessage is: +#. Create new item +#: build/locale/src/navigation/components/MenuItems/MenuItems.json +msgctxt "add new menu item" +msgid "Create new item" +msgstr "" + #. [src.orders.components.OrderDraftListPage.2826235371] - button #. defaultMessage is: #. Create order @@ -2411,6 +2413,14 @@ msgctxt "button" msgid "Create order" msgstr "" +#. [src.pages.components.PageListPage.3785394515] - button +#. defaultMessage is: +#. Create page +#: build/locale/src/pages/components/PageListPage/PageListPage.json +msgctxt "button" +msgid "Create page" +msgstr "" + #. [src.pages.views.3785394515] - header #. defaultMessage is: #. Create page @@ -2422,11 +2432,55 @@ msgstr "" #. [src.shipping.components.ShippingZoneRateDialog.16061680] - button #. defaultMessage is: #. Create rate +#. [src.shipping.components.ShippingZoneRates.16061680] - button +#. defaultMessage is: +#. Create rate #: build/locale/src/shipping/components/ShippingZoneRateDialog/ShippingZoneRateDialog.json +#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json msgctxt "button" msgid "Create rate" msgstr "" +#. [src.shipping.components.ShippingZonesList.2673544109] - button +#. defaultMessage is: +#. Create shipping zone +#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json +msgctxt "button" +msgid "Create shipping zone" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.770296100] - button +#. defaultMessage is: +#. Create subcategory +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json +msgctxt "button" +msgid "Create subcategory" +msgstr "" + +#. [src.products.components.ProductVariants.3989383405] - button +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/components/ProductVariants/ProductVariants.json +msgctxt "button" +msgid "Create variant" +msgstr "" + +#. [src.products.views.3989383405] - window title +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/views/ProductVariantCreate.json +msgctxt "window title" +msgid "Create variant" +msgstr "" + +#. [src.discounts.components.VoucherListPage.614836274] - button +#. defaultMessage is: +#. Create voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "button" +msgid "Create voucher" +msgstr "" + #. [src.collections.views.1597339737] #. defaultMessage is: #. Created collection @@ -2473,7 +2527,11 @@ msgstr "" #. [src.components.FilterBar.2340527467] #. defaultMessage is: #. Custom Filter +#. [src.components.SearchBar.2340527467] +#. defaultMessage is: +#. Custom Filter #: build/locale/src/components/FilterBar/FilterBar.json +#: build/locale/src/components/SearchBar/SearchBar.json msgctxt "description" msgid "Custom Filter" msgstr "" @@ -2729,10 +2787,18 @@ msgctxt "dialog title" msgid "Delete Collection" msgstr "" -#. [src.orders.views.1161115149] - dialog header +#. [src.products.views.1731766393] - dialog header +#. defaultMessage is: +#. Delete Image +#: build/locale/src/products/views/ProductImage.json +msgctxt "dialog header" +msgid "Delete Image" +msgstr "" + +#. [src.orders.views.OrderDraftList.1161115149] - dialog header #. defaultMessage is: #. Delete Order Drafts -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog header" msgid "Delete Order Drafts" msgstr "" @@ -2770,10 +2836,10 @@ msgctxt "dialog header" msgid "Delete Product Type" msgstr "" -#. [src.productTypes.views.4080551769] - dialog header +#. [src.productTypes.views.ProductTypeList.4080551769] - dialog header #. defaultMessage is: #. Delete Product Types -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog header" msgid "Delete Product Types" msgstr "" @@ -2802,10 +2868,10 @@ msgctxt "dialog header" msgid "Delete Sale" msgstr "" -#. [src.discounts.views.2809303671] - dialog header +#. [src.discounts.views.SaleList.2809303671] - dialog header #. defaultMessage is: #. Delete Sales -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog header" msgid "Delete Sales" msgstr "" @@ -2819,9 +2885,13 @@ msgctxt "custom search delete, dialog header" msgid "Delete Search" msgstr "" +#. [src.components.Filter.2173195312] - button +#. defaultMessage is: +#. Delete Search #. [src.components.TableFilter.2173195312] - button #. defaultMessage is: #. Delete Search +#: build/locale/src/components/Filter/FilterSearch.json #: build/locale/src/components/TableFilter/FilterChips.json msgctxt "button" msgid "Delete Search" @@ -2888,10 +2958,10 @@ msgctxt "dialog header" msgid "Delete Voucher" msgstr "" -#. [src.discounts.views.367317371] - dialog header +#. [src.discounts.views.VoucherList.367317371] - dialog header #. defaultMessage is: #. Delete Vouchers -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog header" msgid "Delete Vouchers" msgstr "" @@ -2925,11 +2995,11 @@ msgstr "" #. [src.categories.views.712767046] - dialog title #. defaultMessage is: #. Delete categories -#. [src.categories.views.712767046] - dialog title +#. [src.categories.views.CategoryList.712767046] - dialog title #. defaultMessage is: #. Delete categories #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "dialog title" msgid "Delete categories" msgstr "" @@ -2946,10 +3016,10 @@ msgctxt "dialog title" msgid "Delete category" msgstr "" -#. [src.collections.views.3817188998] - dialog title +#. [src.collections.views.CollectionList.3817188998] - dialog title #. defaultMessage is: #. Delete collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Delete collections" msgstr "" @@ -2962,14 +3032,31 @@ msgctxt "dialog header" msgid "Delete customer" msgstr "" -#. [src.customers.views.1946482599] - dialog header +#. [src.customers.views.CustomerList.1946482599] - dialog header #. defaultMessage is: #. Delete customers -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "dialog header" msgid "Delete customers" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.632633254] - dialog header +#. defaultMessage is: +#. Delete draft order +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "dialog header" +msgid "Delete draft order" +msgstr "" + +#. [src.shipping.views.ShippingZoneDetails.1947090060] - unassign country, +#. dialog header +#. defaultMessage is: +#. Delete from shipping zone +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country, dialog header" +msgid "Delete from shipping zone" +msgstr "" + #. [src.collections.views.942133001] - dialog title #. defaultMessage is: #. Delete image @@ -3030,6 +3117,14 @@ msgctxt "description" msgid "Deleted collection" msgstr "Διαγράφηκε συλλογή" +#. [src.orders.views.OrderDraftList.1648805446] +#. defaultMessage is: +#. Deleted draft orders +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json +msgctxt "description" +msgid "Deleted draft orders" +msgstr "" + #. [menuListDeletedMenu] #. defaultMessage is: #. Deleted menu @@ -3629,14 +3724,6 @@ msgctxt "order history message" msgid "Fulfilled {quantity} items" msgstr "" -#. [src.orders.components.OrderListFilter.2943502192] - order -#. defaultMessage is: -#. Fulfillment Status -#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json -msgctxt "order" -msgid "Fulfillment Status" -msgstr "" - #. [src.orders.components.OrderHistory.3081292385] - order history message #. defaultMessage is: #. Fulfillment confirmation was sent to customer @@ -3793,12 +3880,12 @@ msgctxt "description" msgid "If empty, the preview shows what will be autogenerated." msgstr "" -#. [src.attributes.components.AttributeProperties.2519239682] +#. [src.attributes.components.AttributeProperties.4048785456] #. defaultMessage is: -#. If enable this attribute can be used as a column in product table. +#. If enabled this attribute can be used as a column in product table. #: build/locale/src/attributes/components/AttributeProperties/AttributeProperties.json msgctxt "description" -msgid "If enable this attribute can be used as a column in product table." +msgid "If enabled this attribute can be used as a column in product table." msgstr "" #. [src.attributes.components.AttributeProperties.787251583] @@ -3904,6 +3991,22 @@ msgctxt "product variant stock" msgid "Inventory" msgstr "" +#. [src.staff.components.StaffAddMemberDialog.1481503299] - dialog header +#. defaultMessage is: +#. Invite Staff Member +#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json +msgctxt "dialog header" +msgid "Invite Staff Member" +msgstr "" + +#. [src.staff.components.StaffListPage.797461521] - button +#. defaultMessage is: +#. Invite staff member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "button" +msgid "Invite staff member" +msgstr "" + #. [src.productTypes.components.ProductTypeShipping.2143413921] - switch #. button #. defaultMessage is: @@ -4256,6 +4359,14 @@ msgctxt "voucher requirement" msgid "Minimum quantity of items" msgstr "" +#. [src.configuration.1233229030] +#. defaultMessage is: +#. Miscellaneous +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Miscellaneous" +msgstr "" + #. [src.attributes.components.AttributeDetails.3334509011] - product attribute #. type #. defaultMessage is: @@ -5088,6 +5199,14 @@ msgctxt "description" msgid "Order History" msgstr "" +#. [src.orders.components.OrderListFilter.2222765704] +#. defaultMessage is: +#. Order Status +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +msgctxt "description" +msgid "Order Status" +msgstr "" + #. [src.orders.components.OrderHistory.1230178536] - order history message #. defaultMessage is: #. Order address was updated @@ -5104,13 +5223,13 @@ msgctxt "order history message" msgid "Order confirmation was sent to customer" msgstr "" -#. [src.orders.views.1872939752] +#. [src.orders.views.OrderDraftList.1872939752] #. defaultMessage is: #. Order draft succesfully created #. [src.orders.views.OrderList.1872939752] #. defaultMessage is: #. Order draft succesfully created -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json #: build/locale/src/orders/views/OrderList/OrderList.json msgctxt "description" msgid "Order draft succesfully created" @@ -5775,6 +5894,14 @@ msgctxt "description" msgid "Product Name" msgstr "" +#. [src.configuration.3655543906] +#. defaultMessage is: +#. Product Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Product Settings" +msgstr "" + #. [src.discounts.components.DiscountProducts.4257289053] #. defaultMessage is: #. Product Type @@ -5933,12 +6060,12 @@ msgctxt "order history message" msgid "Products were added to draft order" msgstr "" -#. [src.orders.components.OrderHistory.2574162126] - order history message +#. [src.orders.components.OrderHistory.4067959693] - order history message #. defaultMessage is: -#. Products were removed from draft order +#. Products were deleted from draft order #: build/locale/src/orders/components/OrderHistory/OrderHistory.json msgctxt "order history message" -msgid "Products were removed from draft order" +msgid "Products were deleted from draft order" msgstr "" #. [src.properties] @@ -5965,10 +6092,10 @@ msgctxt "description" msgid "Provided email address does not exist in our database." msgstr "" -#. [src.collections.views.1547167026] - publish collections +#. [src.collections.views.CollectionList.1547167026] - publish collections #. defaultMessage is: #. Publish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "publish collections" msgid "Publish" msgstr "Δημοσίευση" @@ -6005,10 +6132,10 @@ msgctxt "dialog header" msgid "Publish Products" msgstr "" -#. [src.collections.views.2823425739] - dialog title +#. [src.collections.views.CollectionList.2823425739] - dialog title #. defaultMessage is: #. Publish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Publish collections" msgstr "" @@ -6182,6 +6309,18 @@ msgctxt "shipping method price" msgid "Rate Price" msgstr "" +#. [src.orders.components.OrderListFilter.2415661583] - order status +#. defaultMessage is: +#. Ready to Capture +#. [src.orders.views.OrderList.readyToCapture] - order status +#. defaultMessage is: +#. Ready to Capture +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +#: build/locale/src/orders/views/OrderList/filters.json +msgctxt "order status" +msgid "Ready to Capture" +msgstr "" + #. [src.customers.components.CustomerOrders.3878642352] - section header #. defaultMessage is: #. Recent orders @@ -6230,22 +6369,14 @@ msgctxt "switch button" msgid "Release all stock allocated to this order" msgstr "" -#. [src.auth.components.LoginPage.3182284913] - login -#. defaultMessage is: -#. Remember me -#: build/locale/src/auth/components/LoginPage/LoginPage.json -msgctxt "login" -msgid "Remember me" -msgstr "" - #. [src.categories.views.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. -#. [src.categories.views.3488150607] +#. [src.categories.views.CategoryList.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "description" msgid "Remember this will also delete all products assigned to this category." msgstr "" @@ -6258,39 +6389,6 @@ msgctxt "button" msgid "Remove" msgstr "Αφαίρεση" -#. [src.products.views.490753666] - dialog header -#. defaultMessage is: -#. Remove Image -#: build/locale/src/products/views/ProductImage.json -msgctxt "dialog header" -msgid "Remove Image" -msgstr "" - -#. [src.orders.components.OrderDraftCancelDialog.500287069] - dialog header -#. defaultMessage is: -#. Remove draft order -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "dialog header" -msgid "Remove draft order" -msgstr "" - -#. [src.shipping.views.ShippingZoneDetails.254167659] - unassign country, -#. dialog header -#. defaultMessage is: -#. Remove from shipping zone -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country, dialog header" -msgid "Remove from shipping zone" -msgstr "" - -#. [src.orders.views.3880993240] -#. defaultMessage is: -#. Removed draft orders -#: build/locale/src/orders/views/OrderDraftList.json -msgctxt "description" -msgid "Removed draft orders" -msgstr "" - #. [src.pages.views.1457312643] #. defaultMessage is: #. Removed page @@ -6456,6 +6554,18 @@ msgctxt "button" msgid "Save" msgstr "" +#. [src.components.Filter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#. [src.components.TableFilter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#: build/locale/src/components/Filter/FilterSearch.json +#: build/locale/src/components/TableFilter/FilterChips.json +msgctxt "button" +msgid "Save Custom Search" +msgstr "" + #. [src.components.SaveFilterTabDialog.1514415736] - save filter tab, header #. defaultMessage is: #. Save Custom Search @@ -6464,14 +6574,6 @@ msgctxt "save filter tab, header" msgid "Save Custom Search" msgstr "" -#. [src.components.TableFilter.1514415736] - button -#. defaultMessage is: -#. Save Custom Search -#: build/locale/src/components/TableFilter/FilterChips.json -msgctxt "button" -msgid "Save Custom Search" -msgstr "" - #. [src.products.components.ProductVariantCreatePage.2853608829] - button #. defaultMessage is: #. Save variant @@ -6488,6 +6590,14 @@ msgctxt "description" msgid "Saved changes" msgstr "" +#. [src.attributes.components.AttributeListPage.3916653510] +#. defaultMessage is: +#. Search Attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "description" +msgid "Search Attribute" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.902296540] #. defaultMessage is: #. Search Attributes @@ -6504,10 +6614,30 @@ msgctxt "description" msgid "Search Categories" msgstr "" +#. [src.categories.components.CategoryListPage.3841025483] +#. defaultMessage is: +#. Search Category +#. [src.translations.components.TranslationsEntitiesListPage.3841025483] +#. defaultMessage is: +#. Search Category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Category" +msgstr "" + +#. [src.collections.components.CollectionListPage.4057224233] +#. defaultMessage is: +#. Search Collection #. [src.components.AssignCollectionDialog.4057224233] #. defaultMessage is: #. Search Collection +#. [src.translations.components.TranslationsEntitiesListPage.4057224233] +#. defaultMessage is: +#. Search Collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json #: build/locale/src/components/AssignCollectionDialog/AssignCollectionDialog.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json msgctxt "description" msgid "Search Collection" msgstr "" @@ -6520,6 +6650,14 @@ msgctxt "description" msgid "Search Countries" msgstr "" +#. [src.customers.components.CustomerListPage.1643417013] +#. defaultMessage is: +#. Search Customer +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "description" +msgid "Search Customer" +msgstr "" + #. [src.orders.components.OrderCustomer.2433460203] #. defaultMessage is: #. Search Customers @@ -6528,6 +6666,14 @@ msgctxt "description" msgid "Search Customers" msgstr "" +#. [src.orders.components.OrderDraftListPage.77765281] +#. defaultMessage is: +#. Search Draft +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "description" +msgid "Search Draft" +msgstr "" + #. [src.translations.components.TranslationsCategoriesPage.1406947243] #. defaultMessage is: #. Search Engine Description @@ -6608,6 +6754,34 @@ msgctxt "description" msgid "Search Orders..." msgstr "" +#. [src.translations.components.TranslationsEntitiesListPage.2559018090] +#. defaultMessage is: +#. Search Page +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Page" +msgstr "" + +#. [src.translations.components.TranslationsEntitiesListPage.2105464697] +#. defaultMessage is: +#. Search Product +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product" +msgstr "" + +#. [src.productTypes.components.ProductTypeListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#. [src.translations.components.TranslationsEntitiesListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product Type" +msgstr "" + #. [src.components.AssignProductDialog.2850255786] #. defaultMessage is: #. Search Products @@ -6620,14 +6794,46 @@ msgctxt "description" msgid "Search Products" msgstr "" -#. [src.products.components.ProductListPage.3550330425] +#. [src.products.components.ProductListFilter.3550330425] #. defaultMessage is: #. Search Products... -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Search Products..." msgstr "" +#. [src.discounts.components.SaleListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#. [src.translations.components.TranslationsEntitiesListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Sale" +msgstr "" + +#. [src.staff.components.StaffListPage.61043583] +#. defaultMessage is: +#. Search Staff Member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "description" +msgid "Search Staff Member" +msgstr "" + +#. [src.discounts.components.VoucherListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#. [src.translations.components.TranslationsEntitiesListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Voucher" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.524117994] #. defaultMessage is: #. Search by attribute name @@ -6734,10 +6940,10 @@ msgctxt "description" msgid "Select all orders where:" msgstr "" -#. [src.products.components.ProductListPage.1421689426] +#. [src.products.components.ProductListFilter.1421689426] #. defaultMessage is: #. Select all products where: -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Select all products where:" msgstr "" @@ -6823,6 +7029,14 @@ msgctxt "description" msgid "Set plugin as Active" msgstr "" +#. [src.components.VisibilityCard.292404896] +#. defaultMessage is: +#. Set publication date +#: build/locale/src/components/VisibilityCard/VisibilityCard.json +msgctxt "description" +msgid "Set publication date" +msgstr "" + #. [src.discounts.shipment] - voucher discount #. defaultMessage is: #. Shipment @@ -7088,6 +7302,14 @@ msgctxt "staff section name" msgid "Staff Members" msgstr "" +#. [src.configuration.3140151600] +#. defaultMessage is: +#. Staff Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Staff Settings" +msgstr "" + #. [src.standard] - tax rate #. defaultMessage is: #. Standard @@ -8072,10 +8294,10 @@ msgctxt "payment status" msgid "Unpaid" msgstr "" -#. [src.collections.views.2237014112] - unpublish collections +#. [src.collections.views.CollectionList.2237014112] - unpublish collections #. defaultMessage is: #. Unpublish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "unpublish collections" msgid "Unpublish" msgstr "" @@ -8112,10 +8334,10 @@ msgctxt "dialog header" msgid "Unpublish Products" msgstr "" -#. [src.collections.views.2637364047] - dialog title +#. [src.collections.views.CollectionList.2637364047] - dialog title #. defaultMessage is: #. Unpublish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Unpublish collections" msgstr "" @@ -8615,6 +8837,22 @@ msgctxt "description" msgid "ZIP / Postal code" msgstr "" +#. [src.productTypes.components.ProductTypeListPage.3479705616] - button +#. defaultMessage is: +#. create product type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "button" +msgid "create product type" +msgstr "" + +#. [src.staff.views.1308770978] - dialog header +#. defaultMessage is: +#. delete Staff User +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "dialog header" +msgid "delete Staff User" +msgstr "" + #. [orderPaymentVATDoesNotApply] - vat not included in order price #. defaultMessage is: #. does not apply @@ -8688,19 +8926,35 @@ msgctxt "product status is set as" msgid "is set as" msgstr "" -#. [src.staff.views.2240444792] - dialog header -#. defaultMessage is: -#. remove Staff User -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "dialog header" -msgid "remove Staff User" -msgstr "" - -#. [src.components.VisibilityCard.1815688500] +#. [src.collections.components.CollectionCreatePage.1815688500] - collection #. defaultMessage is: #. since {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.1815688500] - collection +#. defaultMessage is: +#. since {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "since {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.1815688500] - page +#. defaultMessage is: +#. since {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "since {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#. [src.products.components.ProductUpdatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "since {date}" msgstr "" @@ -8728,11 +8982,35 @@ msgctxt "weight" msgid "to {value} {unit}" msgstr "" -#. [src.components.VisibilityCard.2001551496] +#. [src.collections.components.CollectionCreatePage.2001551496] - collection #. defaultMessage is: #. will be visible from {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.2001551496] - collection +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "will be visible from {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.2001551496] - page +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "will be visible from {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#. [src.products.components.ProductUpdatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "will be visible from {date}" msgstr "" diff --git a/locale/es.json b/locale/es.json index a2e763feb..9b516701c 100644 --- a/locale/es.json +++ b/locale/es.json @@ -1 +1 @@ -{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"Borrar atributo","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.350498821":"Agregar atributo","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.2519239682":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"Nombre","src.categories.components.CategoryProducts.636461959":"Nombre","src.collections.components.CollectionProducts.636461959":"Nombre","src.products.components.ProductDetailsForm.636461959":"Nombre","src.collections.components.CollectionDetails.636461959":"Nombre","src.components.ProductList.636461959":"Nombre","src.discounts.components.SaleInfo.636461959":"Nombre","src.discounts.components.SaleList.636461959":"Nombre","src.discounts.components.SaleSummary.636461959":"Nombre","menuItemDialogNameLabel":"Nombre","src.products.components.ProductVariants.636461959":"Nombre","src.shipping.components.ShippingZoneRates.636461959":"Nombre","src.shipping.components.ShippingZonesList.636461959":"Nombre","src.staff.components.StaffList.636461959":"Nombre","src.translations.components.TranslationsEntitiesList.636461959":"Nombre","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.254756045":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.3182284913":"","src.auth.components.LoginPage.109182747":"Iniciar Sesión","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"Borrar Categoría","src.categories.views.2004894945":"Borrar Categoría","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.3229914152":"","src.categories.components.CategoryList.435697837":"","src.categories.components.CategoryList.2159874182":"Subcategorías","src.categories.components.CategoryUpdatePage.2159874182":"Subcategorías","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.228151782":"Agregar categoría","src.categories.components.CategoryProducts.2968663655":"Productos","src.categories.components.CategoryUpdatePage.2968663655":"Productos","src.discounts.components.DiscountCategories.2968663655":"Productos","src.discounts.components.DiscountCollections.2968663655":"Productos","src.products":"Productos","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryProducts.3554578821":"Agregar producto","src.categories.components.CategoryProductsCard.3554578821":"Agregar producto","src.categories.components.CategoryProducts.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProducts.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.categories.components.CategoryProductsCard.4164156574":"","src.categories.views.1754466114":"","src.categories.views.1140231710":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.712767046":"","src.categories.views.299584400":"","src.categories.views.844574071":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.collections.components.CollectionCreatePage.3958681866":"Agregar una colección","src.collections.components.CollectionListPage.3958681866":"Agregar una colección","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"Disponibilidad","src.availability":"","src.collections.components.CollectionList.3640454975":"Publicado","src.collections.components.CollectionProducts.3640454975":"Publicado","src.discounts.components.DiscountProducts.3640454975":"Publicado","src.components.ProductList.3640454975":"Publicado","src.products.components.ProductListPage.3640454975":"Publicado","src.pages.components.PageList.3640454975":"Publicado","src.products.views.ProductList.published":"Publicado","src.collections.components.CollectionList.2341910657":"Sin publicar","src.collections.components.CollectionProducts.2341910657":"Sin publicar","src.discounts.components.DiscountProducts.2341910657":"Sin publicar","src.components.ProductList.2341910657":"Sin publicar","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.686910896":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"Borrar imagen","src.collections.views.2402899582":"","src.collections.views.2237014112":"Retirar publicación","src.pages.views.2237014112":"Retirar publicación","src.products.views.ProductList.2237014112":"Retirar publicación","src.collections.views.1547167026":"Publicar","src.pages.views.1547167026":"Publicar","src.products.views.ProductList.1547167026":"Publicar","src.collections.views.2823425739":"","src.collections.views.1348793822":"","src.collections.views.2637364047":"","src.collections.views.3944356444":"","src.collections.views.3817188998":"","src.collections.views.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"Cerrar Sesión","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.4057224233":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"Error","src.components.ErrorMessageCard.2845142593":"Error","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.FilterBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"Agregar","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.ProductList.1134347598":"Precio","src.orders.components.OrderDraftDetailsProducts.1134347598":"Precio","src.orders.components.OrderFulfillment.1134347598":"Precio","src.products.components.ProductListPage.1134347598":"Precio","src.products.components.ProductPricing.1134347598":"Precio","src.orders.components.OrderUnfulfilledItems.1134347598":"Precio","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"Precio","src.shipping.components.ShippingZoneRates.1134347598":"Precio","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"Visibilidad","src.pages.components.PageList.1459686496":"Visibilidad","src.products.components.ProductListFilter.1459686496":"Visibilidad","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"Oculto","src.products.views.ProductList.hidden":"Oculto","src.components.VisibilityCard.1815688500":"","src.components.VisibilityCard.2001551496":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","configurationMenuStaff":"","configurationMenuShipping":"","configurationMenuTaxes":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","src.customers.components.CustomerAddress.1320082647":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"Dirección de facturación","src.customers.components.CustomerAddresses.3517722732":"Dirección de envío","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"Dirección","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"Notas","src.orders.components.OrderCustomerNote.1520756907":"Notas","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"Nota","src.customers.components.CustomerDetails.577013340":"Nota","src.customers.components.CustomerCreatePage.1934221653":"Agregar cliente","src.customers.components.CustomerListPage.1934221653":"Agregar cliente","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerOrders.3878642352":"Ordenes recientes","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"Fecha","src.orders.components.OrderDraftList.4205493358":"Fecha","src.orders.components.OrderList.4205493358":"Fecha","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"Estado","src.orders.components.OrderListFilter.1756106276":"Estado","src.products.components.ProductListFilter.1756106276":"Estado","src.products.components.ProductVariants.1756106276":"Estado","src.customers.components.CustomerOrders.878013594":"Total","src.orders.components.OrderDraftDetailsProducts.878013594":"Total","src.orders.components.OrderDraftDetailsSummary.878013594":"Total","src.orders.components.OrderDraftList.878013594":"Total","src.orders.components.OrderFulfillment.878013594":"Total","src.orders.components.OrderUnfulfilledItems.878013594":"Total","src.orders.components.OrderList.878013594":"Total","src.orders.components.OrderPayment.878013594":"Total","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"Borrar dirección","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.1946482599":"","src.customers.views.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"Valor","src.discounts.components.SaleSummary.1148029984":"Valor","src.discounts.components.VoucherList.1148029984":"Valor","src.discounts.components.VoucherSummary.1148029984":"Valor","src.discounts.components.VoucherValue.1148029984":"Valor","src.products.components.ProductAttributes.1148029984":"Valor","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.1742771332":"","src.discounts.components.SalePricing.1099355007":"Precios","src.products.components.ProductPricing.1099355007":"Precios","src.products.components.ProductVariantPrice.1099355007":"Precios","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"Paises","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"Código","src.discounts.components.VoucherSummary.78726751":"Código","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.1536809153":"Agregar cupón","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"Toda la orden","src.discounts.products":"Productos específicos","src.discounts.shipment":"Envío","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.2809303671":"","src.discounts.views.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.367317371":"","src.discounts.views.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"Cancelar","src.orders.views.OrderList.3528672691":"Cancelar","src.confirm":"","src.delete":"Borrar","src.edit":"Editar","src.manage":"","src.remove":"Eliminar","src.save":"Guardar","src.show":"","src.undo":"","src.attributes":"Atributos","src.products.components.ProductAttributes.4153345096":"Atributos","src.categories":"Categorías","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"Colecciones","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"Configuración","src.customers":"Clientes","src.draftOrders":"","src.home":"Inicio","src.navigation":"Navegación","src.orders":"Pedidos","src.pages":"Páginas","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"Descuentos","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"Impuestos","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"Impuestos","src.taxes.components.CountryListPage.3955023266":"Impuestos","src.translations":"","src.vouchers":"Cupones","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"Totalmente Pagado","src.partiallyPaid":"","src.partiallyRefunded":"Parcialmente reembolsado","src.refunded":"Totalmente reembolsado","src.unpaid":"","src.cancelled":"Cancelado","src.draft":"Borrador","src.fulfilled":"Completada","src.orders.views.OrderList.fulfilled":"Completada","src.orders.components.OrderListFilter.1712863026":"Completada","src.partiallyFulfilled":"Parcialmente completada","src.unfulfilled":"No completada","src.orders.views.OrderList.unfulfilled":"No completada","src.orders.components.OrderListFilter.1751787272":"No completada","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","src.1395232177":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"Link","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"Cancelar pedido","src.orders.components.OrderDetailsPage.1854613983":"Cancelar pedido","src.orders.components.OrderDraftPage.1854613983":"Cancelar pedido","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"Cliente","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"Cliente","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"La misma que el envío","src.orders.components.OrderCustomerEditDialog.1411666943":"","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.500287069":"","src.orders.components.OrderDraftCancelDialog.3199827590":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"Producto","src.orders.components.OrderUnfulfilledItems.1895667608":"Producto","src.orders.components.OrderDraftDetailsProducts.2796503714":"Cantidad","src.orders.components.OrderFulfillment.2796503714":"Cantidad","src.orders.components.OrderFulfillmentDialog.2796503714":"Cantidad","src.orders.components.OrderUnfulfilledItems.2796503714":"Cantidad","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"Subtotal","src.orders.components.OrderPayment.781550514":"Subtotal","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"","src.orders.components.OrderListPage.2826235371":"","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"Cancelar envío","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"Añadir seguimiento","src.orders.components.OrderFulfillmentCancelDialog.732594284":"","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"SKU","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"Número de seguimiento","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.2574162126":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"La orden ha sido completamente pagada. ","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"El pedido fue enviado","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"Pago","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2943502192":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"Envío","src.productTypes.components.ProductTypeShipping.1325966144":"Envío","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"Envío","src.orders.components.OrderPayment.3768782744":"Monto preautorizado","src.orders.components.OrderPayment.2320183694":"Cantidad retenida","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"Captura","src.orders.components.OrderPayment.2845258362":"Reembolso","src.orders.components.OrderPayment.2444197639":"Anular","src.orders.components.OrderPayment.3500506678":"Marcar como pagado","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"Cantidad","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.2775402904":"","src.products.components.ProductListPage.2775402904":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.3880993240":"","src.orders.views.1161115149":"","src.orders.views.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.755314116":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"Título","src.pages.components.PageList.1124600214":"Título","src.pages.components.PageInfo.1116746286":"Contenido","src.translations.components.TranslationsPagesPage.1116746286":"Contenido","src.pages.components.PageList.3478065224":"Slug","src.pages.components.PageSlug.3478065224":"Slug","src.productTypes.components.ProductTypeAttributes.3478065224":"Slug","src.pages.components.PageList.3767550649":"","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.1767905232":"Añadir página","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.3785394515":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"Valores","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"Imágenes","src.products.components.ProductVariantImages.3240888698":"Imágenes","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"Stock","src.products.components.ProductVariantStock.3841616483":"Stock","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListPage.821159718":"","src.products.components.ProductListPage.1421689426":"","src.products.components.ProductListPage.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"Inventario","prodictStockInventoryLabel":"Inventario","src.products.components.ProductVariantStock.3490038570":"Inventario","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"Borrar variante","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"Variantes","src.products.components.ProductVariants.2153006789":"Variantes","src.products.components.ProductVariantNavigation.2845381934":"Agregar variante","src.products.components.ProductVariants.2845381934":"Agregar variante","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1542417144":"","src.products.views.1591632382":"","src.products.views.490753666":"","src.products.views.672103788":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.1694086800":"","src.products.views.ProductList.224127438":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.products.views.2178905289":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1756957616":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.889729490":"Agregar tipo de producto","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.4080551769":"","src.productTypes.views.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.352297149":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2474410767":"Añadir zona de envío","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.254167659":"","src.shipping.views.ShippingZoneDetails.1790261672":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"Clave","src.siteSettings.components.SiteSettingsKeys.2446088470":"Clave","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.3490059488":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"Permisos","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.3247064221":"Activo","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.802625341":"Agregar miembro del personal","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"El usuario está activo","src.staff.views.2240444792":"","src.staff.views.2728048444":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file +{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"Borrar atributo","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.3824684885":"","src.attributes.components.AttributeListPage.2417065806":"","src.attributes.components.AttributeListPage.3916653510":"","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.4048785456":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"Nombre","src.categories.components.CategoryProductList.636461959":"Nombre","src.components.ProductList.636461959":"Nombre","src.products.components.ProductList.636461959":"Nombre","src.collections.components.CollectionDetails.636461959":"Nombre","src.collections.components.CollectionProducts.636461959":"Nombre","src.products.components.ProductDetailsForm.636461959":"Nombre","src.discounts.components.SaleInfo.636461959":"Nombre","src.discounts.components.SaleList.636461959":"Nombre","src.discounts.components.SaleSummary.636461959":"Nombre","menuItemDialogNameLabel":"Nombre","src.plugins.components.PluginsList.636461959":"Nombre","src.products.components.ProductVariants.636461959":"Nombre","src.shipping.components.ShippingZoneRates.636461959":"Nombre","src.shipping.components.ShippingZonesList.636461959":"Nombre","src.staff.components.StaffList.636461959":"Nombre","src.translations.components.TranslationsEntitiesList.636461959":"Nombre","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.351422234":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.109182747":"Iniciar Sesión","src.auth.components.LoginPage.4028609483":"","src.auth.components.NewPasswordPage.1915811227":"","src.auth.components.NewPasswordPage.1254879564":"","src.auth.components.NewPasswordPage.2799926859":"","src.auth.components.NewPasswordPage.4253911811":"","src.auth.components.NewPasswordPage.2342634351":"","src.auth.components.ResetPasswordPage.2370700732":"","src.auth.components.ResetPasswordPage.3663311080":"","src.auth.components.ResetPasswordSuccessPage.4066297200":"","src.auth.components.ResetPasswordSuccessPage.2245157344":"","src.auth.views.2388238158":"","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"(Opcional)","src.collections.components.CollectionImage.3289097895":"(Opcional)","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"Borrar Categoría","src.categories.views.2004894945":"Borrar Categoría","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.2159874182":"Subcategorías","src.categories.components.CategoryUpdatePage.2159874182":"Subcategorías","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.1140231710":"","src.categories.views.1140231710":"","src.categories.components.CategoryListPage.4294878092":"","src.categories.components.CategoryListPage.3841025483":"","src.translations.components.TranslationsEntitiesListPage.3841025483":"","src.categories.components.CategoryProductList.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductList.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProductList.3640454975":"Publicado","src.components.ProductList.3640454975":"Publicado","src.products.components.ProductList.3640454975":"Publicado","src.products.components.ProductListPage.3640454975":"Publicado","productStatusLabel":"Publicado","src.collections.components.CollectionList.3640454975":"Publicado","src.collections.components.CollectionProducts.3640454975":"Publicado","src.discounts.components.DiscountProducts.3640454975":"Publicado","src.pages.components.PageList.3640454975":"Publicado","src.products.views.ProductList.published":"Publicado","src.categories.components.CategoryProductList.1134347598":"Precio","src.orders.components.OrderFulfillment.1134347598":"Precio","src.products.components.ProductList.1134347598":"Precio","src.products.components.ProductListPage.1134347598":"Precio","src.products.components.ProductPricing.1134347598":"Precio","src.components.ProductList.1134347598":"Precio","src.orders.components.OrderDraftDetailsProducts.1134347598":"Precio","src.orders.components.OrderUnfulfilledItems.1134347598":"Precio","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"Precio","src.shipping.components.ShippingZoneRates.1134347598":"Precio","src.categories.components.CategoryProductList.2341910657":"Sin publicar","src.products.components.ProductList.2341910657":"Sin publicar","src.collections.components.CollectionList.2341910657":"Sin publicar","src.collections.components.CollectionProducts.2341910657":"Sin publicar","src.discounts.components.DiscountProducts.2341910657":"Sin publicar","src.components.ProductList.2341910657":"Sin publicar","src.categories.components.CategoryProductList.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.products.components.ProductList.1657559629":"","src.categories.components.CategoryProducts.4164156574":"","src.categories.components.CategoryProducts.3554578821":"Agregar producto","src.categories.components.CategoryUpdatePage.2968663655":"Productos","src.discounts.components.DiscountCategories.2968663655":"Productos","src.discounts.components.DiscountCollections.2968663655":"Productos","src.products":"Productos","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryUpdatePage.3229914152":"","src.categories.components.CategoryUpdatePage.770296100":"","src.categories.views.1754466114":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.CategoryList.3488150607":"","src.categories.views.712767046":"","src.categories.views.CategoryList.712767046":"","src.categories.views.299584400":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.categories.views.CategoryList.2144707585":"","src.collections.components.CollectionCreatePage.3958681866":"Agregar una colección","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionCreatePage.2001551496":"","src.collections.components.CollectionDetailsPage.2001551496":"","src.pages.components.PageDetailsPage.2001551496":"","src.products.components.ProductCreatePage.2001551496":"","src.products.components.ProductUpdatePage.2001551496":"","src.collections.components.CollectionCreatePage.1815688500":"","src.collections.components.CollectionDetailsPage.1815688500":"","src.pages.components.PageDetailsPage.1815688500":"","src.products.components.ProductCreatePage.1815688500":"","src.products.components.ProductUpdatePage.1815688500":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"Disponibilidad","src.availability":"","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionListPage.686910896":"","src.collections.views.686910896":"","src.collections.components.CollectionListPage.1631917001":"","src.collections.components.CollectionListPage.4057224233":"","src.components.AssignCollectionDialog.4057224233":"","src.translations.components.TranslationsEntitiesListPage.4057224233":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"Borrar imagen","src.collections.views.2402899582":"","src.collections.views.CollectionList.2237014112":"Retirar publicación","src.pages.views.2237014112":"Retirar publicación","src.products.views.ProductList.2237014112":"Retirar publicación","src.collections.views.CollectionList.1547167026":"Publicar","src.pages.views.1547167026":"Publicar","src.products.views.ProductList.1547167026":"Publicar","src.collections.views.CollectionList.2823425739":"","src.collections.views.CollectionList.1348793822":"","src.collections.views.CollectionList.2637364047":"","src.collections.views.CollectionList.3944356444":"","src.collections.views.CollectionList.3817188998":"","src.collections.views.CollectionList.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"Cerrar Sesión","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"Error","src.components.ErrorMessageCard.2845142593":"Error","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.Filter.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"Agregar Filtro","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.Filter.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.FilterBar.2340527467":"","src.components.SearchBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"Agregar","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"Visibilidad","src.pages.components.PageList.1459686496":"Visibilidad","src.products.components.ProductListFilter.1459686496":"Visibilidad","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"Oculto","src.products.views.ProductList.hidden":"Oculto","src.components.VisibilityCard.292404896":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","src.configuration.2326418019":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","src.configuration.3655543906":"","configurationMenuShipping":"","configurationMenuTaxes":"","src.configuration.3140151600":"","configurationMenuStaff":"","src.configuration.1233229030":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","configurationPluginsPages":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"Agregar Dirección ","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"Dirección de facturación","src.customers.components.CustomerAddresses.3517722732":"Dirección de envío","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"Dirección","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"Notas","src.orders.components.OrderCustomerNote.1520756907":"Notas","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"Nota","src.customers.components.CustomerDetails.577013340":"Nota","src.customers.components.CustomerCreatePage.1934221653":"Agregar cliente","src.customers.components.CustomerListPage.1934221653":"Agregar cliente","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerListPage.477293306":"","src.customers.components.CustomerListPage.1643417013":"","src.customers.components.CustomerOrders.3878642352":"Ordenes recientes","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"Fecha","src.orders.components.OrderDraftList.4205493358":"Fecha","src.orders.components.OrderList.4205493358":"Fecha","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"Estado","src.orders.components.OrderListFilter.1756106276":"Estado","src.plugins.components.PluginInfo.1756106276":"Estado","src.products.components.ProductListFilter.1756106276":"Estado","src.products.components.ProductVariants.1756106276":"Estado","src.customers.components.CustomerOrders.878013594":"Total","src.orders.components.OrderDraftDetailsProducts.878013594":"Total","src.orders.components.OrderDraftDetailsSummary.878013594":"Total","src.orders.components.OrderDraftList.878013594":"Total","src.orders.components.OrderFulfillment.878013594":"Total","src.orders.components.OrderUnfulfilledItems.878013594":"Total","src.orders.components.OrderList.878013594":"Total","src.orders.components.OrderPayment.878013594":"Total","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"Borrar dirección","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.CustomerList.1946482599":"","src.customers.views.CustomerList.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","src.discounts.components.SaleListPage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"Valor","src.discounts.components.SaleSummary.1148029984":"Valor","src.discounts.components.VoucherList.1148029984":"Valor","src.discounts.components.VoucherSummary.1148029984":"Valor","src.discounts.components.VoucherValue.1148029984":"Valor","src.products.components.ProductAttributes.1148029984":"Valor","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.3907768880":"","src.discounts.components.SaleListPage.1866913828":"","src.translations.components.TranslationsEntitiesListPage.1866913828":"","src.discounts.components.SalePricing.1099355007":"Precios","src.products.components.ProductPricing.1099355007":"Precios","src.products.components.ProductVariantPrice.1099355007":"Precios","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"Paises","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"Código","src.discounts.components.VoucherSummary.78726751":"Código","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.614836274":"","src.discounts.components.VoucherListPage.1112241061":"","src.discounts.components.VoucherListPage.1930485532":"","src.translations.components.TranslationsEntitiesListPage.1930485532":"","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"Toda la orden","src.discounts.products":"Productos específicos","src.discounts.shipment":"Envío","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.SaleList.2809303671":"","src.discounts.views.SaleList.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.VoucherList.367317371":"","src.discounts.views.VoucherList.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"Actividad","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.somethingWentWrong":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"Cancelar","src.orders.views.OrderList.3528672691":"Cancelar","src.confirm":"","src.delete":"Borrar","src.edit":"Editar","src.manage":"","src.remove":"Eliminar","src.save":"Guardar","src.show":"","src.undo":"","src.attributes":"Atributos","src.products.components.ProductAttributes.4153345096":"Atributos","src.categories":"Categorías","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"Colecciones","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"Configuración","src.customers":"Clientes","src.draftOrders":"","src.home":"Inicio","src.navigation":"Navegación","src.orders":"Pedidos","src.pages":"Páginas","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.plugins":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"Descuentos","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"Impuestos","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"Impuestos","src.taxes.components.CountryListPage.3955023266":"Impuestos","src.translations":"","src.vouchers":"Cupones","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"Totalmente Pagado","src.partiallyPaid":"","src.partiallyRefunded":"Parcialmente reembolsado","src.refunded":"Totalmente reembolsado","src.unpaid":"","src.cancelled":"Cancelado","src.draft":"Borrador","src.fulfilled":"Completada","src.orders.views.OrderList.fulfilled":"Completada","src.orders.components.OrderListFilter.1712863026":"Completada","src.partiallyFulfilled":"Parcialmente completada","src.unfulfilled":"No completada","src.orders.views.OrderList.unfulfilled":"No completada","src.orders.components.OrderListFilter.1751787272":"No completada","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"Link","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"Cancelar pedido","src.orders.components.OrderDetailsPage.1854613983":"Cancelar pedido","src.orders.components.OrderDraftPage.1854613983":"Cancelar pedido","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"Cliente","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"Cliente","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"La misma que el envío","src.orders.components.OrderCustomerEditDialog.1411666943":"","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.632633254":"","src.orders.components.OrderDraftCancelDialog.36681973":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"Producto","src.orders.components.OrderUnfulfilledItems.1895667608":"Producto","src.orders.components.OrderDraftDetailsProducts.2796503714":"Cantidad","src.orders.components.OrderFulfillment.2796503714":"Cantidad","src.orders.components.OrderFulfillmentDialog.2796503714":"Cantidad","src.orders.components.OrderUnfulfilledItems.2796503714":"Cantidad","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"Subtotal","src.orders.components.OrderPayment.781550514":"Subtotal","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"","src.orders.components.OrderListPage.2826235371":"","src.orders.components.OrderDraftListPage.551325728":"","src.orders.components.OrderDraftListPage.77765281":"","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"Cancelar envío","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"Añadir seguimiento","src.orders.components.OrderFulfillmentCancelDialog.732594284":"","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"SKU","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"Número de seguimiento","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.4067959693":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"La orden ha sido completamente pagada. ","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"El pedido fue enviado","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"Pago","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2415661583":"","src.orders.views.OrderList.readyToCapture":"","src.orders.components.OrderListFilter.2222765704":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"Envío","src.productTypes.components.ProductTypeShipping.1325966144":"Envío","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"Envío","src.orders.components.OrderPayment.3768782744":"Monto preautorizado","src.orders.components.OrderPayment.2320183694":"Cantidad retenida","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"Captura","src.orders.components.OrderPayment.2845258362":"Reembolso","src.orders.components.OrderPayment.2444197639":"Anular","src.orders.components.OrderPayment.3500506678":"Marcar como pagado","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"Cantidad","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.1542417144":"","src.products.components.ProductListPage.1542417144":"","src.products.views.1542417144":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.OrderDraftList.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.OrderDraftList.1648805446":"","src.orders.views.OrderDraftList.1161115149":"","src.orders.views.OrderDraftList.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.1068617485":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"Título","src.pages.components.PageList.1124600214":"Título","src.pages.components.PageInfo.1116746286":"Contenido","src.translations.components.TranslationsPagesPage.1116746286":"Contenido","src.pages.components.PageList.3478065224":"Slug","src.pages.components.PageSlug.3478065224":"Slug","src.productTypes.components.ProductTypeAttributes.3478065224":"Slug","src.pages.components.PageList.3767550649":"","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.3785394515":"","src.pages.views.3785394515":"","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.plugins.components.PluginInfo.3425535100":"","src.plugins.components.PluginsDetailsPage.3425535100":"","src.plugins.components.PluginInfo.1049131348":"","src.plugins.components.PluginInfo.4013064767":"","src.plugins.components.PluginsDetailsPage.3352026836":"","src.plugins.components.PluginsDetailsPage.2277745418":"","src.plugins.components.PluginsDetailsPage.1970881031":"","src.plugins.components.PluginSettings.1970881031":"","src.plugins.components.PluginsDetailsPage.4241018152":"","src.plugins.components.PluginsList.3247064221":"Activo","src.staff.components.StaffList.3247064221":"Activo","src.plugins.components.PluginsList.4120604650":"Acción ","src.plugins.components.PluginsList.666641390":"","src.plugins.views.100549097":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"Valores","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"Imágenes","src.products.components.ProductVariantImages.3240888698":"Imágenes","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"Stock","src.products.components.ProductVariantStock.3841616483":"Stock","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListFilter.821159718":"","src.products.components.ProductListFilter.1421689426":"","src.products.components.ProductListFilter.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"Inventario","prodictStockInventoryLabel":"Inventario","src.products.components.ProductVariantStock.3490038570":"Inventario","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"Borrar variante","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"Variantes","src.products.components.ProductVariants.2153006789":"Variantes","src.products.components.ProductVariantNavigation.2845381934":"Agregar variante","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.3989383405":"","src.products.views.3989383405":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1591632382":"","src.products.views.1731766393":"","src.products.views.2880386427":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1217376589":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"Producto Simple","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.3479705616":"","src.productTypes.components.ProductTypeListPage.1776073799":"","src.productTypes.components.ProductTypeListPage.3420445375":"","src.translations.components.TranslationsEntitiesListPage.3420445375":"","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.ProductTypeList.4080551769":"","src.productTypes.views.ProductTypeList.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRates.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2673544109":"","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.1947090060":"","src.shipping.views.ShippingZoneDetails.131963671":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"Clave","src.siteSettings.components.SiteSettingsKeys.2446088470":"Clave","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"Agregar autentificación ","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.1481503299":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"Permisos","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.797461521":"","src.staff.components.StaffListPage.2852350932":"","src.staff.components.StaffListPage.61043583":"","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"El usuario está activo","src.staff.views.1308770978":"","src.staff.views.8878988":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.2105464697":"","src.translations.components.TranslationsEntitiesListPage.2559018090":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file diff --git a/locale/es.po b/locale/es.po index 60d8fa9c1..7da9ce8ca 100644 --- a/locale/es.po +++ b/locale/es.po @@ -12,15 +12,15 @@ # Carlos Horowicz , 2019 # Daniel Santiago , 2019 # Manuel Bilbao , 2019 -# C0D3C , 2019 # Eduardo , 2019 # Nicolás Pinzón , 2019 # Renzo Manganiello , 2019 +# C0D3C , 2019 # msgid "" msgstr "" -"POT-Creation-Date: 2019-09-06T13:56:36.897Z\n" -"Last-Translator: Renzo Manganiello , 2019\n" +"POT-Creation-Date: 2019-09-16T15:25:09.340Z\n" +"Last-Translator: C0D3C , 2019\n" "Language-Team: Spanish (https://www.transifex.com/mirumee/teams/34782/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -82,7 +82,7 @@ msgstr "" #: build/locale/src/plugins/components/PluginsList/PluginsList.json msgctxt "user action bar" msgid "Action" -msgstr "" +msgstr "Acción " #. [src.plugins.components.PluginsList.3247064221] - plugin status #. defaultMessage is: @@ -157,22 +157,6 @@ msgctxt "create new menu item, header" msgid "Add Item" msgstr "" -#. [menuCreateDialogHeader] - dialog header -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json -msgctxt "dialog header" -msgid "Add Menu" -msgstr "" - -#. [menuListPageAddMenu] - button -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json -msgctxt "button" -msgid "Add Menu" -msgstr "" - #. [src.siteSettings.components.SiteSettingsKeyDialog.1238948746] - dialog #. header #. defaultMessage is: @@ -182,14 +166,6 @@ msgctxt "dialog header" msgid "Add New Authorization Key" msgstr "" -#. [src.pages.components.PageDetailsPage.755314116] - page header -#. defaultMessage is: -#. Add Page -#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json -msgctxt "page header" -msgid "Add Page" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.2892088870] - dialog header #. defaultMessage is: #. Add Price Rate @@ -198,38 +174,6 @@ msgctxt "dialog header" msgid "Add Price Rate" msgstr "" -#. [src.orders.components.OrderProductAddDialog.2775402904] - dialog header -#. defaultMessage is: -#. Add Product -#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json -msgctxt "dialog header" -msgid "Add Product" -msgstr "" - -#. [src.products.components.ProductListPage.2775402904] - button -#. defaultMessage is: -#. Add Product -#: build/locale/src/products/components/ProductListPage/ProductListPage.json -msgctxt "button" -msgid "Add Product" -msgstr "" - -#. [src.discounts.components.SaleListPage.1742771332] - button -#. defaultMessage is: -#. Add Sale -#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json -msgctxt "button" -msgid "Add Sale" -msgstr "" - -#. [src.staff.components.StaffAddMemberDialog.3490059488] - dialog header -#. defaultMessage is: -#. Add Staff Member -#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json -msgctxt "dialog header" -msgid "Add Staff Member" -msgstr "" - #. [src.attributes.components.AttributeValueEditDialog.1841790893] - add #. attribute value #. defaultMessage is: @@ -239,14 +183,6 @@ msgctxt "add attribute value" msgid "Add Value" msgstr "" -#. [src.products.views.2178905289] - header -#. defaultMessage is: -#. Add Variant -#: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "header" -msgid "Add Variant" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.1397795758] - add weight #. based shipping method, dialog header #. defaultMessage is: @@ -264,14 +200,6 @@ msgctxt "button" msgid "Add address" msgstr "" -#. [src.attributes.components.AttributeListPage.350498821] - button -#. defaultMessage is: -#. Add attribute -#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json -msgctxt "button" -msgid "Add attribute" -msgstr "Agregar atributo" - #. [src.siteSettings.components.SiteSettingsKeyDialog.50561933] - button #. defaultMessage is: #. Add authentication @@ -280,14 +208,6 @@ msgctxt "button" msgid "Add authentication" msgstr "Agregar autentificación " -#. [src.categories.components.CategoryListPage.228151782] - button -#. defaultMessage is: -#. Add category -#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json -msgctxt "button" -msgid "Add category" -msgstr "Agregar categoría" - #. [src.collections.components.CollectionCreatePage.3958681866] - page header #. defaultMessage is: #. Add collection @@ -296,14 +216,6 @@ msgctxt "page header" msgid "Add collection" msgstr "Agregar una colección" -#. [src.collections.components.CollectionListPage.3958681866] - button -#. defaultMessage is: -#. Add collection -#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json -msgctxt "button" -msgid "Add collection" -msgstr "Agregar una colección" - #. [src.customers.components.CustomerCreatePage.1934221653] - page header #. defaultMessage is: #. Add customer @@ -336,14 +248,6 @@ msgctxt "button" msgid "Add key" msgstr "" -#. [menuItemsAddItem] - add new menu item -#. defaultMessage is: -#. Add new item -#: build/locale/src/navigation/components/MenuItems/MenuItems.json -msgctxt "add new menu item" -msgid "Add new item" -msgstr "" - #. [menuItemsPlaceholder] #. defaultMessage is: #. Add new menu item to begin creating menu @@ -378,14 +282,6 @@ msgctxt "button" msgid "Add or Edit Link" msgstr "" -#. [src.pages.components.PageListPage.1767905232] - button -#. defaultMessage is: -#. Add page -#: build/locale/src/pages/components/PageListPage/PageListPage.json -msgctxt "button" -msgid "Add page" -msgstr "Añadir página" - #. [src.categories.components.CategoryProducts.3554578821] - button #. defaultMessage is: #. Add product @@ -394,14 +290,6 @@ msgctxt "button" msgid "Add product" msgstr "Agregar producto" -#. [src.productTypes.components.ProductTypeListPage.889729490] - button -#. defaultMessage is: -#. Add product type -#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json -msgctxt "button" -msgid "Add product type" -msgstr "Agregar tipo de producto" - #. [src.orders.components.OrderDraftDetails.2528459381] - button #. defaultMessage is: #. Add products @@ -410,14 +298,6 @@ msgctxt "button" msgid "Add products" msgstr "" -#. [src.shipping.components.ShippingZoneRates.352297149] - button -#. defaultMessage is: -#. Add rate -#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json -msgctxt "button" -msgid "Add rate" -msgstr "" - #. [src.categories.components.CategoryCreatePage.2563994280] #. defaultMessage is: #. Add search engine title and description to make this category easier to @@ -479,30 +359,6 @@ msgctxt "button" msgid "Add shipping carrier" msgstr "" -#. [src.shipping.components.ShippingZonesList.2474410767] - button -#. defaultMessage is: -#. Add shipping zone -#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json -msgctxt "button" -msgid "Add shipping zone" -msgstr "Añadir zona de envío" - -#. [src.staff.components.StaffListPage.802625341] - button -#. defaultMessage is: -#. Add staff member -#: build/locale/src/staff/components/StaffListPage/StaffListPage.json -msgctxt "button" -msgid "Add staff member" -msgstr "Agregar miembro del personal" - -#. [src.categories.components.CategoryList.435697837] - button -#. defaultMessage is: -#. Add subcategory -#: build/locale/src/categories/components/CategoryList/CategoryList.json -msgctxt "button" -msgid "Add subcategory" -msgstr "" - #. [src.attributes.components.AttributeProperties.673770329] - add attribute #. as column in product list table #. defaultMessage is: @@ -530,35 +386,14 @@ msgctxt "dialog header" msgid "Add tracking code" msgstr "" -#. [src.attributes.components.AttributeValues.254756045] - add attribute value -#. button -#. defaultMessage is: -#. Add value -#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json -msgctxt "add attribute value button" -msgid "Add value" -msgstr "" - #. [src.products.components.ProductVariantNavigation.2845381934] - button #. defaultMessage is: #. Add variant -#. [src.products.components.ProductVariants.2845381934] - button -#. defaultMessage is: -#. Add variant #: build/locale/src/products/components/ProductVariantNavigation/ProductVariantNavigation.json -#: build/locale/src/products/components/ProductVariants/ProductVariants.json msgctxt "button" msgid "Add variant" msgstr "Agregar variante" -#. [src.discounts.components.VoucherListPage.1536809153] - button -#. defaultMessage is: -#. Add voucher -#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json -msgctxt "button" -msgid "Add voucher" -msgstr "Agregar cupón" - #. [src.attributes.views.AttributeDetails.634268988] - added new attribute #. value #. defaultMessage is: @@ -616,14 +451,6 @@ msgctxt "description" msgid "Address line 2" msgstr "" -#. [src.customers.components.CustomerAddress.1320082647] - addres card header -#. defaultMessage is: -#. Address {addressNumber} -#: build/locale/src/customers/components/CustomerAddress/CustomerAddress.json -msgctxt "addres card header" -msgid "Address {addressNumber}" -msgstr "" - #. [src.attributes.components.AttributeValues.1565474525] - attribute values #. list: slug column header #. defaultMessage is: @@ -673,6 +500,46 @@ msgctxt "tax rate" msgid "Agricultural supplies" msgstr "" +#. [src.attributes.components.AttributeListPage.2417065806] - tab name +#. defaultMessage is: +#. All Attributes +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "tab name" +msgid "All Attributes" +msgstr "" + +#. [src.categories.components.CategoryListPage.4294878092] - tab name +#. defaultMessage is: +#. All Categories +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "tab name" +msgid "All Categories" +msgstr "" + +#. [src.collections.components.CollectionListPage.1631917001] - tab name +#. defaultMessage is: +#. All Collections +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "tab name" +msgid "All Collections" +msgstr "" + +#. [src.customers.components.CustomerListPage.477293306] - tab name +#. defaultMessage is: +#. All Customers +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "tab name" +msgid "All Customers" +msgstr "" + +#. [src.orders.components.OrderDraftListPage.551325728] - tab name +#. defaultMessage is: +#. All Drafts +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "tab name" +msgid "All Drafts" +msgstr "" + #. [src.orders.components.OrderListPage.875489544] - tab name #. defaultMessage is: #. All Orders @@ -690,22 +557,54 @@ msgctxt "section header" msgid "All Photos" msgstr "" -#. [src.products.components.ProductListPage.821159718] - tab name +#. [src.productTypes.components.ProductTypeListPage.1776073799] - tab name +#. defaultMessage is: +#. All Product Types +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "tab name" +msgid "All Product Types" +msgstr "" + +#. [src.products.components.ProductListFilter.821159718] - tab name #. defaultMessage is: #. All Products -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "tab name" msgid "All Products" msgstr "" -#. [src.categories.components.CategoryList.3229914152] - section header +#. [src.discounts.components.SaleListPage.3907768880] - tab name +#. defaultMessage is: +#. All Sales +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "tab name" +msgid "All Sales" +msgstr "" + +#. [src.staff.components.StaffListPage.2852350932] - tab name +#. defaultMessage is: +#. All Staff Members +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "tab name" +msgid "All Staff Members" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.3229914152] - section header #. defaultMessage is: #. All Subcategories -#: build/locale/src/categories/components/CategoryList/CategoryList.json +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json msgctxt "section header" msgid "All Subcategories" msgstr "" +#. [src.discounts.components.VoucherListPage.1112241061] - tab name +#. defaultMessage is: +#. All Vouchers +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "tab name" +msgid "All Vouchers" +msgstr "" + #. [src.taxes.components.TaxConfiguration.142803418] #. defaultMessage is: #. All products prices are entered with tax included @@ -813,6 +712,14 @@ msgctxt "description" msgid "Are you sure you want to delete collection's image?" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.36681973] +#. defaultMessage is: +#. Are you sure you want to delete draft #{number}? +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "description" +msgid "Are you sure you want to delete draft #{number}?" +msgstr "" + #. [menuDetailsDeleteMenuContent] #. defaultMessage is: #. Are you sure you want to delete menu {menuName}? @@ -829,6 +736,14 @@ msgctxt "description" msgid "Are you sure you want to delete this address from users address book?" msgstr "" +#. [src.products.views.2880386427] +#. defaultMessage is: +#. Are you sure you want to delete this image? +#: build/locale/src/products/views/ProductImage.json +msgctxt "description" +msgid "Are you sure you want to delete this image?" +msgstr "" + #. [src.attributes.components.AttributeDeleteDialog.3738429348] - dialog #. content #. defaultMessage is: @@ -879,12 +794,7 @@ msgstr "" #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this attribute} #. other{{displayQuantity} categories}}? -#. [src.categories.views.844574071] -#. defaultMessage is: -#. Are you sure you want to delete {counter,plural,one{this attribute} -#. other{{displayQuantity} categories}}? #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this attribute} " @@ -902,22 +812,33 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.2497542455] +#. [src.categories.views.CategoryList.2144707585] +#. defaultMessage is: +#. Are you sure you want to delete {counter,plural,one{this category} +#. other{{displayQuantity} categories}}? +#: build/locale/src/categories/views/CategoryList/CategoryList.json +msgctxt "description" +msgid "" +"Are you sure you want to delete {counter,plural,one{this category} " +"other{{displayQuantity} categories}}?" +msgstr "" + +#. [src.collections.views.CollectionList.2497542455] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this collection} " "other{{displayQuantity} collections}}?" msgstr "" -#. [src.customers.views.409347866] +#. [src.customers.views.CustomerList.409347866] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this customer} #. other{{displayQuantity} customers}}? -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this customer} " @@ -935,11 +856,11 @@ msgid "" "other{{displayQuantity} menus}}?" msgstr "" -#. [src.orders.views.1389231130] - dialog content +#. [src.orders.views.OrderDraftList.1389231130] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this order draft} #. other{{displayQuantity} orderDrafts}}? -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this order draft} " @@ -957,11 +878,11 @@ msgid "" "other{{displayQuantity} pages}}?" msgstr "" -#. [src.productTypes.views.2294091098] - dialog content +#. [src.productTypes.views.ProductTypeList.2294091098] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this product type} #. other{{displayQuantity} product types}}? -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this product type} " @@ -979,11 +900,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.discounts.views.2516361175] - dialog content +#. [src.discounts.views.SaleList.2516361175] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this sale} #. other{{displayQuantity} sales}}? -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this sale} " @@ -1012,17 +933,33 @@ msgid "" "other{{displayQuantity} variants}}?" msgstr "" -#. [src.discounts.views.1791926983] - dialog content +#. [src.discounts.views.VoucherList.1791926983] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this voucher} #. other{{displayQuantity} vouchers}}? -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this voucher} " "other{{displayQuantity} vouchers}}?" msgstr "" +#. [src.shipping.views.ShippingZoneDetails.131963671] - unassign country +#. defaultMessage is: +#. Are you sure you want to delete {countryName} from this shipping zone? +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country" +msgid "Are you sure you want to delete {countryName} from this shipping zone?" +msgstr "" + +#. [src.staff.views.8878988] +#. defaultMessage is: +#. Are you sure you want to delete {email} from staff members? +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "description" +msgid "Are you sure you want to delete {email} from staff members?" +msgstr "" + #. [src.customers.views.1927691511] - delete customer, dialog content #. defaultMessage is: #. Are you sure you want to delete {email}? @@ -1137,11 +1074,11 @@ msgctxt "description" msgid "Are you sure you want to mark this order as paid?" msgstr "" -#. [src.collections.views.1348793822] +#. [src.collections.views.CollectionList.1348793822] #. defaultMessage is: #. Are you sure you want to publish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to publish {counter,plural,one{this collection} " @@ -1170,30 +1107,6 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.orders.components.OrderDraftCancelDialog.3199827590] -#. defaultMessage is: -#. Are you sure you want to remove draft #{number}? -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "description" -msgid "Are you sure you want to remove draft #{number}?" -msgstr "" - -#. [src.products.views.672103788] -#. defaultMessage is: -#. Are you sure you want to remove this image? -#: build/locale/src/products/views/ProductImage.json -msgctxt "description" -msgid "Are you sure you want to remove this image?" -msgstr "" - -#. [src.shipping.views.ShippingZoneDetails.1790261672] - unassign country -#. defaultMessage is: -#. Are you sure you want to remove {countryName} from this shipping zone? -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country" -msgid "Are you sure you want to remove {countryName} from this shipping zone?" -msgstr "" - #. [src.staff.views.3945766678] #. defaultMessage is: #. Are you sure you want to remove {email} avatar? @@ -1202,14 +1115,6 @@ msgctxt "description" msgid "Are you sure you want to remove {email} avatar?" msgstr "" -#. [src.staff.views.2728048444] -#. defaultMessage is: -#. Are you sure you want to remove {email} from staff members? -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "description" -msgid "Are you sure you want to remove {email} from staff members?" -msgstr "" - #. [src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450] #. defaultMessage is: #. Are you sure you want to unassign {attributeName} from {productTypeName}? @@ -1290,11 +1195,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.3944356444] +#. [src.collections.views.CollectionList.3944356444] #. defaultMessage is: #. Are you sure you want to unpublish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to unpublish {counter,plural,one{this collection} " @@ -1455,6 +1360,15 @@ msgctxt "button" msgid "Assign products" msgstr "" +#. [src.attributes.components.AttributeValues.351422234] - assign attribute +#. value button +#. defaultMessage is: +#. Assign value +#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json +msgctxt "assign attribute value button" +msgid "Assign value" +msgstr "" + #. [src.attributes.components.AttributeDetails.3605174225] - attribute's slug #. short code label #. defaultMessage is: @@ -1533,6 +1447,14 @@ msgctxt "product attributes, section header" msgid "Attributes" msgstr "Atributos" +#. [src.configuration.2326418019] +#. defaultMessage is: +#. Attributes and Product Typess +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Attributes and Product Typess" +msgstr "" + #. [src.attributes.views.AttributeList.3218248395] - deleted multiple #. attributes #. defaultMessage is: @@ -2316,6 +2238,22 @@ msgctxt "description" msgid "Country area" msgstr "" +#. [menuCreateDialogHeader] - dialog header +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json +msgctxt "dialog header" +msgid "Create Menu" +msgstr "" + +#. [menuListPageAddMenu] - button +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json +msgctxt "button" +msgid "Create Menu" +msgstr "" + #. [src.attributes.components.AttributePage.2855501559] - page title #. defaultMessage is: #. Create New Attribute @@ -2340,6 +2278,30 @@ msgctxt "header" msgid "Create New Shipping Zone" msgstr "" +#. [src.pages.components.PageDetailsPage.1068617485] - page header +#. defaultMessage is: +#. Create Page +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page header" +msgid "Create Page" +msgstr "" + +#. [src.orders.components.OrderProductAddDialog.1542417144] - dialog header +#. defaultMessage is: +#. Create Product +#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json +msgctxt "dialog header" +msgid "Create Product" +msgstr "" + +#. [src.products.components.ProductListPage.1542417144] - button +#. defaultMessage is: +#. Create Product +#: build/locale/src/products/components/ProductListPage/ProductListPage.json +msgctxt "button" +msgid "Create Product" +msgstr "" + #. [src.products.views.1542417144] - window title #. defaultMessage is: #. Create Product @@ -2372,11 +2334,19 @@ msgctxt "page header" msgid "Create Sale" msgstr "" -#. [src.products.views.2362587265] - window title +#. [src.discounts.components.SaleListPage.3866518732] - button +#. defaultMessage is: +#. Create Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "button" +msgid "Create Sale" +msgstr "" + +#. [src.products.views.2362587265] - header #. defaultMessage is: #. Create Variant #: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "window title" +msgctxt "header" msgid "Create Variant" msgstr "" @@ -2388,6 +2358,22 @@ msgctxt "page header" msgid "Create Voucher" msgstr "" +#. [src.attributes.components.AttributeListPage.3824684885] - button +#. defaultMessage is: +#. Create attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "button" +msgid "Create attribute" +msgstr "" + +#. [src.categories.components.CategoryListPage.1140231710] - button +#. defaultMessage is: +#. Create category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "button" +msgid "Create category" +msgstr "" + #. [src.categories.views.1140231710] - window title #. defaultMessage is: #. Create category @@ -2396,6 +2382,14 @@ msgctxt "window title" msgid "Create category" msgstr "" +#. [src.collections.components.CollectionListPage.686910896] - button +#. defaultMessage is: +#. Create collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "button" +msgid "Create collection" +msgstr "" + #. [src.collections.views.686910896] - window title #. defaultMessage is: #. Create collection @@ -2412,6 +2406,14 @@ msgctxt "window title" msgid "Create customer" msgstr "" +#. [menuItemsAddItem] - add new menu item +#. defaultMessage is: +#. Create new item +#: build/locale/src/navigation/components/MenuItems/MenuItems.json +msgctxt "add new menu item" +msgid "Create new item" +msgstr "" + #. [src.orders.components.OrderDraftListPage.2826235371] - button #. defaultMessage is: #. Create order @@ -2424,6 +2426,14 @@ msgctxt "button" msgid "Create order" msgstr "" +#. [src.pages.components.PageListPage.3785394515] - button +#. defaultMessage is: +#. Create page +#: build/locale/src/pages/components/PageListPage/PageListPage.json +msgctxt "button" +msgid "Create page" +msgstr "" + #. [src.pages.views.3785394515] - header #. defaultMessage is: #. Create page @@ -2435,11 +2445,55 @@ msgstr "" #. [src.shipping.components.ShippingZoneRateDialog.16061680] - button #. defaultMessage is: #. Create rate +#. [src.shipping.components.ShippingZoneRates.16061680] - button +#. defaultMessage is: +#. Create rate #: build/locale/src/shipping/components/ShippingZoneRateDialog/ShippingZoneRateDialog.json +#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json msgctxt "button" msgid "Create rate" msgstr "" +#. [src.shipping.components.ShippingZonesList.2673544109] - button +#. defaultMessage is: +#. Create shipping zone +#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json +msgctxt "button" +msgid "Create shipping zone" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.770296100] - button +#. defaultMessage is: +#. Create subcategory +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json +msgctxt "button" +msgid "Create subcategory" +msgstr "" + +#. [src.products.components.ProductVariants.3989383405] - button +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/components/ProductVariants/ProductVariants.json +msgctxt "button" +msgid "Create variant" +msgstr "" + +#. [src.products.views.3989383405] - window title +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/views/ProductVariantCreate.json +msgctxt "window title" +msgid "Create variant" +msgstr "" + +#. [src.discounts.components.VoucherListPage.614836274] - button +#. defaultMessage is: +#. Create voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "button" +msgid "Create voucher" +msgstr "" + #. [src.collections.views.1597339737] #. defaultMessage is: #. Created collection @@ -2486,7 +2540,11 @@ msgstr "" #. [src.components.FilterBar.2340527467] #. defaultMessage is: #. Custom Filter +#. [src.components.SearchBar.2340527467] +#. defaultMessage is: +#. Custom Filter #: build/locale/src/components/FilterBar/FilterBar.json +#: build/locale/src/components/SearchBar/SearchBar.json msgctxt "description" msgid "Custom Filter" msgstr "" @@ -2742,10 +2800,18 @@ msgctxt "dialog title" msgid "Delete Collection" msgstr "" -#. [src.orders.views.1161115149] - dialog header +#. [src.products.views.1731766393] - dialog header +#. defaultMessage is: +#. Delete Image +#: build/locale/src/products/views/ProductImage.json +msgctxt "dialog header" +msgid "Delete Image" +msgstr "" + +#. [src.orders.views.OrderDraftList.1161115149] - dialog header #. defaultMessage is: #. Delete Order Drafts -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog header" msgid "Delete Order Drafts" msgstr "" @@ -2783,10 +2849,10 @@ msgctxt "dialog header" msgid "Delete Product Type" msgstr "" -#. [src.productTypes.views.4080551769] - dialog header +#. [src.productTypes.views.ProductTypeList.4080551769] - dialog header #. defaultMessage is: #. Delete Product Types -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog header" msgid "Delete Product Types" msgstr "" @@ -2815,10 +2881,10 @@ msgctxt "dialog header" msgid "Delete Sale" msgstr "" -#. [src.discounts.views.2809303671] - dialog header +#. [src.discounts.views.SaleList.2809303671] - dialog header #. defaultMessage is: #. Delete Sales -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog header" msgid "Delete Sales" msgstr "" @@ -2832,9 +2898,13 @@ msgctxt "custom search delete, dialog header" msgid "Delete Search" msgstr "" +#. [src.components.Filter.2173195312] - button +#. defaultMessage is: +#. Delete Search #. [src.components.TableFilter.2173195312] - button #. defaultMessage is: #. Delete Search +#: build/locale/src/components/Filter/FilterSearch.json #: build/locale/src/components/TableFilter/FilterChips.json msgctxt "button" msgid "Delete Search" @@ -2901,10 +2971,10 @@ msgctxt "dialog header" msgid "Delete Voucher" msgstr "" -#. [src.discounts.views.367317371] - dialog header +#. [src.discounts.views.VoucherList.367317371] - dialog header #. defaultMessage is: #. Delete Vouchers -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog header" msgid "Delete Vouchers" msgstr "" @@ -2938,11 +3008,11 @@ msgstr "" #. [src.categories.views.712767046] - dialog title #. defaultMessage is: #. Delete categories -#. [src.categories.views.712767046] - dialog title +#. [src.categories.views.CategoryList.712767046] - dialog title #. defaultMessage is: #. Delete categories #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "dialog title" msgid "Delete categories" msgstr "" @@ -2959,10 +3029,10 @@ msgctxt "dialog title" msgid "Delete category" msgstr "Borrar Categoría" -#. [src.collections.views.3817188998] - dialog title +#. [src.collections.views.CollectionList.3817188998] - dialog title #. defaultMessage is: #. Delete collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Delete collections" msgstr "" @@ -2975,14 +3045,31 @@ msgctxt "dialog header" msgid "Delete customer" msgstr "" -#. [src.customers.views.1946482599] - dialog header +#. [src.customers.views.CustomerList.1946482599] - dialog header #. defaultMessage is: #. Delete customers -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "dialog header" msgid "Delete customers" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.632633254] - dialog header +#. defaultMessage is: +#. Delete draft order +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "dialog header" +msgid "Delete draft order" +msgstr "" + +#. [src.shipping.views.ShippingZoneDetails.1947090060] - unassign country, +#. dialog header +#. defaultMessage is: +#. Delete from shipping zone +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country, dialog header" +msgid "Delete from shipping zone" +msgstr "" + #. [src.collections.views.942133001] - dialog title #. defaultMessage is: #. Delete image @@ -3043,6 +3130,14 @@ msgctxt "description" msgid "Deleted collection" msgstr "Colección eliminada" +#. [src.orders.views.OrderDraftList.1648805446] +#. defaultMessage is: +#. Deleted draft orders +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json +msgctxt "description" +msgid "Deleted draft orders" +msgstr "" + #. [menuListDeletedMenu] #. defaultMessage is: #. Deleted menu @@ -3642,14 +3737,6 @@ msgctxt "order history message" msgid "Fulfilled {quantity} items" msgstr "" -#. [src.orders.components.OrderListFilter.2943502192] - order -#. defaultMessage is: -#. Fulfillment Status -#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json -msgctxt "order" -msgid "Fulfillment Status" -msgstr "" - #. [src.orders.components.OrderHistory.3081292385] - order history message #. defaultMessage is: #. Fulfillment confirmation was sent to customer @@ -3806,12 +3893,12 @@ msgctxt "description" msgid "If empty, the preview shows what will be autogenerated." msgstr "Si está vacío, la vista previa muestra qué será autogenerado" -#. [src.attributes.components.AttributeProperties.2519239682] +#. [src.attributes.components.AttributeProperties.4048785456] #. defaultMessage is: -#. If enable this attribute can be used as a column in product table. +#. If enabled this attribute can be used as a column in product table. #: build/locale/src/attributes/components/AttributeProperties/AttributeProperties.json msgctxt "description" -msgid "If enable this attribute can be used as a column in product table." +msgid "If enabled this attribute can be used as a column in product table." msgstr "" #. [src.attributes.components.AttributeProperties.787251583] @@ -3917,6 +4004,22 @@ msgctxt "product variant stock" msgid "Inventory" msgstr "Inventario" +#. [src.staff.components.StaffAddMemberDialog.1481503299] - dialog header +#. defaultMessage is: +#. Invite Staff Member +#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json +msgctxt "dialog header" +msgid "Invite Staff Member" +msgstr "" + +#. [src.staff.components.StaffListPage.797461521] - button +#. defaultMessage is: +#. Invite staff member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "button" +msgid "Invite staff member" +msgstr "" + #. [src.productTypes.components.ProductTypeShipping.2143413921] - switch #. button #. defaultMessage is: @@ -4269,6 +4372,14 @@ msgctxt "voucher requirement" msgid "Minimum quantity of items" msgstr "" +#. [src.configuration.1233229030] +#. defaultMessage is: +#. Miscellaneous +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Miscellaneous" +msgstr "" + #. [src.attributes.components.AttributeDetails.3334509011] - product attribute #. type #. defaultMessage is: @@ -5101,6 +5212,14 @@ msgctxt "description" msgid "Order History" msgstr "" +#. [src.orders.components.OrderListFilter.2222765704] +#. defaultMessage is: +#. Order Status +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +msgctxt "description" +msgid "Order Status" +msgstr "" + #. [src.orders.components.OrderHistory.1230178536] - order history message #. defaultMessage is: #. Order address was updated @@ -5117,13 +5236,13 @@ msgctxt "order history message" msgid "Order confirmation was sent to customer" msgstr "" -#. [src.orders.views.1872939752] +#. [src.orders.views.OrderDraftList.1872939752] #. defaultMessage is: #. Order draft succesfully created #. [src.orders.views.OrderList.1872939752] #. defaultMessage is: #. Order draft succesfully created -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json #: build/locale/src/orders/views/OrderList/OrderList.json msgctxt "description" msgid "Order draft succesfully created" @@ -5788,6 +5907,14 @@ msgctxt "description" msgid "Product Name" msgstr "" +#. [src.configuration.3655543906] +#. defaultMessage is: +#. Product Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Product Settings" +msgstr "" + #. [src.discounts.components.DiscountProducts.4257289053] #. defaultMessage is: #. Product Type @@ -5946,12 +6073,12 @@ msgctxt "order history message" msgid "Products were added to draft order" msgstr "" -#. [src.orders.components.OrderHistory.2574162126] - order history message +#. [src.orders.components.OrderHistory.4067959693] - order history message #. defaultMessage is: -#. Products were removed from draft order +#. Products were deleted from draft order #: build/locale/src/orders/components/OrderHistory/OrderHistory.json msgctxt "order history message" -msgid "Products were removed from draft order" +msgid "Products were deleted from draft order" msgstr "" #. [src.properties] @@ -5978,10 +6105,10 @@ msgctxt "description" msgid "Provided email address does not exist in our database." msgstr "" -#. [src.collections.views.1547167026] - publish collections +#. [src.collections.views.CollectionList.1547167026] - publish collections #. defaultMessage is: #. Publish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "publish collections" msgid "Publish" msgstr "Publicar" @@ -6018,10 +6145,10 @@ msgctxt "dialog header" msgid "Publish Products" msgstr "" -#. [src.collections.views.2823425739] - dialog title +#. [src.collections.views.CollectionList.2823425739] - dialog title #. defaultMessage is: #. Publish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Publish collections" msgstr "" @@ -6195,6 +6322,18 @@ msgctxt "shipping method price" msgid "Rate Price" msgstr "" +#. [src.orders.components.OrderListFilter.2415661583] - order status +#. defaultMessage is: +#. Ready to Capture +#. [src.orders.views.OrderList.readyToCapture] - order status +#. defaultMessage is: +#. Ready to Capture +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +#: build/locale/src/orders/views/OrderList/filters.json +msgctxt "order status" +msgid "Ready to Capture" +msgstr "" + #. [src.customers.components.CustomerOrders.3878642352] - section header #. defaultMessage is: #. Recent orders @@ -6243,22 +6382,14 @@ msgctxt "switch button" msgid "Release all stock allocated to this order" msgstr "" -#. [src.auth.components.LoginPage.3182284913] - login -#. defaultMessage is: -#. Remember me -#: build/locale/src/auth/components/LoginPage/LoginPage.json -msgctxt "login" -msgid "Remember me" -msgstr "" - #. [src.categories.views.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. -#. [src.categories.views.3488150607] +#. [src.categories.views.CategoryList.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "description" msgid "Remember this will also delete all products assigned to this category." msgstr "" @@ -6271,39 +6402,6 @@ msgctxt "button" msgid "Remove" msgstr "Eliminar" -#. [src.products.views.490753666] - dialog header -#. defaultMessage is: -#. Remove Image -#: build/locale/src/products/views/ProductImage.json -msgctxt "dialog header" -msgid "Remove Image" -msgstr "" - -#. [src.orders.components.OrderDraftCancelDialog.500287069] - dialog header -#. defaultMessage is: -#. Remove draft order -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "dialog header" -msgid "Remove draft order" -msgstr "" - -#. [src.shipping.views.ShippingZoneDetails.254167659] - unassign country, -#. dialog header -#. defaultMessage is: -#. Remove from shipping zone -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country, dialog header" -msgid "Remove from shipping zone" -msgstr "" - -#. [src.orders.views.3880993240] -#. defaultMessage is: -#. Removed draft orders -#: build/locale/src/orders/views/OrderDraftList.json -msgctxt "description" -msgid "Removed draft orders" -msgstr "" - #. [src.pages.views.1457312643] #. defaultMessage is: #. Removed page @@ -6469,6 +6567,18 @@ msgctxt "button" msgid "Save" msgstr "Guardar" +#. [src.components.Filter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#. [src.components.TableFilter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#: build/locale/src/components/Filter/FilterSearch.json +#: build/locale/src/components/TableFilter/FilterChips.json +msgctxt "button" +msgid "Save Custom Search" +msgstr "" + #. [src.components.SaveFilterTabDialog.1514415736] - save filter tab, header #. defaultMessage is: #. Save Custom Search @@ -6477,14 +6587,6 @@ msgctxt "save filter tab, header" msgid "Save Custom Search" msgstr "" -#. [src.components.TableFilter.1514415736] - button -#. defaultMessage is: -#. Save Custom Search -#: build/locale/src/components/TableFilter/FilterChips.json -msgctxt "button" -msgid "Save Custom Search" -msgstr "" - #. [src.products.components.ProductVariantCreatePage.2853608829] - button #. defaultMessage is: #. Save variant @@ -6501,6 +6603,14 @@ msgctxt "description" msgid "Saved changes" msgstr "" +#. [src.attributes.components.AttributeListPage.3916653510] +#. defaultMessage is: +#. Search Attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "description" +msgid "Search Attribute" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.902296540] #. defaultMessage is: #. Search Attributes @@ -6517,10 +6627,30 @@ msgctxt "description" msgid "Search Categories" msgstr "" +#. [src.categories.components.CategoryListPage.3841025483] +#. defaultMessage is: +#. Search Category +#. [src.translations.components.TranslationsEntitiesListPage.3841025483] +#. defaultMessage is: +#. Search Category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Category" +msgstr "" + +#. [src.collections.components.CollectionListPage.4057224233] +#. defaultMessage is: +#. Search Collection #. [src.components.AssignCollectionDialog.4057224233] #. defaultMessage is: #. Search Collection +#. [src.translations.components.TranslationsEntitiesListPage.4057224233] +#. defaultMessage is: +#. Search Collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json #: build/locale/src/components/AssignCollectionDialog/AssignCollectionDialog.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json msgctxt "description" msgid "Search Collection" msgstr "" @@ -6533,6 +6663,14 @@ msgctxt "description" msgid "Search Countries" msgstr "" +#. [src.customers.components.CustomerListPage.1643417013] +#. defaultMessage is: +#. Search Customer +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "description" +msgid "Search Customer" +msgstr "" + #. [src.orders.components.OrderCustomer.2433460203] #. defaultMessage is: #. Search Customers @@ -6541,6 +6679,14 @@ msgctxt "description" msgid "Search Customers" msgstr "" +#. [src.orders.components.OrderDraftListPage.77765281] +#. defaultMessage is: +#. Search Draft +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "description" +msgid "Search Draft" +msgstr "" + #. [src.translations.components.TranslationsCategoriesPage.1406947243] #. defaultMessage is: #. Search Engine Description @@ -6621,6 +6767,34 @@ msgctxt "description" msgid "Search Orders..." msgstr "" +#. [src.translations.components.TranslationsEntitiesListPage.2559018090] +#. defaultMessage is: +#. Search Page +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Page" +msgstr "" + +#. [src.translations.components.TranslationsEntitiesListPage.2105464697] +#. defaultMessage is: +#. Search Product +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product" +msgstr "" + +#. [src.productTypes.components.ProductTypeListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#. [src.translations.components.TranslationsEntitiesListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product Type" +msgstr "" + #. [src.components.AssignProductDialog.2850255786] #. defaultMessage is: #. Search Products @@ -6633,14 +6807,46 @@ msgctxt "description" msgid "Search Products" msgstr "" -#. [src.products.components.ProductListPage.3550330425] +#. [src.products.components.ProductListFilter.3550330425] #. defaultMessage is: #. Search Products... -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Search Products..." msgstr "" +#. [src.discounts.components.SaleListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#. [src.translations.components.TranslationsEntitiesListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Sale" +msgstr "" + +#. [src.staff.components.StaffListPage.61043583] +#. defaultMessage is: +#. Search Staff Member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "description" +msgid "Search Staff Member" +msgstr "" + +#. [src.discounts.components.VoucherListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#. [src.translations.components.TranslationsEntitiesListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Voucher" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.524117994] #. defaultMessage is: #. Search by attribute name @@ -6747,10 +6953,10 @@ msgctxt "description" msgid "Select all orders where:" msgstr "" -#. [src.products.components.ProductListPage.1421689426] +#. [src.products.components.ProductListFilter.1421689426] #. defaultMessage is: #. Select all products where: -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Select all products where:" msgstr "" @@ -6836,6 +7042,14 @@ msgctxt "description" msgid "Set plugin as Active" msgstr "" +#. [src.components.VisibilityCard.292404896] +#. defaultMessage is: +#. Set publication date +#: build/locale/src/components/VisibilityCard/VisibilityCard.json +msgctxt "description" +msgid "Set publication date" +msgstr "" + #. [src.discounts.shipment] - voucher discount #. defaultMessage is: #. Shipment @@ -6990,7 +7204,7 @@ msgstr "" #: build/locale/src/productTypes/components/ProductTypeList/ProductTypeList.json msgctxt "product type" msgid "Simple product" -msgstr "" +msgstr "Producto Simple" #. [src.siteSettings] - site settings section name #. defaultMessage is: @@ -7101,6 +7315,14 @@ msgctxt "staff section name" msgid "Staff Members" msgstr "" +#. [src.configuration.3140151600] +#. defaultMessage is: +#. Staff Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Staff Settings" +msgstr "" + #. [src.standard] - tax rate #. defaultMessage is: #. Standard @@ -8085,10 +8307,10 @@ msgctxt "payment status" msgid "Unpaid" msgstr "" -#. [src.collections.views.2237014112] - unpublish collections +#. [src.collections.views.CollectionList.2237014112] - unpublish collections #. defaultMessage is: #. Unpublish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "unpublish collections" msgid "Unpublish" msgstr "Retirar publicación" @@ -8125,10 +8347,10 @@ msgctxt "dialog header" msgid "Unpublish Products" msgstr "" -#. [src.collections.views.2637364047] - dialog title +#. [src.collections.views.CollectionList.2637364047] - dialog title #. defaultMessage is: #. Unpublish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Unpublish collections" msgstr "" @@ -8628,6 +8850,22 @@ msgctxt "description" msgid "ZIP / Postal code" msgstr "" +#. [src.productTypes.components.ProductTypeListPage.3479705616] - button +#. defaultMessage is: +#. create product type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "button" +msgid "create product type" +msgstr "" + +#. [src.staff.views.1308770978] - dialog header +#. defaultMessage is: +#. delete Staff User +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "dialog header" +msgid "delete Staff User" +msgstr "" + #. [orderPaymentVATDoesNotApply] - vat not included in order price #. defaultMessage is: #. does not apply @@ -8701,19 +8939,35 @@ msgctxt "product status is set as" msgid "is set as" msgstr "" -#. [src.staff.views.2240444792] - dialog header -#. defaultMessage is: -#. remove Staff User -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "dialog header" -msgid "remove Staff User" -msgstr "" - -#. [src.components.VisibilityCard.1815688500] +#. [src.collections.components.CollectionCreatePage.1815688500] - collection #. defaultMessage is: #. since {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.1815688500] - collection +#. defaultMessage is: +#. since {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "since {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.1815688500] - page +#. defaultMessage is: +#. since {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "since {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#. [src.products.components.ProductUpdatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "since {date}" msgstr "" @@ -8741,11 +8995,35 @@ msgctxt "weight" msgid "to {value} {unit}" msgstr "" -#. [src.components.VisibilityCard.2001551496] +#. [src.collections.components.CollectionCreatePage.2001551496] - collection #. defaultMessage is: #. will be visible from {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.2001551496] - collection +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "will be visible from {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.2001551496] - page +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "will be visible from {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#. [src.products.components.ProductUpdatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "will be visible from {date}" msgstr "" diff --git a/locale/es_CO.json b/locale/es_CO.json index d7d942094..bc9415124 100644 --- a/locale/es_CO.json +++ b/locale/es_CO.json @@ -1 +1 @@ -{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.350498821":"","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.2519239682":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"Nombre","src.categories.components.CategoryProducts.636461959":"Nombre","src.collections.components.CollectionProducts.636461959":"Nombre","src.products.components.ProductDetailsForm.636461959":"Nombre","src.collections.components.CollectionDetails.636461959":"Nombre","src.components.ProductList.636461959":"Nombre","src.discounts.components.SaleInfo.636461959":"Nombre","src.discounts.components.SaleList.636461959":"Nombre","src.discounts.components.SaleSummary.636461959":"Nombre","menuItemDialogNameLabel":"Nombre","src.products.components.ProductVariants.636461959":"Nombre","src.shipping.components.ShippingZoneRates.636461959":"Nombre","src.shipping.components.ShippingZonesList.636461959":"Nombre","src.staff.components.StaffList.636461959":"Nombre","src.translations.components.TranslationsEntitiesList.636461959":"Nombre","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.254756045":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.3182284913":"","src.auth.components.LoginPage.109182747":"","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"","src.categories.views.2004894945":"","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.3229914152":"","src.categories.components.CategoryList.435697837":"","src.categories.components.CategoryList.2159874182":"","src.categories.components.CategoryUpdatePage.2159874182":"","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.228151782":"","src.categories.components.CategoryProducts.2968663655":"Productos","src.categories.components.CategoryUpdatePage.2968663655":"Productos","src.discounts.components.DiscountCategories.2968663655":"Productos","src.discounts.components.DiscountCollections.2968663655":"Productos","src.products":"Productos","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryProducts.3554578821":"","src.categories.components.CategoryProductsCard.3554578821":"","src.categories.components.CategoryProducts.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProducts.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.categories.components.CategoryProductsCard.4164156574":"","src.categories.views.1754466114":"","src.categories.views.1140231710":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.712767046":"","src.categories.views.299584400":"","src.categories.views.844574071":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.collections.components.CollectionCreatePage.3958681866":"","src.collections.components.CollectionListPage.3958681866":"","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"","src.availability":"","src.collections.components.CollectionList.3640454975":"Publicado","src.collections.components.CollectionProducts.3640454975":"Publicado","src.discounts.components.DiscountProducts.3640454975":"Publicado","src.components.ProductList.3640454975":"Publicado","src.products.components.ProductListPage.3640454975":"Publicado","src.pages.components.PageList.3640454975":"Publicado","src.products.views.ProductList.published":"Publicado","src.collections.components.CollectionList.2341910657":"no publicado","src.collections.components.CollectionProducts.2341910657":"no publicado","src.discounts.components.DiscountProducts.2341910657":"no publicado","src.components.ProductList.2341910657":"no publicado","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.686910896":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"","src.collections.views.2402899582":"","src.collections.views.2237014112":"","src.pages.views.2237014112":"","src.products.views.ProductList.2237014112":"","src.collections.views.1547167026":"","src.pages.views.1547167026":"","src.products.views.ProductList.1547167026":"","src.collections.views.2823425739":"","src.collections.views.1348793822":"","src.collections.views.2637364047":"","src.collections.views.3944356444":"","src.collections.views.3817188998":"","src.collections.views.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.4057224233":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"","src.components.ErrorMessageCard.2845142593":"","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.FilterBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.ProductList.1134347598":"","src.orders.components.OrderDraftDetailsProducts.1134347598":"","src.orders.components.OrderFulfillment.1134347598":"","src.products.components.ProductListPage.1134347598":"","src.products.components.ProductPricing.1134347598":"","src.orders.components.OrderUnfulfilledItems.1134347598":"","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"","src.shipping.components.ShippingZoneRates.1134347598":"","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"","src.pages.components.PageList.1459686496":"","src.products.components.ProductListFilter.1459686496":"","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"","src.products.views.ProductList.hidden":"","src.components.VisibilityCard.1815688500":"","src.components.VisibilityCard.2001551496":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","configurationMenuStaff":"","configurationMenuShipping":"","configurationMenuTaxes":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","src.customers.components.CustomerAddress.1320082647":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"","src.customers.components.CustomerAddresses.3517722732":"","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"Dirección","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"notas","src.orders.components.OrderCustomerNote.1520756907":"notas","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"nota","src.customers.components.CustomerDetails.577013340":"nota","src.customers.components.CustomerCreatePage.1934221653":"","src.customers.components.CustomerListPage.1934221653":"","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerOrders.3878642352":"","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"","src.orders.components.OrderDraftList.4205493358":"","src.orders.components.OrderList.4205493358":"","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"","src.orders.components.OrderListFilter.1756106276":"","src.products.components.ProductListFilter.1756106276":"","src.products.components.ProductVariants.1756106276":"","src.customers.components.CustomerOrders.878013594":"","src.orders.components.OrderDraftDetailsProducts.878013594":"","src.orders.components.OrderDraftDetailsSummary.878013594":"","src.orders.components.OrderDraftList.878013594":"","src.orders.components.OrderFulfillment.878013594":"","src.orders.components.OrderUnfulfilledItems.878013594":"","src.orders.components.OrderList.878013594":"","src.orders.components.OrderPayment.878013594":"","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.1946482599":"","src.customers.views.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"valor","src.discounts.components.SaleSummary.1148029984":"valor","src.discounts.components.VoucherList.1148029984":"valor","src.discounts.components.VoucherSummary.1148029984":"valor","src.discounts.components.VoucherValue.1148029984":"valor","src.products.components.ProductAttributes.1148029984":"valor","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.1742771332":"","src.discounts.components.SalePricing.1099355007":"","src.products.components.ProductPricing.1099355007":"","src.products.components.ProductVariantPrice.1099355007":"","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"","src.discounts.components.VoucherSummary.78726751":"","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.1536809153":"","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"","src.discounts.shipment":"","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.2809303671":"","src.discounts.views.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.367317371":"","src.discounts.views.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"","src.orders.views.OrderList.3528672691":"","src.confirm":"","src.delete":"","src.edit":"","src.manage":"","src.remove":"","src.save":"","src.show":"","src.undo":"","src.attributes":"","src.products.components.ProductAttributes.4153345096":"","src.categories":"categorías","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"","src.customers":"","src.draftOrders":"","src.home":"","src.navigation":"","src.orders":"","src.pages":"","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"","src.taxes.components.CountryListPage.3955023266":"","src.translations":"","src.vouchers":"","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"","src.partiallyPaid":"","src.partiallyRefunded":"","src.refunded":"","src.unpaid":"","src.cancelled":"","src.draft":"","src.fulfilled":"","src.orders.views.OrderList.fulfilled":"","src.orders.components.OrderListFilter.1712863026":"","src.partiallyFulfilled":"","src.unfulfilled":"","src.orders.views.OrderList.unfulfilled":"","src.orders.components.OrderListFilter.1751787272":"","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","src.1395232177":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"Enlace","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"","src.orders.components.OrderDetailsPage.1854613983":"","src.orders.components.OrderDraftPage.1854613983":"","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"","src.orders.components.OrderCustomerEditDialog.1411666943":"","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.500287069":"","src.orders.components.OrderDraftCancelDialog.3199827590":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"","src.orders.components.OrderUnfulfilledItems.1895667608":"","src.orders.components.OrderDraftDetailsProducts.2796503714":"Cantidad","src.orders.components.OrderFulfillment.2796503714":"Cantidad","src.orders.components.OrderFulfillmentDialog.2796503714":"Cantidad","src.orders.components.OrderUnfulfilledItems.2796503714":"Cantidad","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"","src.orders.components.OrderPayment.781550514":"","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"","src.orders.components.OrderListPage.2826235371":"","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"","src.orders.components.OrderFulfillmentCancelDialog.732594284":"","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.2574162126":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2943502192":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"","src.productTypes.components.ProductTypeShipping.1325966144":"","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"","src.orders.components.OrderPayment.3768782744":"","src.orders.components.OrderPayment.2320183694":"","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"","src.orders.components.OrderPayment.2845258362":"","src.orders.components.OrderPayment.2444197639":"","src.orders.components.OrderPayment.3500506678":"","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.2775402904":"","src.products.components.ProductListPage.2775402904":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.3880993240":"","src.orders.views.1161115149":"","src.orders.views.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.755314116":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"","src.pages.components.PageList.1124600214":"","src.pages.components.PageInfo.1116746286":"","src.translations.components.TranslationsPagesPage.1116746286":"","src.pages.components.PageList.3478065224":"","src.pages.components.PageSlug.3478065224":"","src.productTypes.components.ProductTypeAttributes.3478065224":"","src.pages.components.PageList.3767550649":"","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.1767905232":"","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.3785394515":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"","src.products.components.ProductVariantImages.3240888698":"","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"","src.products.components.ProductVariantStock.3841616483":"","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListPage.821159718":"","src.products.components.ProductListPage.1421689426":"","src.products.components.ProductListPage.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"","prodictStockInventoryLabel":"","src.products.components.ProductVariantStock.3490038570":"","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"","src.products.components.ProductVariants.2153006789":"","src.products.components.ProductVariantNavigation.2845381934":"","src.products.components.ProductVariants.2845381934":"","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1542417144":"","src.products.views.1591632382":"","src.products.views.490753666":"","src.products.views.672103788":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.1694086800":"","src.products.views.ProductList.224127438":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.products.views.2178905289":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1756957616":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.889729490":"","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.4080551769":"","src.productTypes.views.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.352297149":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2474410767":"","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.254167659":"","src.shipping.views.ShippingZoneDetails.1790261672":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"","src.siteSettings.components.SiteSettingsKeys.2446088470":"","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.3490059488":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.3247064221":"activo","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.802625341":"","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"Usuario activo","src.staff.views.2240444792":"","src.staff.views.2728048444":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file +{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.3824684885":"","src.attributes.components.AttributeListPage.2417065806":"","src.attributes.components.AttributeListPage.3916653510":"","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.4048785456":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"Nombre","src.categories.components.CategoryProductList.636461959":"Nombre","src.components.ProductList.636461959":"Nombre","src.products.components.ProductList.636461959":"Nombre","src.collections.components.CollectionDetails.636461959":"Nombre","src.collections.components.CollectionProducts.636461959":"Nombre","src.products.components.ProductDetailsForm.636461959":"Nombre","src.discounts.components.SaleInfo.636461959":"Nombre","src.discounts.components.SaleList.636461959":"Nombre","src.discounts.components.SaleSummary.636461959":"Nombre","menuItemDialogNameLabel":"Nombre","src.plugins.components.PluginsList.636461959":"Nombre","src.products.components.ProductVariants.636461959":"Nombre","src.shipping.components.ShippingZoneRates.636461959":"Nombre","src.shipping.components.ShippingZonesList.636461959":"Nombre","src.staff.components.StaffList.636461959":"Nombre","src.translations.components.TranslationsEntitiesList.636461959":"Nombre","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.351422234":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.109182747":"","src.auth.components.LoginPage.4028609483":"","src.auth.components.NewPasswordPage.1915811227":"","src.auth.components.NewPasswordPage.1254879564":"","src.auth.components.NewPasswordPage.2799926859":"","src.auth.components.NewPasswordPage.4253911811":"","src.auth.components.NewPasswordPage.2342634351":"","src.auth.components.ResetPasswordPage.2370700732":"","src.auth.components.ResetPasswordPage.3663311080":"","src.auth.components.ResetPasswordSuccessPage.4066297200":"","src.auth.components.ResetPasswordSuccessPage.2245157344":"","src.auth.views.2388238158":"","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"","src.categories.views.2004894945":"","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.2159874182":"","src.categories.components.CategoryUpdatePage.2159874182":"","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.1140231710":"","src.categories.views.1140231710":"","src.categories.components.CategoryListPage.4294878092":"","src.categories.components.CategoryListPage.3841025483":"","src.translations.components.TranslationsEntitiesListPage.3841025483":"","src.categories.components.CategoryProductList.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductList.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProductList.3640454975":"Publicado","src.components.ProductList.3640454975":"Publicado","src.products.components.ProductList.3640454975":"Publicado","src.products.components.ProductListPage.3640454975":"Publicado","productStatusLabel":"Publicado","src.collections.components.CollectionList.3640454975":"Publicado","src.collections.components.CollectionProducts.3640454975":"Publicado","src.discounts.components.DiscountProducts.3640454975":"Publicado","src.pages.components.PageList.3640454975":"Publicado","src.products.views.ProductList.published":"Publicado","src.categories.components.CategoryProductList.1134347598":"","src.orders.components.OrderFulfillment.1134347598":"","src.products.components.ProductList.1134347598":"","src.products.components.ProductListPage.1134347598":"","src.products.components.ProductPricing.1134347598":"","src.components.ProductList.1134347598":"","src.orders.components.OrderDraftDetailsProducts.1134347598":"","src.orders.components.OrderUnfulfilledItems.1134347598":"","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"","src.shipping.components.ShippingZoneRates.1134347598":"","src.categories.components.CategoryProductList.2341910657":"no publicado","src.products.components.ProductList.2341910657":"no publicado","src.collections.components.CollectionList.2341910657":"no publicado","src.collections.components.CollectionProducts.2341910657":"no publicado","src.discounts.components.DiscountProducts.2341910657":"no publicado","src.components.ProductList.2341910657":"no publicado","src.categories.components.CategoryProductList.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.products.components.ProductList.1657559629":"","src.categories.components.CategoryProducts.4164156574":"","src.categories.components.CategoryProducts.3554578821":"","src.categories.components.CategoryUpdatePage.2968663655":"Productos","src.discounts.components.DiscountCategories.2968663655":"Productos","src.discounts.components.DiscountCollections.2968663655":"Productos","src.products":"Productos","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryUpdatePage.3229914152":"","src.categories.components.CategoryUpdatePage.770296100":"","src.categories.views.1754466114":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.CategoryList.3488150607":"","src.categories.views.712767046":"","src.categories.views.CategoryList.712767046":"","src.categories.views.299584400":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.categories.views.CategoryList.2144707585":"","src.collections.components.CollectionCreatePage.3958681866":"","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionCreatePage.2001551496":"","src.collections.components.CollectionDetailsPage.2001551496":"","src.pages.components.PageDetailsPage.2001551496":"","src.products.components.ProductCreatePage.2001551496":"","src.products.components.ProductUpdatePage.2001551496":"","src.collections.components.CollectionCreatePage.1815688500":"","src.collections.components.CollectionDetailsPage.1815688500":"","src.pages.components.PageDetailsPage.1815688500":"","src.products.components.ProductCreatePage.1815688500":"","src.products.components.ProductUpdatePage.1815688500":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"","src.availability":"","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionListPage.686910896":"","src.collections.views.686910896":"","src.collections.components.CollectionListPage.1631917001":"","src.collections.components.CollectionListPage.4057224233":"","src.components.AssignCollectionDialog.4057224233":"","src.translations.components.TranslationsEntitiesListPage.4057224233":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"","src.collections.views.2402899582":"","src.collections.views.CollectionList.2237014112":"","src.pages.views.2237014112":"","src.products.views.ProductList.2237014112":"","src.collections.views.CollectionList.1547167026":"","src.pages.views.1547167026":"","src.products.views.ProductList.1547167026":"","src.collections.views.CollectionList.2823425739":"","src.collections.views.CollectionList.1348793822":"","src.collections.views.CollectionList.2637364047":"","src.collections.views.CollectionList.3944356444":"","src.collections.views.CollectionList.3817188998":"","src.collections.views.CollectionList.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"","src.components.ErrorMessageCard.2845142593":"","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.Filter.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.Filter.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.FilterBar.2340527467":"","src.components.SearchBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"","src.pages.components.PageList.1459686496":"","src.products.components.ProductListFilter.1459686496":"","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"","src.products.views.ProductList.hidden":"","src.components.VisibilityCard.292404896":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","src.configuration.2326418019":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","src.configuration.3655543906":"","configurationMenuShipping":"","configurationMenuTaxes":"","src.configuration.3140151600":"","configurationMenuStaff":"","src.configuration.1233229030":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","configurationPluginsPages":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"","src.customers.components.CustomerAddresses.3517722732":"","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"Dirección","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"notas","src.orders.components.OrderCustomerNote.1520756907":"notas","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"nota","src.customers.components.CustomerDetails.577013340":"nota","src.customers.components.CustomerCreatePage.1934221653":"","src.customers.components.CustomerListPage.1934221653":"","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerListPage.477293306":"","src.customers.components.CustomerListPage.1643417013":"","src.customers.components.CustomerOrders.3878642352":"","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"","src.orders.components.OrderDraftList.4205493358":"","src.orders.components.OrderList.4205493358":"","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"","src.orders.components.OrderListFilter.1756106276":"","src.plugins.components.PluginInfo.1756106276":"","src.products.components.ProductListFilter.1756106276":"","src.products.components.ProductVariants.1756106276":"","src.customers.components.CustomerOrders.878013594":"","src.orders.components.OrderDraftDetailsProducts.878013594":"","src.orders.components.OrderDraftDetailsSummary.878013594":"","src.orders.components.OrderDraftList.878013594":"","src.orders.components.OrderFulfillment.878013594":"","src.orders.components.OrderUnfulfilledItems.878013594":"","src.orders.components.OrderList.878013594":"","src.orders.components.OrderPayment.878013594":"","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.CustomerList.1946482599":"","src.customers.views.CustomerList.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","src.discounts.components.SaleListPage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"valor","src.discounts.components.SaleSummary.1148029984":"valor","src.discounts.components.VoucherList.1148029984":"valor","src.discounts.components.VoucherSummary.1148029984":"valor","src.discounts.components.VoucherValue.1148029984":"valor","src.products.components.ProductAttributes.1148029984":"valor","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.3907768880":"","src.discounts.components.SaleListPage.1866913828":"","src.translations.components.TranslationsEntitiesListPage.1866913828":"","src.discounts.components.SalePricing.1099355007":"","src.products.components.ProductPricing.1099355007":"","src.products.components.ProductVariantPrice.1099355007":"","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"","src.discounts.components.VoucherSummary.78726751":"","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.614836274":"","src.discounts.components.VoucherListPage.1112241061":"","src.discounts.components.VoucherListPage.1930485532":"","src.translations.components.TranslationsEntitiesListPage.1930485532":"","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"","src.discounts.shipment":"","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.SaleList.2809303671":"","src.discounts.views.SaleList.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.VoucherList.367317371":"","src.discounts.views.VoucherList.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.somethingWentWrong":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"","src.orders.views.OrderList.3528672691":"","src.confirm":"","src.delete":"","src.edit":"","src.manage":"","src.remove":"","src.save":"","src.show":"","src.undo":"","src.attributes":"","src.products.components.ProductAttributes.4153345096":"","src.categories":"categorías","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"","src.customers":"","src.draftOrders":"","src.home":"","src.navigation":"","src.orders":"","src.pages":"","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.plugins":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"","src.taxes.components.CountryListPage.3955023266":"","src.translations":"","src.vouchers":"","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"","src.partiallyPaid":"","src.partiallyRefunded":"","src.refunded":"","src.unpaid":"","src.cancelled":"","src.draft":"","src.fulfilled":"","src.orders.views.OrderList.fulfilled":"","src.orders.components.OrderListFilter.1712863026":"","src.partiallyFulfilled":"","src.unfulfilled":"","src.orders.views.OrderList.unfulfilled":"","src.orders.components.OrderListFilter.1751787272":"","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"Enlace","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"","src.orders.components.OrderDetailsPage.1854613983":"","src.orders.components.OrderDraftPage.1854613983":"","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"","src.orders.components.OrderCustomerEditDialog.1411666943":"","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.632633254":"","src.orders.components.OrderDraftCancelDialog.36681973":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"","src.orders.components.OrderUnfulfilledItems.1895667608":"","src.orders.components.OrderDraftDetailsProducts.2796503714":"Cantidad","src.orders.components.OrderFulfillment.2796503714":"Cantidad","src.orders.components.OrderFulfillmentDialog.2796503714":"Cantidad","src.orders.components.OrderUnfulfilledItems.2796503714":"Cantidad","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"","src.orders.components.OrderPayment.781550514":"","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"","src.orders.components.OrderListPage.2826235371":"","src.orders.components.OrderDraftListPage.551325728":"","src.orders.components.OrderDraftListPage.77765281":"","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"","src.orders.components.OrderFulfillmentCancelDialog.732594284":"","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.4067959693":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2415661583":"","src.orders.views.OrderList.readyToCapture":"","src.orders.components.OrderListFilter.2222765704":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"","src.productTypes.components.ProductTypeShipping.1325966144":"","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"","src.orders.components.OrderPayment.3768782744":"","src.orders.components.OrderPayment.2320183694":"","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"","src.orders.components.OrderPayment.2845258362":"","src.orders.components.OrderPayment.2444197639":"","src.orders.components.OrderPayment.3500506678":"","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.1542417144":"","src.products.components.ProductListPage.1542417144":"","src.products.views.1542417144":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.OrderDraftList.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.OrderDraftList.1648805446":"","src.orders.views.OrderDraftList.1161115149":"","src.orders.views.OrderDraftList.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.1068617485":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"","src.pages.components.PageList.1124600214":"","src.pages.components.PageInfo.1116746286":"","src.translations.components.TranslationsPagesPage.1116746286":"","src.pages.components.PageList.3478065224":"","src.pages.components.PageSlug.3478065224":"","src.productTypes.components.ProductTypeAttributes.3478065224":"","src.pages.components.PageList.3767550649":"","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.3785394515":"","src.pages.views.3785394515":"","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.plugins.components.PluginInfo.3425535100":"","src.plugins.components.PluginsDetailsPage.3425535100":"","src.plugins.components.PluginInfo.1049131348":"","src.plugins.components.PluginInfo.4013064767":"","src.plugins.components.PluginsDetailsPage.3352026836":"","src.plugins.components.PluginsDetailsPage.2277745418":"","src.plugins.components.PluginsDetailsPage.1970881031":"","src.plugins.components.PluginSettings.1970881031":"","src.plugins.components.PluginsDetailsPage.4241018152":"","src.plugins.components.PluginsList.3247064221":"activo","src.staff.components.StaffList.3247064221":"activo","src.plugins.components.PluginsList.4120604650":"","src.plugins.components.PluginsList.666641390":"","src.plugins.views.100549097":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"","src.products.components.ProductVariantImages.3240888698":"","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"","src.products.components.ProductVariantStock.3841616483":"","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListFilter.821159718":"","src.products.components.ProductListFilter.1421689426":"","src.products.components.ProductListFilter.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"","prodictStockInventoryLabel":"","src.products.components.ProductVariantStock.3490038570":"","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"","src.products.components.ProductVariants.2153006789":"","src.products.components.ProductVariantNavigation.2845381934":"","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.3989383405":"","src.products.views.3989383405":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1591632382":"","src.products.views.1731766393":"","src.products.views.2880386427":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1217376589":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.3479705616":"","src.productTypes.components.ProductTypeListPage.1776073799":"","src.productTypes.components.ProductTypeListPage.3420445375":"","src.translations.components.TranslationsEntitiesListPage.3420445375":"","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.ProductTypeList.4080551769":"","src.productTypes.views.ProductTypeList.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRates.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2673544109":"","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.1947090060":"","src.shipping.views.ShippingZoneDetails.131963671":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"","src.siteSettings.components.SiteSettingsKeys.2446088470":"","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.1481503299":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.797461521":"","src.staff.components.StaffListPage.2852350932":"","src.staff.components.StaffListPage.61043583":"","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"Usuario activo","src.staff.views.1308770978":"","src.staff.views.8878988":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.2105464697":"","src.translations.components.TranslationsEntitiesListPage.2559018090":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file diff --git a/locale/es_CO.po b/locale/es_CO.po index 799ffdad7..15cfc68ce 100644 --- a/locale/es_CO.po +++ b/locale/es_CO.po @@ -5,7 +5,7 @@ # msgid "" msgstr "" -"POT-Creation-Date: 2019-09-06T13:56:36.897Z\n" +"POT-Creation-Date: 2019-09-16T15:25:09.340Z\n" "Last-Translator: Richard Palacios G , 2019\n" "Language-Team: Spanish (Colombia) (https://www.transifex.com/mirumee/teams/34782/es_CO/)\n" "MIME-Version: 1.0\n" @@ -143,22 +143,6 @@ msgctxt "create new menu item, header" msgid "Add Item" msgstr "" -#. [menuCreateDialogHeader] - dialog header -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json -msgctxt "dialog header" -msgid "Add Menu" -msgstr "" - -#. [menuListPageAddMenu] - button -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json -msgctxt "button" -msgid "Add Menu" -msgstr "" - #. [src.siteSettings.components.SiteSettingsKeyDialog.1238948746] - dialog #. header #. defaultMessage is: @@ -168,14 +152,6 @@ msgctxt "dialog header" msgid "Add New Authorization Key" msgstr "" -#. [src.pages.components.PageDetailsPage.755314116] - page header -#. defaultMessage is: -#. Add Page -#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json -msgctxt "page header" -msgid "Add Page" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.2892088870] - dialog header #. defaultMessage is: #. Add Price Rate @@ -184,38 +160,6 @@ msgctxt "dialog header" msgid "Add Price Rate" msgstr "" -#. [src.orders.components.OrderProductAddDialog.2775402904] - dialog header -#. defaultMessage is: -#. Add Product -#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json -msgctxt "dialog header" -msgid "Add Product" -msgstr "" - -#. [src.products.components.ProductListPage.2775402904] - button -#. defaultMessage is: -#. Add Product -#: build/locale/src/products/components/ProductListPage/ProductListPage.json -msgctxt "button" -msgid "Add Product" -msgstr "" - -#. [src.discounts.components.SaleListPage.1742771332] - button -#. defaultMessage is: -#. Add Sale -#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json -msgctxt "button" -msgid "Add Sale" -msgstr "" - -#. [src.staff.components.StaffAddMemberDialog.3490059488] - dialog header -#. defaultMessage is: -#. Add Staff Member -#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json -msgctxt "dialog header" -msgid "Add Staff Member" -msgstr "" - #. [src.attributes.components.AttributeValueEditDialog.1841790893] - add #. attribute value #. defaultMessage is: @@ -225,14 +169,6 @@ msgctxt "add attribute value" msgid "Add Value" msgstr "" -#. [src.products.views.2178905289] - header -#. defaultMessage is: -#. Add Variant -#: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "header" -msgid "Add Variant" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.1397795758] - add weight #. based shipping method, dialog header #. defaultMessage is: @@ -250,14 +186,6 @@ msgctxt "button" msgid "Add address" msgstr "" -#. [src.attributes.components.AttributeListPage.350498821] - button -#. defaultMessage is: -#. Add attribute -#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json -msgctxt "button" -msgid "Add attribute" -msgstr "" - #. [src.siteSettings.components.SiteSettingsKeyDialog.50561933] - button #. defaultMessage is: #. Add authentication @@ -266,14 +194,6 @@ msgctxt "button" msgid "Add authentication" msgstr "" -#. [src.categories.components.CategoryListPage.228151782] - button -#. defaultMessage is: -#. Add category -#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json -msgctxt "button" -msgid "Add category" -msgstr "" - #. [src.collections.components.CollectionCreatePage.3958681866] - page header #. defaultMessage is: #. Add collection @@ -282,14 +202,6 @@ msgctxt "page header" msgid "Add collection" msgstr "" -#. [src.collections.components.CollectionListPage.3958681866] - button -#. defaultMessage is: -#. Add collection -#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json -msgctxt "button" -msgid "Add collection" -msgstr "" - #. [src.customers.components.CustomerCreatePage.1934221653] - page header #. defaultMessage is: #. Add customer @@ -322,14 +234,6 @@ msgctxt "button" msgid "Add key" msgstr "" -#. [menuItemsAddItem] - add new menu item -#. defaultMessage is: -#. Add new item -#: build/locale/src/navigation/components/MenuItems/MenuItems.json -msgctxt "add new menu item" -msgid "Add new item" -msgstr "" - #. [menuItemsPlaceholder] #. defaultMessage is: #. Add new menu item to begin creating menu @@ -364,14 +268,6 @@ msgctxt "button" msgid "Add or Edit Link" msgstr "" -#. [src.pages.components.PageListPage.1767905232] - button -#. defaultMessage is: -#. Add page -#: build/locale/src/pages/components/PageListPage/PageListPage.json -msgctxt "button" -msgid "Add page" -msgstr "" - #. [src.categories.components.CategoryProducts.3554578821] - button #. defaultMessage is: #. Add product @@ -380,14 +276,6 @@ msgctxt "button" msgid "Add product" msgstr "" -#. [src.productTypes.components.ProductTypeListPage.889729490] - button -#. defaultMessage is: -#. Add product type -#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json -msgctxt "button" -msgid "Add product type" -msgstr "" - #. [src.orders.components.OrderDraftDetails.2528459381] - button #. defaultMessage is: #. Add products @@ -396,14 +284,6 @@ msgctxt "button" msgid "Add products" msgstr "" -#. [src.shipping.components.ShippingZoneRates.352297149] - button -#. defaultMessage is: -#. Add rate -#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json -msgctxt "button" -msgid "Add rate" -msgstr "" - #. [src.categories.components.CategoryCreatePage.2563994280] #. defaultMessage is: #. Add search engine title and description to make this category easier to @@ -465,30 +345,6 @@ msgctxt "button" msgid "Add shipping carrier" msgstr "" -#. [src.shipping.components.ShippingZonesList.2474410767] - button -#. defaultMessage is: -#. Add shipping zone -#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json -msgctxt "button" -msgid "Add shipping zone" -msgstr "" - -#. [src.staff.components.StaffListPage.802625341] - button -#. defaultMessage is: -#. Add staff member -#: build/locale/src/staff/components/StaffListPage/StaffListPage.json -msgctxt "button" -msgid "Add staff member" -msgstr "" - -#. [src.categories.components.CategoryList.435697837] - button -#. defaultMessage is: -#. Add subcategory -#: build/locale/src/categories/components/CategoryList/CategoryList.json -msgctxt "button" -msgid "Add subcategory" -msgstr "" - #. [src.attributes.components.AttributeProperties.673770329] - add attribute #. as column in product list table #. defaultMessage is: @@ -516,35 +372,14 @@ msgctxt "dialog header" msgid "Add tracking code" msgstr "" -#. [src.attributes.components.AttributeValues.254756045] - add attribute value -#. button -#. defaultMessage is: -#. Add value -#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json -msgctxt "add attribute value button" -msgid "Add value" -msgstr "" - #. [src.products.components.ProductVariantNavigation.2845381934] - button #. defaultMessage is: #. Add variant -#. [src.products.components.ProductVariants.2845381934] - button -#. defaultMessage is: -#. Add variant #: build/locale/src/products/components/ProductVariantNavigation/ProductVariantNavigation.json -#: build/locale/src/products/components/ProductVariants/ProductVariants.json msgctxt "button" msgid "Add variant" msgstr "" -#. [src.discounts.components.VoucherListPage.1536809153] - button -#. defaultMessage is: -#. Add voucher -#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json -msgctxt "button" -msgid "Add voucher" -msgstr "" - #. [src.attributes.views.AttributeDetails.634268988] - added new attribute #. value #. defaultMessage is: @@ -602,14 +437,6 @@ msgctxt "description" msgid "Address line 2" msgstr "" -#. [src.customers.components.CustomerAddress.1320082647] - addres card header -#. defaultMessage is: -#. Address {addressNumber} -#: build/locale/src/customers/components/CustomerAddress/CustomerAddress.json -msgctxt "addres card header" -msgid "Address {addressNumber}" -msgstr "" - #. [src.attributes.components.AttributeValues.1565474525] - attribute values #. list: slug column header #. defaultMessage is: @@ -659,6 +486,46 @@ msgctxt "tax rate" msgid "Agricultural supplies" msgstr "" +#. [src.attributes.components.AttributeListPage.2417065806] - tab name +#. defaultMessage is: +#. All Attributes +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "tab name" +msgid "All Attributes" +msgstr "" + +#. [src.categories.components.CategoryListPage.4294878092] - tab name +#. defaultMessage is: +#. All Categories +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "tab name" +msgid "All Categories" +msgstr "" + +#. [src.collections.components.CollectionListPage.1631917001] - tab name +#. defaultMessage is: +#. All Collections +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "tab name" +msgid "All Collections" +msgstr "" + +#. [src.customers.components.CustomerListPage.477293306] - tab name +#. defaultMessage is: +#. All Customers +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "tab name" +msgid "All Customers" +msgstr "" + +#. [src.orders.components.OrderDraftListPage.551325728] - tab name +#. defaultMessage is: +#. All Drafts +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "tab name" +msgid "All Drafts" +msgstr "" + #. [src.orders.components.OrderListPage.875489544] - tab name #. defaultMessage is: #. All Orders @@ -676,22 +543,54 @@ msgctxt "section header" msgid "All Photos" msgstr "" -#. [src.products.components.ProductListPage.821159718] - tab name +#. [src.productTypes.components.ProductTypeListPage.1776073799] - tab name +#. defaultMessage is: +#. All Product Types +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "tab name" +msgid "All Product Types" +msgstr "" + +#. [src.products.components.ProductListFilter.821159718] - tab name #. defaultMessage is: #. All Products -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "tab name" msgid "All Products" msgstr "" -#. [src.categories.components.CategoryList.3229914152] - section header +#. [src.discounts.components.SaleListPage.3907768880] - tab name +#. defaultMessage is: +#. All Sales +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "tab name" +msgid "All Sales" +msgstr "" + +#. [src.staff.components.StaffListPage.2852350932] - tab name +#. defaultMessage is: +#. All Staff Members +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "tab name" +msgid "All Staff Members" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.3229914152] - section header #. defaultMessage is: #. All Subcategories -#: build/locale/src/categories/components/CategoryList/CategoryList.json +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json msgctxt "section header" msgid "All Subcategories" msgstr "" +#. [src.discounts.components.VoucherListPage.1112241061] - tab name +#. defaultMessage is: +#. All Vouchers +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "tab name" +msgid "All Vouchers" +msgstr "" + #. [src.taxes.components.TaxConfiguration.142803418] #. defaultMessage is: #. All products prices are entered with tax included @@ -799,6 +698,14 @@ msgctxt "description" msgid "Are you sure you want to delete collection's image?" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.36681973] +#. defaultMessage is: +#. Are you sure you want to delete draft #{number}? +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "description" +msgid "Are you sure you want to delete draft #{number}?" +msgstr "" + #. [menuDetailsDeleteMenuContent] #. defaultMessage is: #. Are you sure you want to delete menu {menuName}? @@ -815,6 +722,14 @@ msgctxt "description" msgid "Are you sure you want to delete this address from users address book?" msgstr "" +#. [src.products.views.2880386427] +#. defaultMessage is: +#. Are you sure you want to delete this image? +#: build/locale/src/products/views/ProductImage.json +msgctxt "description" +msgid "Are you sure you want to delete this image?" +msgstr "" + #. [src.attributes.components.AttributeDeleteDialog.3738429348] - dialog #. content #. defaultMessage is: @@ -865,12 +780,7 @@ msgstr "" #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this attribute} #. other{{displayQuantity} categories}}? -#. [src.categories.views.844574071] -#. defaultMessage is: -#. Are you sure you want to delete {counter,plural,one{this attribute} -#. other{{displayQuantity} categories}}? #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this attribute} " @@ -888,22 +798,33 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.2497542455] +#. [src.categories.views.CategoryList.2144707585] +#. defaultMessage is: +#. Are you sure you want to delete {counter,plural,one{this category} +#. other{{displayQuantity} categories}}? +#: build/locale/src/categories/views/CategoryList/CategoryList.json +msgctxt "description" +msgid "" +"Are you sure you want to delete {counter,plural,one{this category} " +"other{{displayQuantity} categories}}?" +msgstr "" + +#. [src.collections.views.CollectionList.2497542455] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this collection} " "other{{displayQuantity} collections}}?" msgstr "" -#. [src.customers.views.409347866] +#. [src.customers.views.CustomerList.409347866] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this customer} #. other{{displayQuantity} customers}}? -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this customer} " @@ -921,11 +842,11 @@ msgid "" "other{{displayQuantity} menus}}?" msgstr "" -#. [src.orders.views.1389231130] - dialog content +#. [src.orders.views.OrderDraftList.1389231130] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this order draft} #. other{{displayQuantity} orderDrafts}}? -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this order draft} " @@ -943,11 +864,11 @@ msgid "" "other{{displayQuantity} pages}}?" msgstr "" -#. [src.productTypes.views.2294091098] - dialog content +#. [src.productTypes.views.ProductTypeList.2294091098] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this product type} #. other{{displayQuantity} product types}}? -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this product type} " @@ -965,11 +886,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.discounts.views.2516361175] - dialog content +#. [src.discounts.views.SaleList.2516361175] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this sale} #. other{{displayQuantity} sales}}? -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this sale} " @@ -998,17 +919,33 @@ msgid "" "other{{displayQuantity} variants}}?" msgstr "" -#. [src.discounts.views.1791926983] - dialog content +#. [src.discounts.views.VoucherList.1791926983] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this voucher} #. other{{displayQuantity} vouchers}}? -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this voucher} " "other{{displayQuantity} vouchers}}?" msgstr "" +#. [src.shipping.views.ShippingZoneDetails.131963671] - unassign country +#. defaultMessage is: +#. Are you sure you want to delete {countryName} from this shipping zone? +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country" +msgid "Are you sure you want to delete {countryName} from this shipping zone?" +msgstr "" + +#. [src.staff.views.8878988] +#. defaultMessage is: +#. Are you sure you want to delete {email} from staff members? +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "description" +msgid "Are you sure you want to delete {email} from staff members?" +msgstr "" + #. [src.customers.views.1927691511] - delete customer, dialog content #. defaultMessage is: #. Are you sure you want to delete {email}? @@ -1123,11 +1060,11 @@ msgctxt "description" msgid "Are you sure you want to mark this order as paid?" msgstr "" -#. [src.collections.views.1348793822] +#. [src.collections.views.CollectionList.1348793822] #. defaultMessage is: #. Are you sure you want to publish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to publish {counter,plural,one{this collection} " @@ -1156,30 +1093,6 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.orders.components.OrderDraftCancelDialog.3199827590] -#. defaultMessage is: -#. Are you sure you want to remove draft #{number}? -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "description" -msgid "Are you sure you want to remove draft #{number}?" -msgstr "" - -#. [src.products.views.672103788] -#. defaultMessage is: -#. Are you sure you want to remove this image? -#: build/locale/src/products/views/ProductImage.json -msgctxt "description" -msgid "Are you sure you want to remove this image?" -msgstr "" - -#. [src.shipping.views.ShippingZoneDetails.1790261672] - unassign country -#. defaultMessage is: -#. Are you sure you want to remove {countryName} from this shipping zone? -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country" -msgid "Are you sure you want to remove {countryName} from this shipping zone?" -msgstr "" - #. [src.staff.views.3945766678] #. defaultMessage is: #. Are you sure you want to remove {email} avatar? @@ -1188,14 +1101,6 @@ msgctxt "description" msgid "Are you sure you want to remove {email} avatar?" msgstr "" -#. [src.staff.views.2728048444] -#. defaultMessage is: -#. Are you sure you want to remove {email} from staff members? -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "description" -msgid "Are you sure you want to remove {email} from staff members?" -msgstr "" - #. [src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450] #. defaultMessage is: #. Are you sure you want to unassign {attributeName} from {productTypeName}? @@ -1276,11 +1181,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.3944356444] +#. [src.collections.views.CollectionList.3944356444] #. defaultMessage is: #. Are you sure you want to unpublish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to unpublish {counter,plural,one{this collection} " @@ -1441,6 +1346,15 @@ msgctxt "button" msgid "Assign products" msgstr "" +#. [src.attributes.components.AttributeValues.351422234] - assign attribute +#. value button +#. defaultMessage is: +#. Assign value +#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json +msgctxt "assign attribute value button" +msgid "Assign value" +msgstr "" + #. [src.attributes.components.AttributeDetails.3605174225] - attribute's slug #. short code label #. defaultMessage is: @@ -1519,6 +1433,14 @@ msgctxt "product attributes, section header" msgid "Attributes" msgstr "" +#. [src.configuration.2326418019] +#. defaultMessage is: +#. Attributes and Product Typess +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Attributes and Product Typess" +msgstr "" + #. [src.attributes.views.AttributeList.3218248395] - deleted multiple #. attributes #. defaultMessage is: @@ -2302,6 +2224,22 @@ msgctxt "description" msgid "Country area" msgstr "" +#. [menuCreateDialogHeader] - dialog header +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json +msgctxt "dialog header" +msgid "Create Menu" +msgstr "" + +#. [menuListPageAddMenu] - button +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json +msgctxt "button" +msgid "Create Menu" +msgstr "" + #. [src.attributes.components.AttributePage.2855501559] - page title #. defaultMessage is: #. Create New Attribute @@ -2326,6 +2264,30 @@ msgctxt "header" msgid "Create New Shipping Zone" msgstr "" +#. [src.pages.components.PageDetailsPage.1068617485] - page header +#. defaultMessage is: +#. Create Page +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page header" +msgid "Create Page" +msgstr "" + +#. [src.orders.components.OrderProductAddDialog.1542417144] - dialog header +#. defaultMessage is: +#. Create Product +#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json +msgctxt "dialog header" +msgid "Create Product" +msgstr "" + +#. [src.products.components.ProductListPage.1542417144] - button +#. defaultMessage is: +#. Create Product +#: build/locale/src/products/components/ProductListPage/ProductListPage.json +msgctxt "button" +msgid "Create Product" +msgstr "" + #. [src.products.views.1542417144] - window title #. defaultMessage is: #. Create Product @@ -2358,11 +2320,19 @@ msgctxt "page header" msgid "Create Sale" msgstr "" -#. [src.products.views.2362587265] - window title +#. [src.discounts.components.SaleListPage.3866518732] - button +#. defaultMessage is: +#. Create Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "button" +msgid "Create Sale" +msgstr "" + +#. [src.products.views.2362587265] - header #. defaultMessage is: #. Create Variant #: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "window title" +msgctxt "header" msgid "Create Variant" msgstr "" @@ -2374,6 +2344,22 @@ msgctxt "page header" msgid "Create Voucher" msgstr "" +#. [src.attributes.components.AttributeListPage.3824684885] - button +#. defaultMessage is: +#. Create attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "button" +msgid "Create attribute" +msgstr "" + +#. [src.categories.components.CategoryListPage.1140231710] - button +#. defaultMessage is: +#. Create category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "button" +msgid "Create category" +msgstr "" + #. [src.categories.views.1140231710] - window title #. defaultMessage is: #. Create category @@ -2382,6 +2368,14 @@ msgctxt "window title" msgid "Create category" msgstr "" +#. [src.collections.components.CollectionListPage.686910896] - button +#. defaultMessage is: +#. Create collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "button" +msgid "Create collection" +msgstr "" + #. [src.collections.views.686910896] - window title #. defaultMessage is: #. Create collection @@ -2398,6 +2392,14 @@ msgctxt "window title" msgid "Create customer" msgstr "" +#. [menuItemsAddItem] - add new menu item +#. defaultMessage is: +#. Create new item +#: build/locale/src/navigation/components/MenuItems/MenuItems.json +msgctxt "add new menu item" +msgid "Create new item" +msgstr "" + #. [src.orders.components.OrderDraftListPage.2826235371] - button #. defaultMessage is: #. Create order @@ -2410,6 +2412,14 @@ msgctxt "button" msgid "Create order" msgstr "" +#. [src.pages.components.PageListPage.3785394515] - button +#. defaultMessage is: +#. Create page +#: build/locale/src/pages/components/PageListPage/PageListPage.json +msgctxt "button" +msgid "Create page" +msgstr "" + #. [src.pages.views.3785394515] - header #. defaultMessage is: #. Create page @@ -2421,11 +2431,55 @@ msgstr "" #. [src.shipping.components.ShippingZoneRateDialog.16061680] - button #. defaultMessage is: #. Create rate +#. [src.shipping.components.ShippingZoneRates.16061680] - button +#. defaultMessage is: +#. Create rate #: build/locale/src/shipping/components/ShippingZoneRateDialog/ShippingZoneRateDialog.json +#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json msgctxt "button" msgid "Create rate" msgstr "" +#. [src.shipping.components.ShippingZonesList.2673544109] - button +#. defaultMessage is: +#. Create shipping zone +#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json +msgctxt "button" +msgid "Create shipping zone" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.770296100] - button +#. defaultMessage is: +#. Create subcategory +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json +msgctxt "button" +msgid "Create subcategory" +msgstr "" + +#. [src.products.components.ProductVariants.3989383405] - button +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/components/ProductVariants/ProductVariants.json +msgctxt "button" +msgid "Create variant" +msgstr "" + +#. [src.products.views.3989383405] - window title +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/views/ProductVariantCreate.json +msgctxt "window title" +msgid "Create variant" +msgstr "" + +#. [src.discounts.components.VoucherListPage.614836274] - button +#. defaultMessage is: +#. Create voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "button" +msgid "Create voucher" +msgstr "" + #. [src.collections.views.1597339737] #. defaultMessage is: #. Created collection @@ -2472,7 +2526,11 @@ msgstr "" #. [src.components.FilterBar.2340527467] #. defaultMessage is: #. Custom Filter +#. [src.components.SearchBar.2340527467] +#. defaultMessage is: +#. Custom Filter #: build/locale/src/components/FilterBar/FilterBar.json +#: build/locale/src/components/SearchBar/SearchBar.json msgctxt "description" msgid "Custom Filter" msgstr "" @@ -2728,10 +2786,18 @@ msgctxt "dialog title" msgid "Delete Collection" msgstr "" -#. [src.orders.views.1161115149] - dialog header +#. [src.products.views.1731766393] - dialog header +#. defaultMessage is: +#. Delete Image +#: build/locale/src/products/views/ProductImage.json +msgctxt "dialog header" +msgid "Delete Image" +msgstr "" + +#. [src.orders.views.OrderDraftList.1161115149] - dialog header #. defaultMessage is: #. Delete Order Drafts -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog header" msgid "Delete Order Drafts" msgstr "" @@ -2769,10 +2835,10 @@ msgctxt "dialog header" msgid "Delete Product Type" msgstr "" -#. [src.productTypes.views.4080551769] - dialog header +#. [src.productTypes.views.ProductTypeList.4080551769] - dialog header #. defaultMessage is: #. Delete Product Types -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog header" msgid "Delete Product Types" msgstr "" @@ -2801,10 +2867,10 @@ msgctxt "dialog header" msgid "Delete Sale" msgstr "" -#. [src.discounts.views.2809303671] - dialog header +#. [src.discounts.views.SaleList.2809303671] - dialog header #. defaultMessage is: #. Delete Sales -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog header" msgid "Delete Sales" msgstr "" @@ -2818,9 +2884,13 @@ msgctxt "custom search delete, dialog header" msgid "Delete Search" msgstr "" +#. [src.components.Filter.2173195312] - button +#. defaultMessage is: +#. Delete Search #. [src.components.TableFilter.2173195312] - button #. defaultMessage is: #. Delete Search +#: build/locale/src/components/Filter/FilterSearch.json #: build/locale/src/components/TableFilter/FilterChips.json msgctxt "button" msgid "Delete Search" @@ -2887,10 +2957,10 @@ msgctxt "dialog header" msgid "Delete Voucher" msgstr "" -#. [src.discounts.views.367317371] - dialog header +#. [src.discounts.views.VoucherList.367317371] - dialog header #. defaultMessage is: #. Delete Vouchers -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog header" msgid "Delete Vouchers" msgstr "" @@ -2924,11 +2994,11 @@ msgstr "" #. [src.categories.views.712767046] - dialog title #. defaultMessage is: #. Delete categories -#. [src.categories.views.712767046] - dialog title +#. [src.categories.views.CategoryList.712767046] - dialog title #. defaultMessage is: #. Delete categories #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "dialog title" msgid "Delete categories" msgstr "" @@ -2945,10 +3015,10 @@ msgctxt "dialog title" msgid "Delete category" msgstr "" -#. [src.collections.views.3817188998] - dialog title +#. [src.collections.views.CollectionList.3817188998] - dialog title #. defaultMessage is: #. Delete collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Delete collections" msgstr "" @@ -2961,14 +3031,31 @@ msgctxt "dialog header" msgid "Delete customer" msgstr "" -#. [src.customers.views.1946482599] - dialog header +#. [src.customers.views.CustomerList.1946482599] - dialog header #. defaultMessage is: #. Delete customers -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "dialog header" msgid "Delete customers" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.632633254] - dialog header +#. defaultMessage is: +#. Delete draft order +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "dialog header" +msgid "Delete draft order" +msgstr "" + +#. [src.shipping.views.ShippingZoneDetails.1947090060] - unassign country, +#. dialog header +#. defaultMessage is: +#. Delete from shipping zone +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country, dialog header" +msgid "Delete from shipping zone" +msgstr "" + #. [src.collections.views.942133001] - dialog title #. defaultMessage is: #. Delete image @@ -3029,6 +3116,14 @@ msgctxt "description" msgid "Deleted collection" msgstr "Colección Eliminada" +#. [src.orders.views.OrderDraftList.1648805446] +#. defaultMessage is: +#. Deleted draft orders +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json +msgctxt "description" +msgid "Deleted draft orders" +msgstr "" + #. [menuListDeletedMenu] #. defaultMessage is: #. Deleted menu @@ -3628,14 +3723,6 @@ msgctxt "order history message" msgid "Fulfilled {quantity} items" msgstr "" -#. [src.orders.components.OrderListFilter.2943502192] - order -#. defaultMessage is: -#. Fulfillment Status -#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json -msgctxt "order" -msgid "Fulfillment Status" -msgstr "" - #. [src.orders.components.OrderHistory.3081292385] - order history message #. defaultMessage is: #. Fulfillment confirmation was sent to customer @@ -3792,12 +3879,12 @@ msgctxt "description" msgid "If empty, the preview shows what will be autogenerated." msgstr "" -#. [src.attributes.components.AttributeProperties.2519239682] +#. [src.attributes.components.AttributeProperties.4048785456] #. defaultMessage is: -#. If enable this attribute can be used as a column in product table. +#. If enabled this attribute can be used as a column in product table. #: build/locale/src/attributes/components/AttributeProperties/AttributeProperties.json msgctxt "description" -msgid "If enable this attribute can be used as a column in product table." +msgid "If enabled this attribute can be used as a column in product table." msgstr "" #. [src.attributes.components.AttributeProperties.787251583] @@ -3903,6 +3990,22 @@ msgctxt "product variant stock" msgid "Inventory" msgstr "" +#. [src.staff.components.StaffAddMemberDialog.1481503299] - dialog header +#. defaultMessage is: +#. Invite Staff Member +#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json +msgctxt "dialog header" +msgid "Invite Staff Member" +msgstr "" + +#. [src.staff.components.StaffListPage.797461521] - button +#. defaultMessage is: +#. Invite staff member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "button" +msgid "Invite staff member" +msgstr "" + #. [src.productTypes.components.ProductTypeShipping.2143413921] - switch #. button #. defaultMessage is: @@ -4255,6 +4358,14 @@ msgctxt "voucher requirement" msgid "Minimum quantity of items" msgstr "" +#. [src.configuration.1233229030] +#. defaultMessage is: +#. Miscellaneous +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Miscellaneous" +msgstr "" + #. [src.attributes.components.AttributeDetails.3334509011] - product attribute #. type #. defaultMessage is: @@ -5087,6 +5198,14 @@ msgctxt "description" msgid "Order History" msgstr "" +#. [src.orders.components.OrderListFilter.2222765704] +#. defaultMessage is: +#. Order Status +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +msgctxt "description" +msgid "Order Status" +msgstr "" + #. [src.orders.components.OrderHistory.1230178536] - order history message #. defaultMessage is: #. Order address was updated @@ -5103,13 +5222,13 @@ msgctxt "order history message" msgid "Order confirmation was sent to customer" msgstr "" -#. [src.orders.views.1872939752] +#. [src.orders.views.OrderDraftList.1872939752] #. defaultMessage is: #. Order draft succesfully created #. [src.orders.views.OrderList.1872939752] #. defaultMessage is: #. Order draft succesfully created -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json #: build/locale/src/orders/views/OrderList/OrderList.json msgctxt "description" msgid "Order draft succesfully created" @@ -5774,6 +5893,14 @@ msgctxt "description" msgid "Product Name" msgstr "" +#. [src.configuration.3655543906] +#. defaultMessage is: +#. Product Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Product Settings" +msgstr "" + #. [src.discounts.components.DiscountProducts.4257289053] #. defaultMessage is: #. Product Type @@ -5932,12 +6059,12 @@ msgctxt "order history message" msgid "Products were added to draft order" msgstr "" -#. [src.orders.components.OrderHistory.2574162126] - order history message +#. [src.orders.components.OrderHistory.4067959693] - order history message #. defaultMessage is: -#. Products were removed from draft order +#. Products were deleted from draft order #: build/locale/src/orders/components/OrderHistory/OrderHistory.json msgctxt "order history message" -msgid "Products were removed from draft order" +msgid "Products were deleted from draft order" msgstr "" #. [src.properties] @@ -5964,10 +6091,10 @@ msgctxt "description" msgid "Provided email address does not exist in our database." msgstr "" -#. [src.collections.views.1547167026] - publish collections +#. [src.collections.views.CollectionList.1547167026] - publish collections #. defaultMessage is: #. Publish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "publish collections" msgid "Publish" msgstr "" @@ -6004,10 +6131,10 @@ msgctxt "dialog header" msgid "Publish Products" msgstr "" -#. [src.collections.views.2823425739] - dialog title +#. [src.collections.views.CollectionList.2823425739] - dialog title #. defaultMessage is: #. Publish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Publish collections" msgstr "" @@ -6181,6 +6308,18 @@ msgctxt "shipping method price" msgid "Rate Price" msgstr "" +#. [src.orders.components.OrderListFilter.2415661583] - order status +#. defaultMessage is: +#. Ready to Capture +#. [src.orders.views.OrderList.readyToCapture] - order status +#. defaultMessage is: +#. Ready to Capture +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +#: build/locale/src/orders/views/OrderList/filters.json +msgctxt "order status" +msgid "Ready to Capture" +msgstr "" + #. [src.customers.components.CustomerOrders.3878642352] - section header #. defaultMessage is: #. Recent orders @@ -6229,22 +6368,14 @@ msgctxt "switch button" msgid "Release all stock allocated to this order" msgstr "" -#. [src.auth.components.LoginPage.3182284913] - login -#. defaultMessage is: -#. Remember me -#: build/locale/src/auth/components/LoginPage/LoginPage.json -msgctxt "login" -msgid "Remember me" -msgstr "" - #. [src.categories.views.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. -#. [src.categories.views.3488150607] +#. [src.categories.views.CategoryList.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "description" msgid "Remember this will also delete all products assigned to this category." msgstr "" @@ -6257,39 +6388,6 @@ msgctxt "button" msgid "Remove" msgstr "" -#. [src.products.views.490753666] - dialog header -#. defaultMessage is: -#. Remove Image -#: build/locale/src/products/views/ProductImage.json -msgctxt "dialog header" -msgid "Remove Image" -msgstr "" - -#. [src.orders.components.OrderDraftCancelDialog.500287069] - dialog header -#. defaultMessage is: -#. Remove draft order -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "dialog header" -msgid "Remove draft order" -msgstr "" - -#. [src.shipping.views.ShippingZoneDetails.254167659] - unassign country, -#. dialog header -#. defaultMessage is: -#. Remove from shipping zone -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country, dialog header" -msgid "Remove from shipping zone" -msgstr "" - -#. [src.orders.views.3880993240] -#. defaultMessage is: -#. Removed draft orders -#: build/locale/src/orders/views/OrderDraftList.json -msgctxt "description" -msgid "Removed draft orders" -msgstr "" - #. [src.pages.views.1457312643] #. defaultMessage is: #. Removed page @@ -6455,6 +6553,18 @@ msgctxt "button" msgid "Save" msgstr "" +#. [src.components.Filter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#. [src.components.TableFilter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#: build/locale/src/components/Filter/FilterSearch.json +#: build/locale/src/components/TableFilter/FilterChips.json +msgctxt "button" +msgid "Save Custom Search" +msgstr "" + #. [src.components.SaveFilterTabDialog.1514415736] - save filter tab, header #. defaultMessage is: #. Save Custom Search @@ -6463,14 +6573,6 @@ msgctxt "save filter tab, header" msgid "Save Custom Search" msgstr "" -#. [src.components.TableFilter.1514415736] - button -#. defaultMessage is: -#. Save Custom Search -#: build/locale/src/components/TableFilter/FilterChips.json -msgctxt "button" -msgid "Save Custom Search" -msgstr "" - #. [src.products.components.ProductVariantCreatePage.2853608829] - button #. defaultMessage is: #. Save variant @@ -6487,6 +6589,14 @@ msgctxt "description" msgid "Saved changes" msgstr "" +#. [src.attributes.components.AttributeListPage.3916653510] +#. defaultMessage is: +#. Search Attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "description" +msgid "Search Attribute" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.902296540] #. defaultMessage is: #. Search Attributes @@ -6503,10 +6613,30 @@ msgctxt "description" msgid "Search Categories" msgstr "" +#. [src.categories.components.CategoryListPage.3841025483] +#. defaultMessage is: +#. Search Category +#. [src.translations.components.TranslationsEntitiesListPage.3841025483] +#. defaultMessage is: +#. Search Category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Category" +msgstr "" + +#. [src.collections.components.CollectionListPage.4057224233] +#. defaultMessage is: +#. Search Collection #. [src.components.AssignCollectionDialog.4057224233] #. defaultMessage is: #. Search Collection +#. [src.translations.components.TranslationsEntitiesListPage.4057224233] +#. defaultMessage is: +#. Search Collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json #: build/locale/src/components/AssignCollectionDialog/AssignCollectionDialog.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json msgctxt "description" msgid "Search Collection" msgstr "" @@ -6519,6 +6649,14 @@ msgctxt "description" msgid "Search Countries" msgstr "" +#. [src.customers.components.CustomerListPage.1643417013] +#. defaultMessage is: +#. Search Customer +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "description" +msgid "Search Customer" +msgstr "" + #. [src.orders.components.OrderCustomer.2433460203] #. defaultMessage is: #. Search Customers @@ -6527,6 +6665,14 @@ msgctxt "description" msgid "Search Customers" msgstr "" +#. [src.orders.components.OrderDraftListPage.77765281] +#. defaultMessage is: +#. Search Draft +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "description" +msgid "Search Draft" +msgstr "" + #. [src.translations.components.TranslationsCategoriesPage.1406947243] #. defaultMessage is: #. Search Engine Description @@ -6607,6 +6753,34 @@ msgctxt "description" msgid "Search Orders..." msgstr "" +#. [src.translations.components.TranslationsEntitiesListPage.2559018090] +#. defaultMessage is: +#. Search Page +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Page" +msgstr "" + +#. [src.translations.components.TranslationsEntitiesListPage.2105464697] +#. defaultMessage is: +#. Search Product +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product" +msgstr "" + +#. [src.productTypes.components.ProductTypeListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#. [src.translations.components.TranslationsEntitiesListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product Type" +msgstr "" + #. [src.components.AssignProductDialog.2850255786] #. defaultMessage is: #. Search Products @@ -6619,14 +6793,46 @@ msgctxt "description" msgid "Search Products" msgstr "" -#. [src.products.components.ProductListPage.3550330425] +#. [src.products.components.ProductListFilter.3550330425] #. defaultMessage is: #. Search Products... -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Search Products..." msgstr "" +#. [src.discounts.components.SaleListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#. [src.translations.components.TranslationsEntitiesListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Sale" +msgstr "" + +#. [src.staff.components.StaffListPage.61043583] +#. defaultMessage is: +#. Search Staff Member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "description" +msgid "Search Staff Member" +msgstr "" + +#. [src.discounts.components.VoucherListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#. [src.translations.components.TranslationsEntitiesListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Voucher" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.524117994] #. defaultMessage is: #. Search by attribute name @@ -6733,10 +6939,10 @@ msgctxt "description" msgid "Select all orders where:" msgstr "" -#. [src.products.components.ProductListPage.1421689426] +#. [src.products.components.ProductListFilter.1421689426] #. defaultMessage is: #. Select all products where: -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Select all products where:" msgstr "" @@ -6822,6 +7028,14 @@ msgctxt "description" msgid "Set plugin as Active" msgstr "" +#. [src.components.VisibilityCard.292404896] +#. defaultMessage is: +#. Set publication date +#: build/locale/src/components/VisibilityCard/VisibilityCard.json +msgctxt "description" +msgid "Set publication date" +msgstr "" + #. [src.discounts.shipment] - voucher discount #. defaultMessage is: #. Shipment @@ -7087,6 +7301,14 @@ msgctxt "staff section name" msgid "Staff Members" msgstr "" +#. [src.configuration.3140151600] +#. defaultMessage is: +#. Staff Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Staff Settings" +msgstr "" + #. [src.standard] - tax rate #. defaultMessage is: #. Standard @@ -8071,10 +8293,10 @@ msgctxt "payment status" msgid "Unpaid" msgstr "" -#. [src.collections.views.2237014112] - unpublish collections +#. [src.collections.views.CollectionList.2237014112] - unpublish collections #. defaultMessage is: #. Unpublish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "unpublish collections" msgid "Unpublish" msgstr "" @@ -8111,10 +8333,10 @@ msgctxt "dialog header" msgid "Unpublish Products" msgstr "" -#. [src.collections.views.2637364047] - dialog title +#. [src.collections.views.CollectionList.2637364047] - dialog title #. defaultMessage is: #. Unpublish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Unpublish collections" msgstr "" @@ -8614,6 +8836,22 @@ msgctxt "description" msgid "ZIP / Postal code" msgstr "" +#. [src.productTypes.components.ProductTypeListPage.3479705616] - button +#. defaultMessage is: +#. create product type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "button" +msgid "create product type" +msgstr "" + +#. [src.staff.views.1308770978] - dialog header +#. defaultMessage is: +#. delete Staff User +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "dialog header" +msgid "delete Staff User" +msgstr "" + #. [orderPaymentVATDoesNotApply] - vat not included in order price #. defaultMessage is: #. does not apply @@ -8687,19 +8925,35 @@ msgctxt "product status is set as" msgid "is set as" msgstr "" -#. [src.staff.views.2240444792] - dialog header -#. defaultMessage is: -#. remove Staff User -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "dialog header" -msgid "remove Staff User" -msgstr "" - -#. [src.components.VisibilityCard.1815688500] +#. [src.collections.components.CollectionCreatePage.1815688500] - collection #. defaultMessage is: #. since {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.1815688500] - collection +#. defaultMessage is: +#. since {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "since {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.1815688500] - page +#. defaultMessage is: +#. since {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "since {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#. [src.products.components.ProductUpdatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "since {date}" msgstr "" @@ -8727,11 +8981,35 @@ msgctxt "weight" msgid "to {value} {unit}" msgstr "" -#. [src.components.VisibilityCard.2001551496] +#. [src.collections.components.CollectionCreatePage.2001551496] - collection #. defaultMessage is: #. will be visible from {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.2001551496] - collection +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "will be visible from {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.2001551496] - page +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "will be visible from {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#. [src.products.components.ProductUpdatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "will be visible from {date}" msgstr "" diff --git a/locale/et.json b/locale/et.json index 03f6c46bf..b97213ef6 100644 --- a/locale/et.json +++ b/locale/et.json @@ -1 +1 @@ -{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.350498821":"Lisa omadus","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.2519239682":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"Nimi","src.categories.components.CategoryProducts.636461959":"Nimi","src.collections.components.CollectionProducts.636461959":"Nimi","src.products.components.ProductDetailsForm.636461959":"Nimi","src.collections.components.CollectionDetails.636461959":"Nimi","src.components.ProductList.636461959":"Nimi","src.discounts.components.SaleInfo.636461959":"Nimi","src.discounts.components.SaleList.636461959":"Nimi","src.discounts.components.SaleSummary.636461959":"Nimi","menuItemDialogNameLabel":"Nimi","src.products.components.ProductVariants.636461959":"Nimi","src.shipping.components.ShippingZoneRates.636461959":"Nimi","src.shipping.components.ShippingZonesList.636461959":"Nimi","src.staff.components.StaffList.636461959":"Nimi","src.translations.components.TranslationsEntitiesList.636461959":"Nimi","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.254756045":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.3182284913":"","src.auth.components.LoginPage.109182747":"Sisene","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"","src.categories.views.2004894945":"","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.3229914152":"","src.categories.components.CategoryList.435697837":"","src.categories.components.CategoryList.2159874182":"Alamkategooriad","src.categories.components.CategoryUpdatePage.2159874182":"Alamkategooriad","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.228151782":"Lisa kategooria","src.categories.components.CategoryProducts.2968663655":"Tooted","src.categories.components.CategoryUpdatePage.2968663655":"Tooted","src.discounts.components.DiscountCategories.2968663655":"Tooted","src.discounts.components.DiscountCollections.2968663655":"Tooted","src.products":"Tooted","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryProducts.3554578821":"Lisa toode","src.categories.components.CategoryProductsCard.3554578821":"Lisa toode","src.categories.components.CategoryProducts.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProducts.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.categories.components.CategoryProductsCard.4164156574":"","src.categories.views.1754466114":"","src.categories.views.1140231710":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.712767046":"","src.categories.views.299584400":"","src.categories.views.844574071":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.collections.components.CollectionCreatePage.3958681866":"Lisa kollektsioon","src.collections.components.CollectionListPage.3958681866":"Lisa kollektsioon","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"Saavadus","src.availability":"","src.collections.components.CollectionList.3640454975":"Avaldatud","src.collections.components.CollectionProducts.3640454975":"Avaldatud","src.discounts.components.DiscountProducts.3640454975":"Avaldatud","src.components.ProductList.3640454975":"Avaldatud","src.products.components.ProductListPage.3640454975":"Avaldatud","src.pages.components.PageList.3640454975":"Avaldatud","src.products.views.ProductList.published":"Avaldatud","src.collections.components.CollectionList.2341910657":"Ei ole avaldatud","src.collections.components.CollectionProducts.2341910657":"Ei ole avaldatud","src.discounts.components.DiscountProducts.2341910657":"Ei ole avaldatud","src.components.ProductList.2341910657":"Ei ole avaldatud","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.686910896":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"","src.collections.views.2402899582":"","src.collections.views.2237014112":"Kustuta","src.pages.views.2237014112":"Kustuta","src.products.views.ProductList.2237014112":"Kustuta","src.collections.views.1547167026":"Avalda","src.pages.views.1547167026":"Avalda","src.products.views.ProductList.1547167026":"Avalda","src.collections.views.2823425739":"","src.collections.views.1348793822":"","src.collections.views.2637364047":"","src.collections.views.3944356444":"","src.collections.views.3817188998":"","src.collections.views.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"Logi välja","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.4057224233":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"","src.components.ErrorMessageCard.2845142593":"","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.FilterBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"Lisa","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.ProductList.1134347598":"Hind","src.orders.components.OrderDraftDetailsProducts.1134347598":"Hind","src.orders.components.OrderFulfillment.1134347598":"Hind","src.products.components.ProductListPage.1134347598":"Hind","src.products.components.ProductPricing.1134347598":"Hind","src.orders.components.OrderUnfulfilledItems.1134347598":"Hind","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"Hind","src.shipping.components.ShippingZoneRates.1134347598":"Hind","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"Nähtavus","src.pages.components.PageList.1459686496":"Nähtavus","src.products.components.ProductListFilter.1459686496":"Nähtavus","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"Peidetud","src.products.views.ProductList.hidden":"Peidetud","src.components.VisibilityCard.1815688500":"","src.components.VisibilityCard.2001551496":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","configurationMenuStaff":"","configurationMenuShipping":"","configurationMenuTaxes":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","src.customers.components.CustomerAddress.1320082647":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"Arveldusaadress","src.customers.components.CustomerAddresses.3517722732":"Postiaadress","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"Aadress","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"Märkused","src.orders.components.OrderCustomerNote.1520756907":"Märkused","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"Märkus","src.customers.components.CustomerDetails.577013340":"Märkus","src.customers.components.CustomerCreatePage.1934221653":"Lisa klient","src.customers.components.CustomerListPage.1934221653":"Lisa klient","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerOrders.3878642352":"Hiljutised tellimused","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"Kuupäev","src.orders.components.OrderDraftList.4205493358":"Kuupäev","src.orders.components.OrderList.4205493358":"Kuupäev","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"Seisund","src.orders.components.OrderListFilter.1756106276":"Seisund","src.products.components.ProductListFilter.1756106276":"Seisund","src.products.components.ProductVariants.1756106276":"Seisund","src.customers.components.CustomerOrders.878013594":"Kokku","src.orders.components.OrderDraftDetailsProducts.878013594":"Kokku","src.orders.components.OrderDraftDetailsSummary.878013594":"Kokku","src.orders.components.OrderDraftList.878013594":"Kokku","src.orders.components.OrderFulfillment.878013594":"Kokku","src.orders.components.OrderUnfulfilledItems.878013594":"Kokku","src.orders.components.OrderList.878013594":"Kokku","src.orders.components.OrderPayment.878013594":"Kokku","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.1946482599":"","src.customers.views.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"Väärtus","src.discounts.components.SaleSummary.1148029984":"Väärtus","src.discounts.components.VoucherList.1148029984":"Väärtus","src.discounts.components.VoucherSummary.1148029984":"Väärtus","src.discounts.components.VoucherValue.1148029984":"Väärtus","src.products.components.ProductAttributes.1148029984":"Väärtus","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.1742771332":"","src.discounts.components.SalePricing.1099355007":"Hindamine","src.products.components.ProductPricing.1099355007":"Hindamine","src.products.components.ProductVariantPrice.1099355007":"Hindamine","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"Riigid","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"Kood","src.discounts.components.VoucherSummary.78726751":"Kood","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.1536809153":"Lisa vautšer","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"Spetsiifilised tooted","src.discounts.shipment":"Saadetis","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.2809303671":"","src.discounts.views.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.367317371":"","src.discounts.views.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"Tühista","src.orders.views.OrderList.3528672691":"Tühista","src.confirm":"","src.delete":"","src.edit":"Muuda","src.manage":"","src.remove":"Eemalda","src.save":"Salvesta","src.show":"","src.undo":"","src.attributes":"Omadus","src.products.components.ProductAttributes.4153345096":"Omadus","src.categories":"Kategooriad","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"Kollektsioonid","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"Konfigureerimine","src.customers":"Kliendid","src.draftOrders":"","src.home":"Kodu","src.navigation":"Navigeerimine","src.orders":"Tellimused","src.pages":"Leheküljed","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"Müügid","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"Maksud","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"Maksud","src.taxes.components.CountryListPage.3955023266":"Maksud","src.translations":"","src.vouchers":"Vautšerid","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"","src.partiallyPaid":"","src.partiallyRefunded":"Osaliselt tagasi makstud","src.refunded":"Täielikult tagasi makstud","src.unpaid":"","src.cancelled":"","src.draft":"Mustand","src.fulfilled":"Täidetud","src.orders.views.OrderList.fulfilled":"Täidetud","src.orders.components.OrderListFilter.1712863026":"Täidetud","src.partiallyFulfilled":"Pooleldi täidetud","src.unfulfilled":"Täitmata","src.orders.views.OrderList.unfulfilled":"Täitmata","src.orders.components.OrderListFilter.1751787272":"Täitmata","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","src.1395232177":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"Link","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"Tühista tellimus","src.orders.components.OrderDetailsPage.1854613983":"Tühista tellimus","src.orders.components.OrderDraftPage.1854613983":"Tühista tellimus","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"Klient","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"Klient","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"Postiaadressiga sama","src.orders.components.OrderCustomerEditDialog.1411666943":"Muuda kliendi andmeid","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.500287069":"Eemalda tellimuse mustand","src.orders.components.OrderDraftCancelDialog.3199827590":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"Toode","src.orders.components.OrderUnfulfilledItems.1895667608":"Toode","src.orders.components.OrderDraftDetailsProducts.2796503714":"Kogus","src.orders.components.OrderFulfillment.2796503714":"Kogus","src.orders.components.OrderFulfillmentDialog.2796503714":"Kogus","src.orders.components.OrderUnfulfilledItems.2796503714":"Kogus","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"Vahesumma","src.orders.components.OrderPayment.781550514":"Vahesumma","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"Loo tellimus","src.orders.components.OrderListPage.2826235371":"Loo tellimus","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"Lisa jälgimine","src.orders.components.OrderFulfillmentCancelDialog.732594284":"Tühista Saadetis","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"Tühista saadetis","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"Tootekood","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"Jälgimisnumber","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.2574162126":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"Tellimus oli täielikult tasutud","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"Tellimus edastati","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"Makse","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2943502192":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"Transport","src.productTypes.components.ProductTypeShipping.1325966144":"Transport","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"Transport","src.orders.components.OrderPayment.3768782744":"Eelnevalt kinnitatud summa","src.orders.components.OrderPayment.2320183694":"Laekunud summa","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"Laekuma","src.orders.components.OrderPayment.2845258362":"Tagastamine","src.orders.components.OrderPayment.2444197639":"Tühistamine","src.orders.components.OrderPayment.3500506678":"Märgi makstuna","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"Kogus","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.2775402904":"","src.products.components.ProductListPage.2775402904":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"Täida","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.3880993240":"","src.orders.views.1161115149":"","src.orders.views.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.755314116":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"Pealkiri","src.pages.components.PageList.1124600214":"Pealkiri","src.pages.components.PageInfo.1116746286":"Sisu","src.translations.components.TranslationsPagesPage.1116746286":"Sisu","src.pages.components.PageList.3478065224":"Lühinimetus","src.pages.components.PageSlug.3478065224":"Lühinimetus","src.productTypes.components.ProductTypeAttributes.3478065224":"Lühinimetus","src.pages.components.PageList.3767550649":"","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.1767905232":"Lisa lehekülg","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.3785394515":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"Väärtused","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"Pildid","src.products.components.ProductVariantImages.3240888698":"Pildid","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"","src.products.components.ProductVariantStock.3841616483":"","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListPage.821159718":"","src.products.components.ProductListPage.1421689426":"","src.products.components.ProductListPage.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"Inventuur","prodictStockInventoryLabel":"Inventuur","src.products.components.ProductVariantStock.3490038570":"Inventuur","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"","src.products.components.ProductVariants.2153006789":"","src.products.components.ProductVariantNavigation.2845381934":"Lisa variant","src.products.components.ProductVariants.2845381934":"Lisa variant","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1542417144":"","src.products.views.1591632382":"","src.products.views.490753666":"","src.products.views.672103788":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.1694086800":"","src.products.views.ProductList.224127438":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.products.views.2178905289":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1756957616":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.889729490":"Lisa tootetüüp","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.4080551769":"","src.productTypes.views.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.352297149":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2474410767":"Lisa saatmispiirkond","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.254167659":"","src.shipping.views.ShippingZoneDetails.1790261672":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"Võti","src.siteSettings.components.SiteSettingsKeys.2446088470":"Võti","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.3490059488":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"Õigused","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.3247064221":"Aktiivne","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.802625341":"Lisa töötaja","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"Kasutaja on aktiivne","src.staff.views.2240444792":"","src.staff.views.2728048444":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file +{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"Kustuta omadused","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"Kustuta omadus","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"Nähtav","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"Nähtav","src.attributes.components.AttributeList.2235596452":"Otsitav","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.3824684885":"","src.attributes.components.AttributeListPage.2417065806":"","src.attributes.components.AttributeListPage.3916653510":"","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.4048785456":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"Kustuta omaduse väärtus","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"Lisa Väärtus","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"Nimi","src.categories.components.CategoryProductList.636461959":"Nimi","src.components.ProductList.636461959":"Nimi","src.products.components.ProductList.636461959":"Nimi","src.collections.components.CollectionDetails.636461959":"Nimi","src.collections.components.CollectionProducts.636461959":"Nimi","src.products.components.ProductDetailsForm.636461959":"Nimi","src.discounts.components.SaleInfo.636461959":"Nimi","src.discounts.components.SaleList.636461959":"Nimi","src.discounts.components.SaleSummary.636461959":"Nimi","menuItemDialogNameLabel":"Nimi","src.plugins.components.PluginsList.636461959":"Nimi","src.products.components.ProductVariants.636461959":"Nimi","src.shipping.components.ShippingZoneRates.636461959":"Nimi","src.shipping.components.ShippingZonesList.636461959":"Nimi","src.staff.components.StaffList.636461959":"Nimi","src.translations.components.TranslationsEntitiesList.636461959":"Nimi","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.351422234":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"Lisa uus väärtus","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.109182747":"Sisene","src.auth.components.LoginPage.4028609483":"","src.auth.components.NewPasswordPage.1915811227":"","src.auth.components.NewPasswordPage.1254879564":"","src.auth.components.NewPasswordPage.2799926859":"","src.auth.components.NewPasswordPage.4253911811":"","src.auth.components.NewPasswordPage.2342634351":"","src.auth.components.ResetPasswordPage.2370700732":"","src.auth.components.ResetPasswordPage.3663311080":"","src.auth.components.ResetPasswordSuccessPage.4066297200":"","src.auth.components.ResetPasswordSuccessPage.2245157344":"","src.auth.views.2388238158":"","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"Kustuta kategooria","src.categories.views.2004894945":"Kustuta kategooria","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.2159874182":"Alamkategooriad","src.categories.components.CategoryUpdatePage.2159874182":"Alamkategooriad","src.categories.components.CategoryList.2527742754":"Toodete arv","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.1140231710":"","src.categories.views.1140231710":"","src.categories.components.CategoryListPage.4294878092":"","src.categories.components.CategoryListPage.3841025483":"","src.translations.components.TranslationsEntitiesListPage.3841025483":"","src.categories.components.CategoryProductList.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductList.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProductList.3640454975":"Avaldatud","src.components.ProductList.3640454975":"Avaldatud","src.products.components.ProductList.3640454975":"Avaldatud","src.products.components.ProductListPage.3640454975":"Avaldatud","productStatusLabel":"Avaldatud","src.collections.components.CollectionList.3640454975":"Avaldatud","src.collections.components.CollectionProducts.3640454975":"Avaldatud","src.discounts.components.DiscountProducts.3640454975":"Avaldatud","src.pages.components.PageList.3640454975":"Avaldatud","src.products.views.ProductList.published":"Avaldatud","src.categories.components.CategoryProductList.1134347598":"Hind","src.orders.components.OrderFulfillment.1134347598":"Hind","src.products.components.ProductList.1134347598":"Hind","src.products.components.ProductListPage.1134347598":"Hind","src.products.components.ProductPricing.1134347598":"Hind","src.components.ProductList.1134347598":"Hind","src.orders.components.OrderDraftDetailsProducts.1134347598":"Hind","src.orders.components.OrderUnfulfilledItems.1134347598":"Hind","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"Hind","src.shipping.components.ShippingZoneRates.1134347598":"Hind","src.categories.components.CategoryProductList.2341910657":"Ei ole avaldatud","src.products.components.ProductList.2341910657":"Ei ole avaldatud","src.collections.components.CollectionList.2341910657":"Ei ole avaldatud","src.collections.components.CollectionProducts.2341910657":"Ei ole avaldatud","src.discounts.components.DiscountProducts.2341910657":"Ei ole avaldatud","src.components.ProductList.2341910657":"Ei ole avaldatud","src.categories.components.CategoryProductList.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.products.components.ProductList.1657559629":"","src.categories.components.CategoryProducts.4164156574":"","src.categories.components.CategoryProducts.3554578821":"Lisa toode","src.categories.components.CategoryUpdatePage.2968663655":"Tooted","src.discounts.components.DiscountCategories.2968663655":"Tooted","src.discounts.components.DiscountCollections.2968663655":"Tooted","src.products":"Tooted","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryUpdatePage.3229914152":"","src.categories.components.CategoryUpdatePage.770296100":"","src.categories.views.1754466114":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.CategoryList.3488150607":"","src.categories.views.712767046":"Kustuta kategooriad","src.categories.views.CategoryList.712767046":"Kustuta kategooriad","src.categories.views.299584400":"","src.categories.views.2507763081":"Kustuta tooted","src.categories.views.3231188861":"","src.categories.views.CategoryList.2144707585":"","src.collections.components.CollectionCreatePage.3958681866":"Lisa kollektsioon","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionCreatePage.2001551496":"","src.collections.components.CollectionDetailsPage.2001551496":"","src.pages.components.PageDetailsPage.2001551496":"","src.products.components.ProductCreatePage.2001551496":"","src.products.components.ProductUpdatePage.2001551496":"","src.collections.components.CollectionCreatePage.1815688500":"","src.collections.components.CollectionDetailsPage.1815688500":"","src.pages.components.PageDetailsPage.1815688500":"","src.products.components.ProductCreatePage.1815688500":"","src.products.components.ProductUpdatePage.1815688500":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"Saavadus","src.availability":"","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionListPage.686910896":"","src.collections.views.686910896":"","src.collections.components.CollectionListPage.1631917001":"","src.collections.components.CollectionListPage.4057224233":"","src.components.AssignCollectionDialog.4057224233":"","src.translations.components.TranslationsEntitiesListPage.4057224233":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"Eemalda","saleDetailsUnassignCategory":"Eemalda","saleDetailsUnassignCollection":"Eemalda","saleDetailsUnassignProduct":"Eemalda","voucherDetailsUnassignCategory":"Eemalda","voucherDetailsUnassignCollection":"Eemalda","voucherDetailsUnassignProduct":"Eemalda","src.productTypes.views.ProductTypeUpdate.870815507":"Eemalda","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"Kustuta pilt","src.collections.views.2402899582":"","src.collections.views.CollectionList.2237014112":"Kustuta","src.pages.views.2237014112":"Kustuta","src.products.views.ProductList.2237014112":"Kustuta","src.collections.views.CollectionList.1547167026":"Avalda","src.pages.views.1547167026":"Avalda","src.products.views.ProductList.1547167026":"Avalda","src.collections.views.CollectionList.2823425739":"","src.collections.views.CollectionList.1348793822":"","src.collections.views.CollectionList.2637364047":"","src.collections.views.CollectionList.3944356444":"","src.collections.views.CollectionList.3817188998":"","src.collections.views.CollectionList.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"Logi välja","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"","src.components.ErrorMessageCard.2845142593":"","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.Filter.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"Lae üles","src.components.Filter.2852521946":"Lisa filter","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"Lisa filter","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.Filter.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.FilterBar.2340527467":"","src.components.SearchBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"Lisa","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"Lisa pildi link","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1556856943":"Otsi Nimi","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"Nähtavus","src.pages.components.PageList.1459686496":"Nähtavus","src.products.components.ProductListFilter.1459686496":"Nähtavus","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"Peidetud","src.products.views.ProductList.hidden":"Peidetud","src.components.VisibilityCard.292404896":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","src.configuration.2326418019":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","src.configuration.3655543906":"","configurationMenuShipping":"","configurationMenuTaxes":"","src.configuration.3140151600":"","configurationMenuStaff":"","src.configuration.1233229030":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","configurationPluginsPages":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"Lisa aadress","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"Arveldusaadress","src.customers.components.CustomerAddresses.3517722732":"Postiaadress","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"Aadress","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"Lisa Aadress","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"Märkused","src.orders.components.OrderCustomerNote.1520756907":"Märkused","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"Märkus","src.customers.components.CustomerDetails.577013340":"Märkus","src.customers.components.CustomerCreatePage.1934221653":"Lisa klient","src.customers.components.CustomerListPage.1934221653":"Lisa klient","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"Kasutajakonto on aktiivne","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerListPage.477293306":"","src.customers.components.CustomerListPage.1643417013":"","src.customers.components.CustomerOrders.3878642352":"Hiljutised tellimused","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"Tellimuste arv","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"Kuupäev","src.orders.components.OrderDraftList.4205493358":"Kuupäev","src.orders.components.OrderList.4205493358":"Kuupäev","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"Seisund","src.orders.components.OrderListFilter.1756106276":"Seisund","src.plugins.components.PluginInfo.1756106276":"Seisund","src.products.components.ProductListFilter.1756106276":"Seisund","src.products.components.ProductVariants.1756106276":"Seisund","src.customers.components.CustomerOrders.878013594":"Kokku","src.orders.components.OrderDraftDetailsProducts.878013594":"Kokku","src.orders.components.OrderDraftDetailsSummary.878013594":"Kokku","src.orders.components.OrderDraftList.878013594":"Kokku","src.orders.components.OrderFulfillment.878013594":"Kokku","src.orders.components.OrderUnfulfilledItems.878013594":"Kokku","src.orders.components.OrderList.878013594":"Kokku","src.orders.components.OrderPayment.878013594":"Kokku","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"Kustuta klient","src.customers.views.1927691511":"","src.customers.views.CustomerList.1946482599":"Kustuta kliendid","src.customers.views.CustomerList.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"Otsi riigi nime järgi","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","src.discounts.components.SaleListPage.3866518732":"","saleDetailsPageCategoriesQuantity":"Kategooriaid ({quantity})","src.discounts.components.VoucherDetailsPage.346170541":"Kategooriaid ({quantity})","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"Väärtus","src.discounts.components.SaleSummary.1148029984":"Väärtus","src.discounts.components.VoucherList.1148029984":"Väärtus","src.discounts.components.VoucherSummary.1148029984":"Väärtus","src.discounts.components.VoucherValue.1148029984":"Väärtus","src.products.components.ProductAttributes.1148029984":"Väärtus","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.3907768880":"","src.discounts.components.SaleListPage.1866913828":"","src.translations.components.TranslationsEntitiesListPage.1866913828":"","src.discounts.components.SalePricing.1099355007":"Hindamine","src.products.components.ProductPricing.1099355007":"Hindamine","src.products.components.ProductVariantPrice.1099355007":"Hindamine","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"Ajavahemik","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"Aktiivsed kuupäevad","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"Riigid","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"Kood","src.discounts.components.VoucherSummary.78726751":"Kood","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"Kasutuste arv","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.614836274":"","src.discounts.components.VoucherListPage.1112241061":"","src.discounts.components.VoucherListPage.1930485532":"","src.translations.components.TranslationsEntitiesListPage.1930485532":"","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"Protsent","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"Kogu tellimus","src.discounts.products":"Spetsiifilised tooted","src.discounts.shipment":"Saadetis","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.SaleList.2809303671":"","src.discounts.views.SaleList.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.VoucherList.367317371":"","src.discounts.views.VoucherList.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"Valikuline","src.products.components.ProductImagePage.1905082483":"Valikuline","productVariantPriceOptionalPriceOverrideField":"Valikuline","productVariantPriceOptionalCostPriceField":"Valikuline","src.properties":"","src.savedChanges":"","src.somethingWentWrong":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"Tagasi","src.cancel":"Tühista","src.orders.views.OrderList.3528672691":"Tühista","src.confirm":"Kinnita","src.delete":"","src.edit":"Muuda","src.manage":"","src.remove":"Eemalda","src.save":"Salvesta","src.show":"","src.undo":"Tühista","src.attributes":"Omadus","src.products.components.ProductAttributes.4153345096":"Omadus","src.categories":"Kategooriad","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"Kollektsioonid","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"Konfigureerimine","src.customers":"Kliendid","src.draftOrders":"","src.home":"Kodu","src.navigation":"Navigeerimine","src.orders":"Tellimused","src.pages":"Leheküljed","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.plugins":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"Müügid","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"Maksud","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"Maksud","src.taxes.components.CountryListPage.3955023266":"Maksud","src.translations":"Tõlked","src.vouchers":"Vautšerid","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"","src.partiallyPaid":"Osaliselt makstud","src.partiallyRefunded":"Osaliselt tagasi makstud","src.refunded":"Täielikult tagasi makstud","src.unpaid":"Maksmata","src.cancelled":"Tühistatud ","src.draft":"Mustand","src.fulfilled":"Täidetud","src.orders.views.OrderList.fulfilled":"Täidetud","src.orders.components.OrderListFilter.1712863026":"Täidetud","src.partiallyFulfilled":"Osaliselt täidetud","src.unfulfilled":"Täitmata","src.orders.views.OrderList.unfulfilled":"Täitmata","src.orders.components.OrderListFilter.1751787272":"Täitmata","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"Jalgrattad","src.books":"Raamatud","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"Restoranid","src.socialHousing":"","src.standard":"","src.water":"Vesi","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"Link","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"Kustuta menüü","menuListDeleteMenuHeader":"Kustuta menüü","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"Kustuta menüüd","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"Tühista tellimused","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"Tühista tellimus","src.orders.components.OrderDetailsPage.1854613983":"Tühista tellimus","src.orders.components.OrderDraftPage.1854613983":"Tühista tellimus","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"Klient","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"Klient","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"Määramata","orderCustomerShippingAddressNotSet":"Määramata","orderCustomerBillingAddressNotSet":"Määramata","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"Postiaadressiga sama","src.orders.components.OrderCustomerEditDialog.1411666943":"Muuda kliendi andmeid","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.632633254":"","src.orders.components.OrderDraftCancelDialog.36681973":"","src.orders.components.OrderDraftDetails.2343989342":"Tellimuse Detailid","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"Toode","src.orders.components.OrderUnfulfilledItems.1895667608":"Toode","src.orders.components.OrderDraftDetailsProducts.2796503714":"Kogus","src.orders.components.OrderFulfillment.2796503714":"Kogus","src.orders.components.OrderFulfillmentDialog.2796503714":"Kogus","src.orders.components.OrderUnfulfilledItems.2796503714":"Kogus","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"Vahesumma","src.orders.components.OrderPayment.781550514":"Vahesumma","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"Loo tellimus","src.orders.components.OrderListPage.2826235371":"Loo tellimus","src.orders.components.OrderDraftListPage.551325728":"","src.orders.components.OrderDraftListPage.77765281":"","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"Tühista makse","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"Lisa jälgimine","src.orders.components.OrderFulfillmentCancelDialog.732594284":"Tühista Saadetis","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"Tühista saadetis","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"Tootekood","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"Jälgimisnumber","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"Lisa jälgimiskood","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.4067959693":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"Tellimus oli täielikult tasutud","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"Makse ebaõnnestus","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"Tellimus edastati","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"Makse","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2415661583":"","src.orders.views.OrderList.readyToCapture":"","src.orders.components.OrderListFilter.2222765704":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"Käibemaksuga","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"Transport","src.productTypes.components.ProductTypeShipping.1325966144":"Transport","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"Transport","src.orders.components.OrderPayment.3768782744":"Eelnevalt kinnitatud summa","src.orders.components.OrderPayment.2320183694":"Laekunud summa","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"Laekuma","src.orders.components.OrderPayment.2845258362":"Tagastamine","src.orders.components.OrderPayment.2444197639":"Tühistamine","src.orders.components.OrderPayment.3500506678":"Märgi makstuna","src.orders.components.OrderPaymentDialog.1466130374":"Laekunud maksed","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"Kogus","src.orders.components.OrderPaymentVoidDialog.3089049828":"Tühine makse","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.1542417144":"","src.products.components.ProductListPage.1542417144":"","src.products.views.1542417144":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"Täitmata ({quantity})","src.orders.components.OrderUnfulfilledItems.2095687440":"Täida","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.OrderDraftList.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.OrderDraftList.1648805446":"","src.orders.views.OrderDraftList.1161115149":"","src.orders.views.OrderDraftList.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.1068617485":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"Pealkiri","src.pages.components.PageList.1124600214":"Pealkiri","src.pages.components.PageInfo.1116746286":"Sisu","src.translations.components.TranslationsPagesPage.1116746286":"Sisu","src.pages.components.PageList.3478065224":"Lühinimetus","src.pages.components.PageSlug.3478065224":"Lühinimetus","src.productTypes.components.ProductTypeAttributes.3478065224":"Lühinimetus","src.pages.components.PageList.3767550649":"Ei ole avaldatud","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.3785394515":"","src.pages.views.3785394515":"","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.plugins.components.PluginInfo.3425535100":"","src.plugins.components.PluginsDetailsPage.3425535100":"","src.plugins.components.PluginInfo.1049131348":"","src.plugins.components.PluginInfo.4013064767":"","src.plugins.components.PluginsDetailsPage.3352026836":"","src.plugins.components.PluginsDetailsPage.2277745418":"","src.plugins.components.PluginsDetailsPage.1970881031":"","src.plugins.components.PluginSettings.1970881031":"","src.plugins.components.PluginsDetailsPage.4241018152":"","src.plugins.components.PluginsList.3247064221":"Aktiivne","src.staff.components.StaffList.3247064221":"Aktiivne","src.plugins.components.PluginsList.4120604650":"","src.plugins.components.PluginsList.666641390":"","src.plugins.views.100549097":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"Väärtused","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"Organisatsioon","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"Foto vaade","src.products.components.ProductImages.3240888698":"Pildid","src.products.components.ProductVariantImages.3240888698":"Pildid","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"Saadaval","src.products.components.ProductVariants.2157131639":"Saadaval","src.products.views.ProductList.available":"Saadaval","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"","src.products.components.ProductVariantStock.3841616483":"","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListFilter.821159718":"","src.products.components.ProductListFilter.1421689426":"","src.products.components.ProductListFilter.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"Konfigureeritav","src.productTypes.components.ProductTypeList.2754779425":"Konfigureeritav","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"Inventuur","prodictStockInventoryLabel":"Inventuur","src.products.components.ProductVariantStock.3490038570":"Inventuur","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"Kustuta variandid","src.products.components.ProductVariantImages.989683980":"Vali fotod","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"","src.products.components.ProductVariants.2153006789":"","src.products.components.ProductVariantNavigation.2845381934":"Lisa variant","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.3989383405":"","src.products.views.3989383405":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"Ei ole saadaval","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1591632382":"","src.products.views.1731766393":"","src.products.views.2880386427":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"Hind alates {price}","src.products.views.ProductList.priceIs":"Hind {price}","src.products.views.ProductList.priceTo":"Hind {price}","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1217376589":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"Maksud","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"Füüsiline","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.3479705616":"","src.productTypes.components.ProductTypeListPage.1776073799":"","src.productTypes.components.ProductTypeListPage.3420445375":"","src.translations.components.TranslationsEntitiesListPage.3420445375":"","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.ProductTypeList.4080551769":"","src.productTypes.views.ProductTypeList.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"Lise Uus Hinnavahemik","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"Lisa Kaalu Vahemik","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"Kaaluvahemik","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRates.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"Kaaluvahemik","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2673544109":"","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.1947090060":"","src.shipping.views.ShippingZoneDetails.131963671":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"Lisa uus autorisatsiooni võti","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"Võti","src.siteSettings.components.SiteSettingsKeys.2446088470":"Võti","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"Lisa võti","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.1481503299":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"Õigused","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.797461521":"","src.staff.components.StaffListPage.2852350932":"","src.staff.components.StaffListPage.61043583":"","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"Kasutajal on täielik ligipääs poele","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"Muuda foto","src.staff.components.StaffProperties.457748370":"Kustuta foto","src.staff.components.StaffStatus.2183517419":"Konto Seisund","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"Kasutaja on aktiivne","src.staff.views.1308770978":"","src.staff.views.8878988":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"Maksumäär {countryName}s","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.2105464697":"","src.translations.components.TranslationsEntitiesListPage.2559018090":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file diff --git a/locale/et.po b/locale/et.po index 5aeb2c252..5bb47f809 100644 --- a/locale/et.po +++ b/locale/et.po @@ -3,11 +3,12 @@ # Keijo Laas , 2019 # Carmel Vaher , 2019 # Henri Tamvere , 2019 +# Erlend , 2019 # msgid "" msgstr "" -"POT-Creation-Date: 2019-09-06T13:56:36.897Z\n" -"Last-Translator: Henri Tamvere , 2019\n" +"POT-Creation-Date: 2019-09-16T15:25:09.340Z\n" +"Last-Translator: Erlend , 2019\n" "Language-Team: Estonian (https://www.transifex.com/mirumee/teams/34782/et/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -61,7 +62,7 @@ msgstr "" #: build/locale/src/staff/components/StaffStatus/StaffStatus.json msgctxt "section header" msgid "Account Status" -msgstr "" +msgstr "Konto Seisund" #. [src.plugins.components.PluginsList.4120604650] - user action bar #. defaultMessage is: @@ -94,7 +95,7 @@ msgstr "Aktiivne" #: build/locale/src/discounts/components/VoucherDates/VoucherDates.json msgctxt "time during voucher is active, header" msgid "Active Dates" -msgstr "" +msgstr "Aktiivsed kuupäevad" #. [homeActivityCardHeader] - header #. defaultMessage is: @@ -118,7 +119,7 @@ msgstr "Lisa" #: build/locale/src/customers/components/CustomerAddressDialog/CustomerAddressDialog.json msgctxt "dialog title" msgid "Add Address" -msgstr "" +msgstr "Lisa aadress" #. [src.components.Filter.2852521946] - button #. defaultMessage is: @@ -126,7 +127,7 @@ msgstr "" #: build/locale/src/components/Filter/Filter.json msgctxt "button" msgid "Add Filter" -msgstr "" +msgstr "Lisa filter" #. [src.components.RichTextEditor.1603794322] - dialog header #. defaultMessage is: @@ -134,7 +135,7 @@ msgstr "" #: build/locale/src/components/RichTextEditor/ImageSource.json msgctxt "dialog header" msgid "Add Image Link" -msgstr "" +msgstr "Lisa pildi link" #. [menuItemDialogAddItem] - create new menu item, header #. defaultMessage is: @@ -144,22 +145,6 @@ msgctxt "create new menu item, header" msgid "Add Item" msgstr "" -#. [menuCreateDialogHeader] - dialog header -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json -msgctxt "dialog header" -msgid "Add Menu" -msgstr "" - -#. [menuListPageAddMenu] - button -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json -msgctxt "button" -msgid "Add Menu" -msgstr "" - #. [src.siteSettings.components.SiteSettingsKeyDialog.1238948746] - dialog #. header #. defaultMessage is: @@ -167,15 +152,7 @@ msgstr "" #: build/locale/src/siteSettings/components/SiteSettingsKeyDialog/SiteSettingsKeyDialog.json msgctxt "dialog header" msgid "Add New Authorization Key" -msgstr "" - -#. [src.pages.components.PageDetailsPage.755314116] - page header -#. defaultMessage is: -#. Add Page -#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json -msgctxt "page header" -msgid "Add Page" -msgstr "" +msgstr "Lisa uus autorisatsiooni võti" #. [src.shipping.components.ShippingZoneRateDialog.2892088870] - dialog header #. defaultMessage is: @@ -183,39 +160,7 @@ msgstr "" #: build/locale/src/shipping/components/ShippingZoneRateDialog/ShippingZoneRateDialog.json msgctxt "dialog header" msgid "Add Price Rate" -msgstr "" - -#. [src.orders.components.OrderProductAddDialog.2775402904] - dialog header -#. defaultMessage is: -#. Add Product -#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json -msgctxt "dialog header" -msgid "Add Product" -msgstr "" - -#. [src.products.components.ProductListPage.2775402904] - button -#. defaultMessage is: -#. Add Product -#: build/locale/src/products/components/ProductListPage/ProductListPage.json -msgctxt "button" -msgid "Add Product" -msgstr "" - -#. [src.discounts.components.SaleListPage.1742771332] - button -#. defaultMessage is: -#. Add Sale -#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json -msgctxt "button" -msgid "Add Sale" -msgstr "" - -#. [src.staff.components.StaffAddMemberDialog.3490059488] - dialog header -#. defaultMessage is: -#. Add Staff Member -#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json -msgctxt "dialog header" -msgid "Add Staff Member" -msgstr "" +msgstr "Lise Uus Hinnavahemik" #. [src.attributes.components.AttributeValueEditDialog.1841790893] - add #. attribute value @@ -224,15 +169,7 @@ msgstr "" #: build/locale/src/attributes/components/AttributeValueEditDialog/AttributeValueEditDialog.json msgctxt "add attribute value" msgid "Add Value" -msgstr "" - -#. [src.products.views.2178905289] - header -#. defaultMessage is: -#. Add Variant -#: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "header" -msgid "Add Variant" -msgstr "" +msgstr "Lisa Väärtus" #. [src.shipping.components.ShippingZoneRateDialog.1397795758] - add weight #. based shipping method, dialog header @@ -241,7 +178,7 @@ msgstr "" #: build/locale/src/shipping/components/ShippingZoneRateDialog/ShippingZoneRateDialog.json msgctxt "add weight based shipping method, dialog header" msgid "Add Weight Rate" -msgstr "" +msgstr "Lisa Kaalu Vahemik" #. [src.customers.components.CustomerAddressListPage.3623935073] - button #. defaultMessage is: @@ -249,15 +186,7 @@ msgstr "" #: build/locale/src/customers/components/CustomerAddressListPage/CustomerAddressListPage.json msgctxt "button" msgid "Add address" -msgstr "" - -#. [src.attributes.components.AttributeListPage.350498821] - button -#. defaultMessage is: -#. Add attribute -#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json -msgctxt "button" -msgid "Add attribute" -msgstr "Lisa omadus" +msgstr "Lisa Aadress" #. [src.siteSettings.components.SiteSettingsKeyDialog.50561933] - button #. defaultMessage is: @@ -267,14 +196,6 @@ msgctxt "button" msgid "Add authentication" msgstr "" -#. [src.categories.components.CategoryListPage.228151782] - button -#. defaultMessage is: -#. Add category -#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json -msgctxt "button" -msgid "Add category" -msgstr "Lisa kategooria" - #. [src.collections.components.CollectionCreatePage.3958681866] - page header #. defaultMessage is: #. Add collection @@ -283,14 +204,6 @@ msgctxt "page header" msgid "Add collection" msgstr "Lisa kollektsioon" -#. [src.collections.components.CollectionListPage.3958681866] - button -#. defaultMessage is: -#. Add collection -#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json -msgctxt "button" -msgid "Add collection" -msgstr "Lisa kollektsioon" - #. [src.customers.components.CustomerCreatePage.1934221653] - page header #. defaultMessage is: #. Add customer @@ -313,7 +226,7 @@ msgstr "Lisa klient" #: build/locale/src/components/Filter/FilterContent.json msgctxt "button" msgid "Add filter" -msgstr "" +msgstr "Lisa filter" #. [src.siteSettings.components.SiteSettingsKeys.1114030884] - button #. defaultMessage is: @@ -321,15 +234,7 @@ msgstr "" #: build/locale/src/siteSettings/components/SiteSettingsKeys/SiteSettingsKeys.json msgctxt "button" msgid "Add key" -msgstr "" - -#. [menuItemsAddItem] - add new menu item -#. defaultMessage is: -#. Add new item -#: build/locale/src/navigation/components/MenuItems/MenuItems.json -msgctxt "add new menu item" -msgid "Add new item" -msgstr "" +msgstr "Lisa võti" #. [menuItemsPlaceholder] #. defaultMessage is: @@ -365,14 +270,6 @@ msgctxt "button" msgid "Add or Edit Link" msgstr "" -#. [src.pages.components.PageListPage.1767905232] - button -#. defaultMessage is: -#. Add page -#: build/locale/src/pages/components/PageListPage/PageListPage.json -msgctxt "button" -msgid "Add page" -msgstr "Lisa lehekülg" - #. [src.categories.components.CategoryProducts.3554578821] - button #. defaultMessage is: #. Add product @@ -381,14 +278,6 @@ msgctxt "button" msgid "Add product" msgstr "Lisa toode" -#. [src.productTypes.components.ProductTypeListPage.889729490] - button -#. defaultMessage is: -#. Add product type -#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json -msgctxt "button" -msgid "Add product type" -msgstr "Lisa tootetüüp" - #. [src.orders.components.OrderDraftDetails.2528459381] - button #. defaultMessage is: #. Add products @@ -397,14 +286,6 @@ msgctxt "button" msgid "Add products" msgstr "" -#. [src.shipping.components.ShippingZoneRates.352297149] - button -#. defaultMessage is: -#. Add rate -#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json -msgctxt "button" -msgid "Add rate" -msgstr "" - #. [src.categories.components.CategoryCreatePage.2563994280] #. defaultMessage is: #. Add search engine title and description to make this category easier to @@ -466,30 +347,6 @@ msgctxt "button" msgid "Add shipping carrier" msgstr "" -#. [src.shipping.components.ShippingZonesList.2474410767] - button -#. defaultMessage is: -#. Add shipping zone -#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json -msgctxt "button" -msgid "Add shipping zone" -msgstr "Lisa saatmispiirkond" - -#. [src.staff.components.StaffListPage.802625341] - button -#. defaultMessage is: -#. Add staff member -#: build/locale/src/staff/components/StaffListPage/StaffListPage.json -msgctxt "button" -msgid "Add staff member" -msgstr "Lisa töötaja" - -#. [src.categories.components.CategoryList.435697837] - button -#. defaultMessage is: -#. Add subcategory -#: build/locale/src/categories/components/CategoryList/CategoryList.json -msgctxt "button" -msgid "Add subcategory" -msgstr "" - #. [src.attributes.components.AttributeProperties.673770329] - add attribute #. as column in product list table #. defaultMessage is: @@ -515,37 +372,16 @@ msgstr "Lisa jälgimine" #: build/locale/src/orders/components/OrderFulfillmentTrackingDialog/OrderFulfillmentTrackingDialog.json msgctxt "dialog header" msgid "Add tracking code" -msgstr "" - -#. [src.attributes.components.AttributeValues.254756045] - add attribute value -#. button -#. defaultMessage is: -#. Add value -#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json -msgctxt "add attribute value button" -msgid "Add value" -msgstr "" +msgstr "Lisa jälgimiskood" #. [src.products.components.ProductVariantNavigation.2845381934] - button #. defaultMessage is: #. Add variant -#. [src.products.components.ProductVariants.2845381934] - button -#. defaultMessage is: -#. Add variant #: build/locale/src/products/components/ProductVariantNavigation/ProductVariantNavigation.json -#: build/locale/src/products/components/ProductVariants/ProductVariants.json msgctxt "button" msgid "Add variant" msgstr "Lisa variant" -#. [src.discounts.components.VoucherListPage.1536809153] - button -#. defaultMessage is: -#. Add voucher -#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json -msgctxt "button" -msgid "Add voucher" -msgstr "Lisa vautšer" - #. [src.attributes.views.AttributeDetails.634268988] - added new attribute #. value #. defaultMessage is: @@ -553,7 +389,7 @@ msgstr "Lisa vautšer" #: build/locale/src/attributes/views/AttributeDetails/AttributeDetails.json msgctxt "added new attribute value" msgid "Added new value" -msgstr "" +msgstr "Lisa uus väärtus" #. [src.collections.views.2001540731] #. defaultMessage is: @@ -603,14 +439,6 @@ msgctxt "description" msgid "Address line 2" msgstr "" -#. [src.customers.components.CustomerAddress.1320082647] - addres card header -#. defaultMessage is: -#. Address {addressNumber} -#: build/locale/src/customers/components/CustomerAddress/CustomerAddress.json -msgctxt "addres card header" -msgid "Address {addressNumber}" -msgstr "" - #. [src.attributes.components.AttributeValues.1565474525] - attribute values #. list: slug column header #. defaultMessage is: @@ -660,6 +488,46 @@ msgctxt "tax rate" msgid "Agricultural supplies" msgstr "" +#. [src.attributes.components.AttributeListPage.2417065806] - tab name +#. defaultMessage is: +#. All Attributes +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "tab name" +msgid "All Attributes" +msgstr "" + +#. [src.categories.components.CategoryListPage.4294878092] - tab name +#. defaultMessage is: +#. All Categories +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "tab name" +msgid "All Categories" +msgstr "" + +#. [src.collections.components.CollectionListPage.1631917001] - tab name +#. defaultMessage is: +#. All Collections +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "tab name" +msgid "All Collections" +msgstr "" + +#. [src.customers.components.CustomerListPage.477293306] - tab name +#. defaultMessage is: +#. All Customers +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "tab name" +msgid "All Customers" +msgstr "" + +#. [src.orders.components.OrderDraftListPage.551325728] - tab name +#. defaultMessage is: +#. All Drafts +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "tab name" +msgid "All Drafts" +msgstr "" + #. [src.orders.components.OrderListPage.875489544] - tab name #. defaultMessage is: #. All Orders @@ -677,22 +545,54 @@ msgctxt "section header" msgid "All Photos" msgstr "" -#. [src.products.components.ProductListPage.821159718] - tab name +#. [src.productTypes.components.ProductTypeListPage.1776073799] - tab name +#. defaultMessage is: +#. All Product Types +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "tab name" +msgid "All Product Types" +msgstr "" + +#. [src.products.components.ProductListFilter.821159718] - tab name #. defaultMessage is: #. All Products -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "tab name" msgid "All Products" msgstr "" -#. [src.categories.components.CategoryList.3229914152] - section header +#. [src.discounts.components.SaleListPage.3907768880] - tab name +#. defaultMessage is: +#. All Sales +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "tab name" +msgid "All Sales" +msgstr "" + +#. [src.staff.components.StaffListPage.2852350932] - tab name +#. defaultMessage is: +#. All Staff Members +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "tab name" +msgid "All Staff Members" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.3229914152] - section header #. defaultMessage is: #. All Subcategories -#: build/locale/src/categories/components/CategoryList/CategoryList.json +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json msgctxt "section header" msgid "All Subcategories" msgstr "" +#. [src.discounts.components.VoucherListPage.1112241061] - tab name +#. defaultMessage is: +#. All Vouchers +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "tab name" +msgid "All Vouchers" +msgstr "" + #. [src.taxes.components.TaxConfiguration.142803418] #. defaultMessage is: #. All products prices are entered with tax included @@ -800,6 +700,14 @@ msgctxt "description" msgid "Are you sure you want to delete collection's image?" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.36681973] +#. defaultMessage is: +#. Are you sure you want to delete draft #{number}? +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "description" +msgid "Are you sure you want to delete draft #{number}?" +msgstr "" + #. [menuDetailsDeleteMenuContent] #. defaultMessage is: #. Are you sure you want to delete menu {menuName}? @@ -816,6 +724,14 @@ msgctxt "description" msgid "Are you sure you want to delete this address from users address book?" msgstr "" +#. [src.products.views.2880386427] +#. defaultMessage is: +#. Are you sure you want to delete this image? +#: build/locale/src/products/views/ProductImage.json +msgctxt "description" +msgid "Are you sure you want to delete this image?" +msgstr "" + #. [src.attributes.components.AttributeDeleteDialog.3738429348] - dialog #. content #. defaultMessage is: @@ -866,12 +782,7 @@ msgstr "" #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this attribute} #. other{{displayQuantity} categories}}? -#. [src.categories.views.844574071] -#. defaultMessage is: -#. Are you sure you want to delete {counter,plural,one{this attribute} -#. other{{displayQuantity} categories}}? #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this attribute} " @@ -889,22 +800,33 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.2497542455] +#. [src.categories.views.CategoryList.2144707585] +#. defaultMessage is: +#. Are you sure you want to delete {counter,plural,one{this category} +#. other{{displayQuantity} categories}}? +#: build/locale/src/categories/views/CategoryList/CategoryList.json +msgctxt "description" +msgid "" +"Are you sure you want to delete {counter,plural,one{this category} " +"other{{displayQuantity} categories}}?" +msgstr "" + +#. [src.collections.views.CollectionList.2497542455] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this collection} " "other{{displayQuantity} collections}}?" msgstr "" -#. [src.customers.views.409347866] +#. [src.customers.views.CustomerList.409347866] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this customer} #. other{{displayQuantity} customers}}? -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this customer} " @@ -922,11 +844,11 @@ msgid "" "other{{displayQuantity} menus}}?" msgstr "" -#. [src.orders.views.1389231130] - dialog content +#. [src.orders.views.OrderDraftList.1389231130] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this order draft} #. other{{displayQuantity} orderDrafts}}? -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this order draft} " @@ -944,11 +866,11 @@ msgid "" "other{{displayQuantity} pages}}?" msgstr "" -#. [src.productTypes.views.2294091098] - dialog content +#. [src.productTypes.views.ProductTypeList.2294091098] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this product type} #. other{{displayQuantity} product types}}? -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this product type} " @@ -966,11 +888,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.discounts.views.2516361175] - dialog content +#. [src.discounts.views.SaleList.2516361175] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this sale} #. other{{displayQuantity} sales}}? -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this sale} " @@ -999,17 +921,33 @@ msgid "" "other{{displayQuantity} variants}}?" msgstr "" -#. [src.discounts.views.1791926983] - dialog content +#. [src.discounts.views.VoucherList.1791926983] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this voucher} #. other{{displayQuantity} vouchers}}? -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this voucher} " "other{{displayQuantity} vouchers}}?" msgstr "" +#. [src.shipping.views.ShippingZoneDetails.131963671] - unassign country +#. defaultMessage is: +#. Are you sure you want to delete {countryName} from this shipping zone? +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country" +msgid "Are you sure you want to delete {countryName} from this shipping zone?" +msgstr "" + +#. [src.staff.views.8878988] +#. defaultMessage is: +#. Are you sure you want to delete {email} from staff members? +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "description" +msgid "Are you sure you want to delete {email} from staff members?" +msgstr "" + #. [src.customers.views.1927691511] - delete customer, dialog content #. defaultMessage is: #. Are you sure you want to delete {email}? @@ -1124,11 +1062,11 @@ msgctxt "description" msgid "Are you sure you want to mark this order as paid?" msgstr "" -#. [src.collections.views.1348793822] +#. [src.collections.views.CollectionList.1348793822] #. defaultMessage is: #. Are you sure you want to publish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to publish {counter,plural,one{this collection} " @@ -1157,30 +1095,6 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.orders.components.OrderDraftCancelDialog.3199827590] -#. defaultMessage is: -#. Are you sure you want to remove draft #{number}? -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "description" -msgid "Are you sure you want to remove draft #{number}?" -msgstr "" - -#. [src.products.views.672103788] -#. defaultMessage is: -#. Are you sure you want to remove this image? -#: build/locale/src/products/views/ProductImage.json -msgctxt "description" -msgid "Are you sure you want to remove this image?" -msgstr "" - -#. [src.shipping.views.ShippingZoneDetails.1790261672] - unassign country -#. defaultMessage is: -#. Are you sure you want to remove {countryName} from this shipping zone? -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country" -msgid "Are you sure you want to remove {countryName} from this shipping zone?" -msgstr "" - #. [src.staff.views.3945766678] #. defaultMessage is: #. Are you sure you want to remove {email} avatar? @@ -1189,14 +1103,6 @@ msgctxt "description" msgid "Are you sure you want to remove {email} avatar?" msgstr "" -#. [src.staff.views.2728048444] -#. defaultMessage is: -#. Are you sure you want to remove {email} from staff members? -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "description" -msgid "Are you sure you want to remove {email} from staff members?" -msgstr "" - #. [src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450] #. defaultMessage is: #. Are you sure you want to unassign {attributeName} from {productTypeName}? @@ -1277,11 +1183,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.3944356444] +#. [src.collections.views.CollectionList.3944356444] #. defaultMessage is: #. Are you sure you want to unpublish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to unpublish {counter,plural,one{this collection} " @@ -1442,6 +1348,15 @@ msgctxt "button" msgid "Assign products" msgstr "" +#. [src.attributes.components.AttributeValues.351422234] - assign attribute +#. value button +#. defaultMessage is: +#. Assign value +#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json +msgctxt "assign attribute value button" +msgid "Assign value" +msgstr "" + #. [src.attributes.components.AttributeDetails.3605174225] - attribute's slug #. short code label #. defaultMessage is: @@ -1520,6 +1435,14 @@ msgctxt "product attributes, section header" msgid "Attributes" msgstr "Omadus" +#. [src.configuration.2326418019] +#. defaultMessage is: +#. Attributes and Product Typess +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Attributes and Product Typess" +msgstr "" + #. [src.attributes.views.AttributeList.3218248395] - deleted multiple #. attributes #. defaultMessage is: @@ -1586,7 +1509,7 @@ msgstr "Saavadus" #: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "product status" msgid "Available" -msgstr "" +msgstr "Saadaval" #. [src.products.components.ProductVariants.2157131639] - product variant #. status @@ -1595,7 +1518,7 @@ msgstr "" #: build/locale/src/products/components/ProductVariants/ProductVariants.json msgctxt "product variant status" msgid "Available" -msgstr "" +msgstr "Saadaval" #. [src.products.views.ProductList.available] - filter products by stock #. defaultMessage is: @@ -1603,7 +1526,7 @@ msgstr "" #: build/locale/src/products/views/ProductList/filters.json msgctxt "filter products by stock" msgid "Available" -msgstr "" +msgstr "Saadaval" #. [src.babyFoodstuffs] - tax rate #. defaultMessage is: @@ -1619,7 +1542,7 @@ msgstr "" #: build/locale/src/intl.json msgctxt "button" msgid "Back" -msgstr "" +msgstr "Tagasi" #. [src.components.ErrorPage.1723676032] - button #. defaultMessage is: @@ -1655,7 +1578,7 @@ msgstr "" #: build/locale/src/misc.json msgctxt "tax rate" msgid "Bikes" -msgstr "" +msgstr "Jalgrattad" #. [src.orders.components.OrderCustomer.4282475982] #. defaultMessage is: @@ -1679,7 +1602,7 @@ msgstr "Arveldusaadress" #: build/locale/src/misc.json msgctxt "tax rate" msgid "Books" -msgstr "" +msgstr "Raamatud" #. [src.cancel] - button #. defaultMessage is: @@ -1712,7 +1635,7 @@ msgstr "Tühista Saadetis" #: build/locale/src/orders/components/OrderBulkCancelDialog/OrderBulkCancelDialog.json msgctxt "dialog header" msgid "Cancel Orders" -msgstr "" +msgstr "Tühista tellimused" #. [src.orders.components.OrderFulfillmentCancelDialog.675709443] - button #. defaultMessage is: @@ -1748,7 +1671,7 @@ msgstr "Tühista tellimus" #: build/locale/src/orders/components/OrderFulfillment/OrderFulfillment.json msgctxt "button" msgid "Cancel shipment" -msgstr "" +msgstr "Tühista makse" #. [src.cancelled] - order status #. defaultMessage is: @@ -1756,7 +1679,7 @@ msgstr "" #: build/locale/src/misc.json msgctxt "order status" msgid "Cancelled" -msgstr "" +msgstr "Tühistatud " #. [src.orders.components.OrderPayment.4211710217] - capture payment, button #. defaultMessage is: @@ -1772,7 +1695,7 @@ msgstr "Laekuma" #: build/locale/src/orders/components/OrderPaymentDialog/OrderPaymentDialog.json msgctxt "dialog header" msgid "Capture Payment" -msgstr "" +msgstr "Laekunud maksed" #. [src.orders.components.OrderPayment.2320183694] - order payment #. defaultMessage is: @@ -1788,7 +1711,7 @@ msgstr "Laekunud summa" #: build/locale/src/intl.json msgctxt "description" msgid "Catalog" -msgstr "" +msgstr "Kataloog" #. [src.attributes.components.AttributeDetails.1005562666] - attribute's #. editor component @@ -1826,7 +1749,7 @@ msgstr "Kategooriad" #: build/locale/src/discounts/components/VoucherDetailsPage/VoucherDetailsPage.json msgctxt "number of categories" msgid "Categories ({quantity})" -msgstr "" +msgstr "Kategooriaid ({quantity})" #. [src.products.components.ProductCategoryAndCollectionsForm.1755013298] #. defaultMessage is: @@ -1850,7 +1773,7 @@ msgstr "Kategooria" #: build/locale/src/categories/components/CategoryDetailsForm/CategoryDetailsForm.json msgctxt "description" msgid "Category Description" -msgstr "" +msgstr "Kategooria kirjeldus" #. [src.categories.components.CategoryDetailsForm.1214235329] #. defaultMessage is: @@ -1870,7 +1793,7 @@ msgstr "" #: build/locale/src/translations/components/TranslationsCategoriesPage/TranslationsCategoriesPage.json msgctxt "description" msgid "Category Name" -msgstr "" +msgstr "Kategooria nimi" #. [src.categories.views.1754466114] #. defaultMessage is: @@ -1878,7 +1801,7 @@ msgstr "" #: build/locale/src/categories/views/CategoryCreate.json msgctxt "description" msgid "Category created" -msgstr "" +msgstr "Kategooria loodud" #. [src.categories.views.2189424032] #. defaultMessage is: @@ -1886,7 +1809,7 @@ msgstr "" #: build/locale/src/categories/views/CategoryDetails.json msgctxt "description" msgid "Category deleted" -msgstr "" +msgstr "Kategooria kustutatud" #. [src.discounts.components.DiscountCategories.1567318211] #. defaultMessage is: @@ -1894,7 +1817,7 @@ msgstr "" #: build/locale/src/discounts/components/DiscountCategories/DiscountCategories.json msgctxt "description" msgid "Category name" -msgstr "" +msgstr "Kategooria nimi" #. [src.staff.components.StaffProperties.2771097267] - button #. defaultMessage is: @@ -1902,7 +1825,7 @@ msgstr "" #: build/locale/src/staff/components/StaffProperties/StaffProperties.json msgctxt "button" msgid "Change photo" -msgstr "" +msgstr "Muuda foto" #. [src.products.components.ProductPricing.3015886868] #. defaultMessage is: @@ -1951,7 +1874,7 @@ msgstr "" #: build/locale/src/products/components/ProductVariantImages/ProductVariantImages.json msgctxt "button" msgid "Choose photos" -msgstr "" +msgstr "Vali fotod" #. [src.components.AddressEdit.253031977] #. defaultMessage is: @@ -2048,7 +1971,7 @@ msgstr "" #: build/locale/src/siteSettings/components/SiteSettingsAddress/SiteSettingsAddress.json msgctxt "description" msgid "Company" -msgstr "" +msgstr "Ettevõtte" #. [src.siteSettings.components.SiteSettingsPage.3817101936] #. defaultMessage is: @@ -2056,7 +1979,7 @@ msgstr "" #: build/locale/src/siteSettings/components/SiteSettingsPage/SiteSettingsPage.json msgctxt "description" msgid "Company information" -msgstr "" +msgstr "Ettevõtte info" #. [src.translations.components.TranslationsEntitiesList.49462429] #. defaultMessage is: @@ -2073,7 +1996,7 @@ msgstr "" #: build/locale/src/products/components/ProductOrganization/ProductOrganization.json msgctxt "product is configurable" msgid "Configurable" -msgstr "" +msgstr "Konfigureeritav" #. [src.productTypes.components.ProductTypeList.2754779425] - product type #. defaultMessage is: @@ -2081,7 +2004,7 @@ msgstr "" #: build/locale/src/productTypes/components/ProductTypeList/ProductTypeList.json msgctxt "product type" msgid "Configurable" -msgstr "" +msgstr "Konfigureeritav" #. [src.configuration] - configuration section name #. defaultMessage is: @@ -2097,7 +2020,7 @@ msgstr "Konfigureerimine" #: build/locale/src/intl.json msgctxt "button" msgid "Confirm" -msgstr "" +msgstr "Kinnita" #. [src.auth.components.NewPasswordPage.2799926859] #. defaultMessage is: @@ -2303,6 +2226,22 @@ msgctxt "description" msgid "Country area" msgstr "" +#. [menuCreateDialogHeader] - dialog header +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json +msgctxt "dialog header" +msgid "Create Menu" +msgstr "" + +#. [menuListPageAddMenu] - button +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json +msgctxt "button" +msgid "Create Menu" +msgstr "" + #. [src.attributes.components.AttributePage.2855501559] - page title #. defaultMessage is: #. Create New Attribute @@ -2327,6 +2266,30 @@ msgctxt "header" msgid "Create New Shipping Zone" msgstr "" +#. [src.pages.components.PageDetailsPage.1068617485] - page header +#. defaultMessage is: +#. Create Page +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page header" +msgid "Create Page" +msgstr "" + +#. [src.orders.components.OrderProductAddDialog.1542417144] - dialog header +#. defaultMessage is: +#. Create Product +#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json +msgctxt "dialog header" +msgid "Create Product" +msgstr "" + +#. [src.products.components.ProductListPage.1542417144] - button +#. defaultMessage is: +#. Create Product +#: build/locale/src/products/components/ProductListPage/ProductListPage.json +msgctxt "button" +msgid "Create Product" +msgstr "" + #. [src.products.views.1542417144] - window title #. defaultMessage is: #. Create Product @@ -2359,11 +2322,19 @@ msgctxt "page header" msgid "Create Sale" msgstr "" -#. [src.products.views.2362587265] - window title +#. [src.discounts.components.SaleListPage.3866518732] - button +#. defaultMessage is: +#. Create Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "button" +msgid "Create Sale" +msgstr "" + +#. [src.products.views.2362587265] - header #. defaultMessage is: #. Create Variant #: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "window title" +msgctxt "header" msgid "Create Variant" msgstr "" @@ -2375,6 +2346,22 @@ msgctxt "page header" msgid "Create Voucher" msgstr "" +#. [src.attributes.components.AttributeListPage.3824684885] - button +#. defaultMessage is: +#. Create attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "button" +msgid "Create attribute" +msgstr "" + +#. [src.categories.components.CategoryListPage.1140231710] - button +#. defaultMessage is: +#. Create category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "button" +msgid "Create category" +msgstr "" + #. [src.categories.views.1140231710] - window title #. defaultMessage is: #. Create category @@ -2383,6 +2370,14 @@ msgctxt "window title" msgid "Create category" msgstr "" +#. [src.collections.components.CollectionListPage.686910896] - button +#. defaultMessage is: +#. Create collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "button" +msgid "Create collection" +msgstr "" + #. [src.collections.views.686910896] - window title #. defaultMessage is: #. Create collection @@ -2399,6 +2394,14 @@ msgctxt "window title" msgid "Create customer" msgstr "" +#. [menuItemsAddItem] - add new menu item +#. defaultMessage is: +#. Create new item +#: build/locale/src/navigation/components/MenuItems/MenuItems.json +msgctxt "add new menu item" +msgid "Create new item" +msgstr "" + #. [src.orders.components.OrderDraftListPage.2826235371] - button #. defaultMessage is: #. Create order @@ -2411,6 +2414,14 @@ msgctxt "button" msgid "Create order" msgstr "Loo tellimus" +#. [src.pages.components.PageListPage.3785394515] - button +#. defaultMessage is: +#. Create page +#: build/locale/src/pages/components/PageListPage/PageListPage.json +msgctxt "button" +msgid "Create page" +msgstr "" + #. [src.pages.views.3785394515] - header #. defaultMessage is: #. Create page @@ -2422,11 +2433,55 @@ msgstr "" #. [src.shipping.components.ShippingZoneRateDialog.16061680] - button #. defaultMessage is: #. Create rate +#. [src.shipping.components.ShippingZoneRates.16061680] - button +#. defaultMessage is: +#. Create rate #: build/locale/src/shipping/components/ShippingZoneRateDialog/ShippingZoneRateDialog.json +#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json msgctxt "button" msgid "Create rate" msgstr "" +#. [src.shipping.components.ShippingZonesList.2673544109] - button +#. defaultMessage is: +#. Create shipping zone +#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json +msgctxt "button" +msgid "Create shipping zone" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.770296100] - button +#. defaultMessage is: +#. Create subcategory +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json +msgctxt "button" +msgid "Create subcategory" +msgstr "" + +#. [src.products.components.ProductVariants.3989383405] - button +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/components/ProductVariants/ProductVariants.json +msgctxt "button" +msgid "Create variant" +msgstr "" + +#. [src.products.views.3989383405] - window title +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/views/ProductVariantCreate.json +msgctxt "window title" +msgid "Create variant" +msgstr "" + +#. [src.discounts.components.VoucherListPage.614836274] - button +#. defaultMessage is: +#. Create voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "button" +msgid "Create voucher" +msgstr "" + #. [src.collections.views.1597339737] #. defaultMessage is: #. Created collection @@ -2473,7 +2528,11 @@ msgstr "" #. [src.components.FilterBar.2340527467] #. defaultMessage is: #. Custom Filter +#. [src.components.SearchBar.2340527467] +#. defaultMessage is: +#. Custom Filter #: build/locale/src/components/FilterBar/FilterBar.json +#: build/locale/src/components/SearchBar/SearchBar.json msgctxt "description" msgid "Custom Filter" msgstr "" @@ -2729,10 +2788,18 @@ msgctxt "dialog title" msgid "Delete Collection" msgstr "" -#. [src.orders.views.1161115149] - dialog header +#. [src.products.views.1731766393] - dialog header +#. defaultMessage is: +#. Delete Image +#: build/locale/src/products/views/ProductImage.json +msgctxt "dialog header" +msgid "Delete Image" +msgstr "" + +#. [src.orders.views.OrderDraftList.1161115149] - dialog header #. defaultMessage is: #. Delete Order Drafts -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog header" msgid "Delete Order Drafts" msgstr "" @@ -2770,10 +2837,10 @@ msgctxt "dialog header" msgid "Delete Product Type" msgstr "" -#. [src.productTypes.views.4080551769] - dialog header +#. [src.productTypes.views.ProductTypeList.4080551769] - dialog header #. defaultMessage is: #. Delete Product Types -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog header" msgid "Delete Product Types" msgstr "" @@ -2802,10 +2869,10 @@ msgctxt "dialog header" msgid "Delete Sale" msgstr "" -#. [src.discounts.views.2809303671] - dialog header +#. [src.discounts.views.SaleList.2809303671] - dialog header #. defaultMessage is: #. Delete Sales -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog header" msgid "Delete Sales" msgstr "" @@ -2819,9 +2886,13 @@ msgctxt "custom search delete, dialog header" msgid "Delete Search" msgstr "" +#. [src.components.Filter.2173195312] - button +#. defaultMessage is: +#. Delete Search #. [src.components.TableFilter.2173195312] - button #. defaultMessage is: #. Delete Search +#: build/locale/src/components/Filter/FilterSearch.json #: build/locale/src/components/TableFilter/FilterChips.json msgctxt "button" msgid "Delete Search" @@ -2888,10 +2959,10 @@ msgctxt "dialog header" msgid "Delete Voucher" msgstr "" -#. [src.discounts.views.367317371] - dialog header +#. [src.discounts.views.VoucherList.367317371] - dialog header #. defaultMessage is: #. Delete Vouchers -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog header" msgid "Delete Vouchers" msgstr "" @@ -2902,7 +2973,7 @@ msgstr "" #: build/locale/src/attributes/components/AttributeDeleteDialog/AttributeDeleteDialog.json msgctxt "dialog title" msgid "Delete attribute" -msgstr "" +msgstr "Kustuta omadus" #. [src.attributes.components.AttributeValueDeleteDialog.203246037] - dialog #. title @@ -2911,7 +2982,7 @@ msgstr "" #: build/locale/src/attributes/components/AttributeValueDeleteDialog/AttributeValueDeleteDialog.json msgctxt "dialog title" msgid "Delete attribute value" -msgstr "" +msgstr "Kustuta omaduse väärtus" #. [src.attributes.components.AttributeBulkDeleteDialog.1655187315] - dialog #. title @@ -2920,19 +2991,19 @@ msgstr "" #: build/locale/src/attributes/components/AttributeBulkDeleteDialog/AttributeBulkDeleteDialog.json msgctxt "dialog title" msgid "Delete attributes" -msgstr "" +msgstr "Kustuta omadused" #. [src.categories.views.712767046] - dialog title #. defaultMessage is: #. Delete categories -#. [src.categories.views.712767046] - dialog title +#. [src.categories.views.CategoryList.712767046] - dialog title #. defaultMessage is: #. Delete categories #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "dialog title" msgid "Delete categories" -msgstr "" +msgstr "Kustuta kategooriad" #. [src.categories.components.CategoryDeleteDialog.2004894945] - dialog title #. defaultMessage is: @@ -2944,12 +3015,12 @@ msgstr "" #: build/locale/src/categories/views/CategoryDetails.json msgctxt "dialog title" msgid "Delete category" -msgstr "" +msgstr "Kustuta kategooria" -#. [src.collections.views.3817188998] - dialog title +#. [src.collections.views.CollectionList.3817188998] - dialog title #. defaultMessage is: #. Delete collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Delete collections" msgstr "" @@ -2960,14 +3031,31 @@ msgstr "" #: build/locale/src/customers/views/CustomerDetails.json msgctxt "dialog header" msgid "Delete customer" -msgstr "" +msgstr "Kustuta klient" -#. [src.customers.views.1946482599] - dialog header +#. [src.customers.views.CustomerList.1946482599] - dialog header #. defaultMessage is: #. Delete customers -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "dialog header" msgid "Delete customers" +msgstr "Kustuta kliendid" + +#. [src.orders.components.OrderDraftCancelDialog.632633254] - dialog header +#. defaultMessage is: +#. Delete draft order +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "dialog header" +msgid "Delete draft order" +msgstr "" + +#. [src.shipping.views.ShippingZoneDetails.1947090060] - unassign country, +#. dialog header +#. defaultMessage is: +#. Delete from shipping zone +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country, dialog header" +msgid "Delete from shipping zone" msgstr "" #. [src.collections.views.942133001] - dialog title @@ -2976,7 +3064,7 @@ msgstr "" #: build/locale/src/collections/views/CollectionDetails.json msgctxt "dialog title" msgid "Delete image" -msgstr "" +msgstr "Kustuta pilt" #. [menuDetailsDeleteMenuHeader] - dialog header #. defaultMessage is: @@ -2988,7 +3076,7 @@ msgstr "" #: build/locale/src/navigation/views/MenuList.json msgctxt "dialog header" msgid "Delete menu" -msgstr "" +msgstr "Kustuta menüü" #. [menuListDeleteMenusHeader] - dialog header #. defaultMessage is: @@ -2996,7 +3084,7 @@ msgstr "" #: build/locale/src/navigation/views/MenuList.json msgctxt "dialog header" msgid "Delete menus" -msgstr "" +msgstr "Kustuta menüüd" #. [src.staff.components.StaffProperties.457748370] - button #. defaultMessage is: @@ -3004,7 +3092,7 @@ msgstr "" #: build/locale/src/staff/components/StaffProperties/StaffProperties.json msgctxt "button" msgid "Delete photo" -msgstr "" +msgstr "Kustuta foto" #. [src.categories.views.2507763081] - dialog title #. defaultMessage is: @@ -3012,7 +3100,7 @@ msgstr "" #: build/locale/src/categories/views/CategoryDetails.json msgctxt "dialog title" msgid "Delete products" -msgstr "" +msgstr "Kustuta tooted" #. [src.products.components.ProductVariantDeleteDialog.1583616500] - button #. defaultMessage is: @@ -3020,7 +3108,7 @@ msgstr "" #: build/locale/src/products/components/ProductVariantDeleteDialog/ProductVariantDeleteDialog.json msgctxt "button" msgid "Delete variant" -msgstr "" +msgstr "Kustuta variandid" #. [src.collections.views.1152429477] #. defaultMessage is: @@ -3030,6 +3118,14 @@ msgctxt "description" msgid "Deleted collection" msgstr "Kustutatud kollektsioon" +#. [src.orders.views.OrderDraftList.1648805446] +#. defaultMessage is: +#. Deleted draft orders +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json +msgctxt "description" +msgid "Deleted draft orders" +msgstr "" + #. [menuListDeletedMenu] #. defaultMessage is: #. Deleted menu @@ -3426,7 +3522,7 @@ msgstr "" #: build/locale/src/discounts/translations.json msgctxt "voucher discount" msgid "Entire order" -msgstr "" +msgstr "Kogu tellimus" #. [src.components.ConfirmButton.2845142593] - button #. defaultMessage is: @@ -3629,14 +3725,6 @@ msgctxt "order history message" msgid "Fulfilled {quantity} items" msgstr "" -#. [src.orders.components.OrderListFilter.2943502192] - order -#. defaultMessage is: -#. Fulfillment Status -#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json -msgctxt "order" -msgid "Fulfillment Status" -msgstr "" - #. [src.orders.components.OrderHistory.3081292385] - order history message #. defaultMessage is: #. Fulfillment confirmation was sent to customer @@ -3793,12 +3881,12 @@ msgctxt "description" msgid "If empty, the preview shows what will be autogenerated." msgstr "Kui tühi, näitab eelvaade, mis lisatakse automaatselt." -#. [src.attributes.components.AttributeProperties.2519239682] +#. [src.attributes.components.AttributeProperties.4048785456] #. defaultMessage is: -#. If enable this attribute can be used as a column in product table. +#. If enabled this attribute can be used as a column in product table. #: build/locale/src/attributes/components/AttributeProperties/AttributeProperties.json msgctxt "description" -msgid "If enable this attribute can be used as a column in product table." +msgid "If enabled this attribute can be used as a column in product table." msgstr "" #. [src.attributes.components.AttributeProperties.787251583] @@ -3904,6 +3992,22 @@ msgctxt "product variant stock" msgid "Inventory" msgstr "Inventuur" +#. [src.staff.components.StaffAddMemberDialog.1481503299] - dialog header +#. defaultMessage is: +#. Invite Staff Member +#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json +msgctxt "dialog header" +msgid "Invite Staff Member" +msgstr "" + +#. [src.staff.components.StaffListPage.797461521] - button +#. defaultMessage is: +#. Invite staff member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "button" +msgid "Invite staff member" +msgstr "" + #. [src.productTypes.components.ProductTypeShipping.2143413921] - switch #. button #. defaultMessage is: @@ -4256,6 +4360,14 @@ msgctxt "voucher requirement" msgid "Minimum quantity of items" msgstr "" +#. [src.configuration.1233229030] +#. defaultMessage is: +#. Miscellaneous +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Miscellaneous" +msgstr "" + #. [src.attributes.components.AttributeDetails.3334509011] - product attribute #. type #. defaultMessage is: @@ -4414,7 +4526,7 @@ msgstr "Navigeerimine" #: build/locale/src/auth/components/NewPasswordPage/NewPasswordPage.json msgctxt "description" msgid "New Password" -msgstr "" +msgstr "Uus parool" #. [src.products.views.1591632382] - page header #. defaultMessage is: @@ -4825,7 +4937,7 @@ msgstr "Vautšereid ei leitud" #: build/locale/src/customers/components/CustomerOrders/CustomerOrders.json msgctxt "number of order" msgid "No. of Order" -msgstr "" +msgstr "Tellimuste arv" #. [src.orders.components.OrderDraftList.2889196282] #. defaultMessage is: @@ -4837,7 +4949,7 @@ msgstr "" #: build/locale/src/orders/components/OrderList/OrderList.json msgctxt "description" msgid "No. of Order" -msgstr "" +msgstr "Tellimuste arv" #. [src.customers.components.CustomerList.1432565772] #. defaultMessage is: @@ -4845,7 +4957,7 @@ msgstr "" #: build/locale/src/customers/components/CustomerList/CustomerList.json msgctxt "description" msgid "No. of Orders" -msgstr "" +msgstr "Tellimuste arv" #. [src.categories.components.CategoryList.2527742754] - number of products #. defaultMessage is: @@ -4853,7 +4965,7 @@ msgstr "" #: build/locale/src/categories/components/CategoryList/CategoryList.json msgctxt "number of products" msgid "No. of Products" -msgstr "" +msgstr "Toodete arv" #. [src.collections.components.CollectionList.2527742754] #. defaultMessage is: @@ -4861,7 +4973,7 @@ msgstr "" #: build/locale/src/collections/components/CollectionList/CollectionList.json msgctxt "description" msgid "No. of Products" -msgstr "" +msgstr "Toodete arv" #. [src.components.SingleAutocompleteSelectField.3069107721] #. defaultMessage is: @@ -4886,7 +4998,7 @@ msgstr "" #: build/locale/src/pages/components/PageList/PageList.json msgctxt "page status" msgid "Not Published" -msgstr "" +msgstr "Ei ole avaldatud" #. [src.categories.components.CategoryProductList.2341910657] - product #. defaultMessage is: @@ -4937,7 +5049,7 @@ msgstr "Ei ole avaldatud" #: build/locale/src/orders/components/OrderCustomer/OrderCustomer.json msgctxt "customer is not set in draft order" msgid "Not set" -msgstr "" +msgstr "Määramata" #. [orderCustomerShippingAddressNotSet] - shipping address is not set in draft #. order @@ -4946,7 +5058,7 @@ msgstr "" #: build/locale/src/orders/components/OrderCustomer/OrderCustomer.json msgctxt "shipping address is not set in draft order" msgid "Not set" -msgstr "" +msgstr "Määramata" #. [orderCustomerBillingAddressNotSet] - no address is set in draft order #. defaultMessage is: @@ -4954,7 +5066,7 @@ msgstr "" #: build/locale/src/orders/components/OrderCustomer/OrderCustomer.json msgctxt "no address is set in draft order" msgid "Not set" -msgstr "" +msgstr "Määramata" #. [src.customers.components.CustomerCreateNote.577013340] - note about #. customer @@ -5022,7 +5134,7 @@ msgstr "" #: build/locale/src/components/NotFoundPage/NotFoundPage.json msgctxt "description" msgid "Ooops!..." -msgstr "" +msgstr "Ups!.." #. [src.optionalField] - field is optional #. defaultMessage is: @@ -5034,7 +5146,7 @@ msgstr "" #: build/locale/src/products/components/ProductImagePage/ProductImagePage.json msgctxt "field is optional" msgid "Optional" -msgstr "" +msgstr "Valikuline" #. [productVariantPriceOptionalPriceOverrideField] - optional field #. defaultMessage is: @@ -5046,7 +5158,7 @@ msgstr "" #: build/locale/src/products/components/ProductVariantPrice/ProductVariantPrice.json msgctxt "optional field" msgid "Optional" -msgstr "" +msgstr "Valikuline" #. [src.home.components.HomeActivityCard.paid] #. defaultMessage is: @@ -5078,7 +5190,7 @@ msgstr "" #: build/locale/src/orders/components/OrderDraftDetails/OrderDraftDetails.json msgctxt "section header" msgid "Order Details" -msgstr "" +msgstr "Tellimuse Detailid" #. [src.orders.components.OrderHistory.3990160018] #. defaultMessage is: @@ -5086,6 +5198,14 @@ msgstr "" #: build/locale/src/orders/components/OrderHistory/OrderHistory.json msgctxt "description" msgid "Order History" +msgstr "Tellimuse Ajalugu" + +#. [src.orders.components.OrderListFilter.2222765704] +#. defaultMessage is: +#. Order Status +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +msgctxt "description" +msgid "Order Status" msgstr "" #. [src.orders.components.OrderHistory.1230178536] - order history message @@ -5104,13 +5224,13 @@ msgctxt "order history message" msgid "Order confirmation was sent to customer" msgstr "" -#. [src.orders.views.1872939752] +#. [src.orders.views.OrderDraftList.1872939752] #. defaultMessage is: #. Order draft succesfully created #. [src.orders.views.OrderList.1872939752] #. defaultMessage is: #. Order draft succesfully created -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json #: build/locale/src/orders/views/OrderList/OrderList.json msgctxt "description" msgid "Order draft succesfully created" @@ -5218,7 +5338,7 @@ msgstr "Tellimused" #: build/locale/src/orders/views/OrderList/OrderList.json msgctxt "description" msgid "Orders cancelled" -msgstr "" +msgstr "Tühistatud tellimused" #. [src.products.components.ProductCategoryAndCollectionsForm.3829816432] - #. product organization, header @@ -5227,7 +5347,7 @@ msgstr "" #: build/locale/src/products/components/ProductCategoryAndCollectionsForm/ProductCategoryAndCollectionsForm.json msgctxt "product organization, header" msgid "Organization" -msgstr "" +msgstr "Organisatsioon" #. [src.products.components.ProductOrganization.2364184433] - section header #. defaultMessage is: @@ -5324,7 +5444,7 @@ msgstr "" #: build/locale/src/misc.json msgctxt "order status" msgid "Partially fulfilled" -msgstr "Pooleldi täidetud" +msgstr "Osaliselt täidetud" #. [src.partiallyPaid] - payment status #. defaultMessage is: @@ -5332,7 +5452,7 @@ msgstr "Pooleldi täidetud" #: build/locale/src/misc.json msgctxt "payment status" msgid "Partially paid" -msgstr "" +msgstr "Osaliselt makstud" #. [src.partiallyRefunded] - payment status #. defaultMessage is: @@ -5368,7 +5488,7 @@ msgstr "Parool" #: build/locale/src/auth/components/NewPasswordPage/NewPasswordPage.json msgctxt "description" msgid "Passwords do not match" -msgstr "" +msgstr "Paroolid ei klapi" #. [src.orders.components.OrderList.2743232155] - payment status #. defaultMessage is: @@ -5392,7 +5512,7 @@ msgstr "" #: build/locale/src/orders/components/OrderHistory/OrderHistory.json msgctxt "order history message" msgid "Payment failed" -msgstr "" +msgstr "Makse ebaõnnestus" #. [src.orders.views.OrderDetails.557535634] #. defaultMessage is: @@ -5456,7 +5576,7 @@ msgstr "" #: build/locale/src/discounts/components/VoucherTypes/VoucherTypes.json msgctxt "voucher discount type" msgid "Percentage" -msgstr "" +msgstr "Protsent" #. [src.staff.components.StaffAddMemberDialog.2690176844] #. defaultMessage is: @@ -5492,7 +5612,7 @@ msgstr "" #: build/locale/src/siteSettings/components/SiteSettingsAddress/SiteSettingsAddress.json msgctxt "description" msgid "Phone" -msgstr "" +msgstr "Telefoninumber" #. [src.products.components.ProductImagePage.3822382625] - section header #. defaultMessage is: @@ -5508,7 +5628,7 @@ msgstr "" #: build/locale/src/products/components/ProductImagePage/ProductImagePage.json msgctxt "section header" msgid "Photo View" -msgstr "" +msgstr "Foto vaade" #. [src.productTypes.components.ProductTypeList.966610541] - product type #. defaultMessage is: @@ -5516,7 +5636,7 @@ msgstr "" #: build/locale/src/productTypes/components/ProductTypeList/ProductTypeList.json msgctxt "product type" msgid "Physical" -msgstr "" +msgstr "Füüsiline" #. [src.auth.components.NewPasswordPage.1915811227] #. defaultMessage is: @@ -5674,7 +5794,7 @@ msgstr "" #: build/locale/src/products/views/ProductList/filters.json msgctxt "filter by price" msgid "Price from {price}" -msgstr "" +msgstr "Hind alates {price}" #. [src.products.views.ProductList.priceIs] - filter by price #. defaultMessage is: @@ -5682,7 +5802,7 @@ msgstr "" #: build/locale/src/products/views/ProductList/filters.json msgctxt "filter by price" msgid "Price is {price}" -msgstr "" +msgstr "Hind {price}" #. [src.products.views.ProductList.priceTo] - filter by price #. defaultMessage is: @@ -5690,7 +5810,7 @@ msgstr "" #: build/locale/src/products/views/ProductList/filters.json msgctxt "filter by price" msgid "Price to {price}" -msgstr "" +msgstr "Hind {price}" #. [src.discounts.components.SalePricing.1099355007] - sale pricing, header #. defaultMessage is: @@ -5775,6 +5895,14 @@ msgctxt "description" msgid "Product Name" msgstr "" +#. [src.configuration.3655543906] +#. defaultMessage is: +#. Product Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Product Settings" +msgstr "" + #. [src.discounts.components.DiscountProducts.4257289053] #. defaultMessage is: #. Product Type @@ -5933,12 +6061,12 @@ msgctxt "order history message" msgid "Products were added to draft order" msgstr "" -#. [src.orders.components.OrderHistory.2574162126] - order history message +#. [src.orders.components.OrderHistory.4067959693] - order history message #. defaultMessage is: -#. Products were removed from draft order +#. Products were deleted from draft order #: build/locale/src/orders/components/OrderHistory/OrderHistory.json msgctxt "order history message" -msgid "Products were removed from draft order" +msgid "Products were deleted from draft order" msgstr "" #. [src.properties] @@ -5965,10 +6093,10 @@ msgctxt "description" msgid "Provided email address does not exist in our database." msgstr "" -#. [src.collections.views.1547167026] - publish collections +#. [src.collections.views.CollectionList.1547167026] - publish collections #. defaultMessage is: #. Publish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "publish collections" msgid "Publish" msgstr "Avalda" @@ -6005,10 +6133,10 @@ msgctxt "dialog header" msgid "Publish Products" msgstr "" -#. [src.collections.views.2823425739] - dialog title +#. [src.collections.views.CollectionList.2823425739] - dialog title #. defaultMessage is: #. Publish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Publish collections" msgstr "" @@ -6182,6 +6310,18 @@ msgctxt "shipping method price" msgid "Rate Price" msgstr "" +#. [src.orders.components.OrderListFilter.2415661583] - order status +#. defaultMessage is: +#. Ready to Capture +#. [src.orders.views.OrderList.readyToCapture] - order status +#. defaultMessage is: +#. Ready to Capture +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +#: build/locale/src/orders/views/OrderList/filters.json +msgctxt "order status" +msgid "Ready to Capture" +msgstr "" + #. [src.customers.components.CustomerOrders.3878642352] - section header #. defaultMessage is: #. Recent orders @@ -6230,22 +6370,14 @@ msgctxt "switch button" msgid "Release all stock allocated to this order" msgstr "" -#. [src.auth.components.LoginPage.3182284913] - login -#. defaultMessage is: -#. Remember me -#: build/locale/src/auth/components/LoginPage/LoginPage.json -msgctxt "login" -msgid "Remember me" -msgstr "" - #. [src.categories.views.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. -#. [src.categories.views.3488150607] +#. [src.categories.views.CategoryList.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "description" msgid "Remember this will also delete all products assigned to this category." msgstr "" @@ -6258,39 +6390,6 @@ msgctxt "button" msgid "Remove" msgstr "Eemalda" -#. [src.products.views.490753666] - dialog header -#. defaultMessage is: -#. Remove Image -#: build/locale/src/products/views/ProductImage.json -msgctxt "dialog header" -msgid "Remove Image" -msgstr "" - -#. [src.orders.components.OrderDraftCancelDialog.500287069] - dialog header -#. defaultMessage is: -#. Remove draft order -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "dialog header" -msgid "Remove draft order" -msgstr "Eemalda tellimuse mustand" - -#. [src.shipping.views.ShippingZoneDetails.254167659] - unassign country, -#. dialog header -#. defaultMessage is: -#. Remove from shipping zone -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country, dialog header" -msgid "Remove from shipping zone" -msgstr "" - -#. [src.orders.views.3880993240] -#. defaultMessage is: -#. Removed draft orders -#: build/locale/src/orders/views/OrderDraftList.json -msgctxt "description" -msgid "Removed draft orders" -msgstr "" - #. [src.pages.views.1457312643] #. defaultMessage is: #. Removed page @@ -6353,7 +6452,7 @@ msgstr "" #: build/locale/src/misc.json msgctxt "tax rate" msgid "Restaurants" -msgstr "" +msgstr "Restoranid" #. [src.orders.components.OrderFulfillmentCancelDialog.3515223857] - switch #. button @@ -6456,6 +6555,18 @@ msgctxt "button" msgid "Save" msgstr "Salvesta" +#. [src.components.Filter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#. [src.components.TableFilter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#: build/locale/src/components/Filter/FilterSearch.json +#: build/locale/src/components/TableFilter/FilterChips.json +msgctxt "button" +msgid "Save Custom Search" +msgstr "" + #. [src.components.SaveFilterTabDialog.1514415736] - save filter tab, header #. defaultMessage is: #. Save Custom Search @@ -6464,14 +6575,6 @@ msgctxt "save filter tab, header" msgid "Save Custom Search" msgstr "" -#. [src.components.TableFilter.1514415736] - button -#. defaultMessage is: -#. Save Custom Search -#: build/locale/src/components/TableFilter/FilterChips.json -msgctxt "button" -msgid "Save Custom Search" -msgstr "" - #. [src.products.components.ProductVariantCreatePage.2853608829] - button #. defaultMessage is: #. Save variant @@ -6488,6 +6591,14 @@ msgctxt "description" msgid "Saved changes" msgstr "" +#. [src.attributes.components.AttributeListPage.3916653510] +#. defaultMessage is: +#. Search Attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "description" +msgid "Search Attribute" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.902296540] #. defaultMessage is: #. Search Attributes @@ -6504,10 +6615,30 @@ msgctxt "description" msgid "Search Categories" msgstr "" +#. [src.categories.components.CategoryListPage.3841025483] +#. defaultMessage is: +#. Search Category +#. [src.translations.components.TranslationsEntitiesListPage.3841025483] +#. defaultMessage is: +#. Search Category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Category" +msgstr "" + +#. [src.collections.components.CollectionListPage.4057224233] +#. defaultMessage is: +#. Search Collection #. [src.components.AssignCollectionDialog.4057224233] #. defaultMessage is: #. Search Collection +#. [src.translations.components.TranslationsEntitiesListPage.4057224233] +#. defaultMessage is: +#. Search Collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json #: build/locale/src/components/AssignCollectionDialog/AssignCollectionDialog.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json msgctxt "description" msgid "Search Collection" msgstr "" @@ -6518,6 +6649,14 @@ msgstr "" #: build/locale/src/shipping/components/ShippingZoneCountriesAssignDialog/ShippingZoneCountriesAssignDialog.json msgctxt "description" msgid "Search Countries" +msgstr "Otsi Riike" + +#. [src.customers.components.CustomerListPage.1643417013] +#. defaultMessage is: +#. Search Customer +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "description" +msgid "Search Customer" msgstr "" #. [src.orders.components.OrderCustomer.2433460203] @@ -6526,6 +6665,14 @@ msgstr "" #: build/locale/src/orders/components/OrderCustomer/OrderCustomer.json msgctxt "description" msgid "Search Customers" +msgstr "Otsi Kasutajaid" + +#. [src.orders.components.OrderDraftListPage.77765281] +#. defaultMessage is: +#. Search Draft +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "description" +msgid "Search Draft" msgstr "" #. [src.translations.components.TranslationsCategoriesPage.1406947243] @@ -6590,7 +6737,7 @@ msgstr "" #: build/locale/src/translations/components/TranslationsProductsPage/TranslationsProductsPage.json msgctxt "description" msgid "Search Engine Title" -msgstr "" +msgstr "Otsingumootori pealkiri" #. [src.components.SaveFilterTabDialog.1556856943] - save search tab #. defaultMessage is: @@ -6598,7 +6745,7 @@ msgstr "" #: build/locale/src/components/SaveFilterTabDialog/SaveFilterTabDialog.json msgctxt "save search tab" msgid "Search Name" -msgstr "" +msgstr "Otsi Nimi" #. [src.orders.components.OrderListPage.355376157] #. defaultMessage is: @@ -6606,6 +6753,34 @@ msgstr "" #: build/locale/src/orders/components/OrderListPage/OrderListPage.json msgctxt "description" msgid "Search Orders..." +msgstr "Otsi tellimusi..." + +#. [src.translations.components.TranslationsEntitiesListPage.2559018090] +#. defaultMessage is: +#. Search Page +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Page" +msgstr "" + +#. [src.translations.components.TranslationsEntitiesListPage.2105464697] +#. defaultMessage is: +#. Search Product +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product" +msgstr "" + +#. [src.productTypes.components.ProductTypeListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#. [src.translations.components.TranslationsEntitiesListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product Type" msgstr "" #. [src.components.AssignProductDialog.2850255786] @@ -6618,14 +6793,46 @@ msgstr "" #: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json msgctxt "description" msgid "Search Products" -msgstr "" +msgstr "Otsi tooteid" -#. [src.products.components.ProductListPage.3550330425] +#. [src.products.components.ProductListFilter.3550330425] #. defaultMessage is: #. Search Products... -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Search Products..." +msgstr "Otsi tooteid" + +#. [src.discounts.components.SaleListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#. [src.translations.components.TranslationsEntitiesListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Sale" +msgstr "" + +#. [src.staff.components.StaffListPage.61043583] +#. defaultMessage is: +#. Search Staff Member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "description" +msgid "Search Staff Member" +msgstr "" + +#. [src.discounts.components.VoucherListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#. [src.translations.components.TranslationsEntitiesListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Voucher" msgstr "" #. [src.productTypes.components.AssignAttributeDialog.524117994] @@ -6659,7 +6866,7 @@ msgstr "" #: build/locale/src/discounts/components/DiscountCountrySelectDialog/DiscountCountrySelectDialog.json msgctxt "search box placeholder" msgid "Search by country name" -msgstr "" +msgstr "Otsi riigi nime järgi" #. [src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881] #. defaultMessage is: @@ -6667,7 +6874,7 @@ msgstr "" #: build/locale/src/shipping/components/ShippingZoneCountriesAssignDialog/ShippingZoneCountriesAssignDialog.json msgctxt "description" msgid "Search by country name" -msgstr "" +msgstr "Otsi riigi nime järgi" #. [src.components.AssignProductDialog.2336947364] #. defaultMessage is: @@ -6687,7 +6894,7 @@ msgstr "" #: build/locale/src/components/SeoForm/SeoForm.json msgctxt "description" msgid "Search engine description" -msgstr "" +msgstr "Otsingumootori kirjeldus" #. [src.components.SeoForm.1324250412] #. defaultMessage is: @@ -6695,7 +6902,7 @@ msgstr "" #: build/locale/src/components/SeoForm/SeoForm.json msgctxt "description" msgid "Search engine title" -msgstr "" +msgstr "Otsingumootori pealkiri" #. [src.attributes.components.AttributeList.2235596452] - attribute can be #. searched in dashboard @@ -6704,7 +6911,7 @@ msgstr "" #: build/locale/src/attributes/components/AttributeList/AttributeList.json msgctxt "attribute can be searched in dashboard" msgid "Searchable" -msgstr "" +msgstr "Otsitav" #. [src.components.Filter.2230339185] #. defaultMessage is: @@ -6734,10 +6941,10 @@ msgctxt "description" msgid "Select all orders where:" msgstr "" -#. [src.products.components.ProductListPage.1421689426] +#. [src.products.components.ProductListFilter.1421689426] #. defaultMessage is: #. Select all products where: -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Select all products where:" msgstr "" @@ -6823,6 +7030,14 @@ msgctxt "description" msgid "Set plugin as Active" msgstr "" +#. [src.components.VisibilityCard.292404896] +#. defaultMessage is: +#. Set publication date +#: build/locale/src/components/VisibilityCard/VisibilityCard.json +msgctxt "description" +msgid "Set publication date" +msgstr "" + #. [src.discounts.shipment] - voucher discount #. defaultMessage is: #. Shipment @@ -7088,6 +7303,14 @@ msgctxt "staff section name" msgid "Staff Members" msgstr "" +#. [src.configuration.3140151600] +#. defaultMessage is: +#. Staff Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Staff Settings" +msgstr "" + #. [src.standard] - tax rate #. defaultMessage is: #. Standard @@ -7347,7 +7570,7 @@ msgstr "Kokkuvõte" #: build/locale/src/productTypes/components/ProductTypeList/ProductTypeList.json msgctxt "tax rate for a product type" msgid "Tax" -msgstr "" +msgstr "Maksud" #. [src.taxes.components.CountryTaxesPage.2022558114] #. defaultMessage is: @@ -7355,7 +7578,7 @@ msgstr "" #: build/locale/src/taxes/components/CountryTaxesPage/CountryTaxesPage.json msgctxt "description" msgid "Tax Rate" -msgstr "" +msgstr "Maksu määr" #. [src.taxes.components.CountryTaxesPage.2737618795] - header #. defaultMessage is: @@ -7363,7 +7586,7 @@ msgstr "" #: build/locale/src/taxes/components/CountryTaxesPage/CountryTaxesPage.json msgctxt "header" msgid "Tax Rates in {countryName}" -msgstr "" +msgstr "Maksumäär {countryName}s" #. [src.taxes] - taxes section name #. defaultMessage is: @@ -7502,7 +7725,7 @@ msgstr "" #: build/locale/src/customers/components/CustomerAddresses/CustomerAddresses.json msgctxt "description" msgid "This customer has no addresses yet" -msgstr "" +msgstr "Sellel kliendil ei ole aadresse veel" #. [src.shipping.components.ShippingZoneCreatePage.4270729636] #. defaultMessage is: @@ -7585,7 +7808,7 @@ msgstr "" #: build/locale/src/discounts/components/SalePricing/SalePricing.json msgctxt "time during which sale is active" msgid "Time Frame" -msgstr "" +msgstr "Ajavahemik" #. [src.pages.components.PageInfo.1124600214] - page title #. defaultMessage is: @@ -7688,7 +7911,7 @@ msgstr "Kokku" #: build/locale/src/orders/components/OrderFulfillment/OrderFulfillment.json msgctxt "description" msgid "Tracking Number: {trackingNumber}" -msgstr "" +msgstr "Jälgimisnumber: {trackingNumber}" #. [src.orders.components.OrderFulfillmentDialog.3252172269] - fulfillment #. group @@ -7714,7 +7937,7 @@ msgstr "Jälgimisnumber" #: build/locale/src/translations/components/TranslationFields/TranslationFields.json msgctxt "Translated Name" msgid "Translation" -msgstr "" +msgstr "Tõlge" #. [src.translations.components.TranslationFields.2481190613] #. defaultMessage is: @@ -7730,7 +7953,7 @@ msgstr "" #: build/locale/src/translations/components/TranslationFields/TranslationFieldsShort.json msgctxt "description" msgid "Translation" -msgstr "" +msgstr "Tõlge" #. [src.translations.components.TranslationsCategoriesPage.2043581404] #. defaultMessage is: @@ -7796,7 +8019,7 @@ msgstr "" #: build/locale/src/intl.json msgctxt "translations section name" msgid "Translations" -msgstr "" +msgstr "Tõlked" #. [src.translations.components.TranslationsEntitiesListPage.2460580333] - #. header @@ -7867,7 +8090,7 @@ msgstr "URL" #: build/locale/src/components/RichTextEditor/LinkSource.json msgctxt "description" msgid "URL Linked" -msgstr "" +msgstr "Lingitud URL" #. [src.siteSettings.components.SiteSettingsDetails.3808773492] #. defaultMessage is: @@ -7875,7 +8098,7 @@ msgstr "" #: build/locale/src/siteSettings/components/SiteSettingsDetails/SiteSettingsDetails.json msgctxt "description" msgid "URL of your online store" -msgstr "" +msgstr "Sinu online poe URL" #. [src.collections.views.870815507] - unassign product from collection, #. button @@ -7884,7 +8107,7 @@ msgstr "" #: build/locale/src/collections/views/CollectionDetails.json msgctxt "unassign product from collection, button" msgid "Unassign" -msgstr "" +msgstr "Eemalda" #. [saleDetailsUnassignCategory] - unassign category from sale, button #. defaultMessage is: @@ -7892,7 +8115,7 @@ msgstr "" #: build/locale/src/discounts/views/SaleDetails.json msgctxt "unassign category from sale, button" msgid "Unassign" -msgstr "" +msgstr "Eemalda" #. [saleDetailsUnassignCollection] - unassign collection from sale, button #. defaultMessage is: @@ -7900,7 +8123,7 @@ msgstr "" #: build/locale/src/discounts/views/SaleDetails.json msgctxt "unassign collection from sale, button" msgid "Unassign" -msgstr "" +msgstr "Eemalda" #. [saleDetailsUnassignProduct] - unassign product from sale, button #. defaultMessage is: @@ -7908,7 +8131,7 @@ msgstr "" #: build/locale/src/discounts/views/SaleDetails.json msgctxt "unassign product from sale, button" msgid "Unassign" -msgstr "" +msgstr "Eemalda" #. [voucherDetailsUnassignCategory] - unassign category from voucher, button #. defaultMessage is: @@ -7916,7 +8139,7 @@ msgstr "" #: build/locale/src/discounts/views/VoucherDetails.json msgctxt "unassign category from voucher, button" msgid "Unassign" -msgstr "" +msgstr "Eemalda" #. [voucherDetailsUnassignCollection] - unassign collection from voucher, #. button @@ -7925,7 +8148,7 @@ msgstr "" #: build/locale/src/discounts/views/VoucherDetails.json msgctxt "unassign collection from voucher, button" msgid "Unassign" -msgstr "" +msgstr "Eemalda" #. [voucherDetailsUnassignProduct] - unassign product from voucher, button #. defaultMessage is: @@ -7933,7 +8156,7 @@ msgstr "" #: build/locale/src/discounts/views/VoucherDetails.json msgctxt "unassign product from voucher, button" msgid "Unassign" -msgstr "" +msgstr "Eemalda" #. [src.productTypes.views.ProductTypeUpdate.870815507] - unassign attribute #. from product type, button @@ -7942,7 +8165,7 @@ msgstr "" #: build/locale/src/productTypes/views/ProductTypeUpdate/index.json msgctxt "unassign attribute from product type, button" msgid "Unassign" -msgstr "" +msgstr "Eemalda" #. [src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501] #. - dialog header @@ -8025,7 +8248,7 @@ msgstr "" #: build/locale/src/products/components/ProductVariants/ProductVariants.json msgctxt "product variant status" msgid "Unavailable" -msgstr "" +msgstr "Ei ole saadaval" #. [src.undo] - button #. defaultMessage is: @@ -8033,7 +8256,7 @@ msgstr "" #: build/locale/src/intl.json msgctxt "button" msgid "Undo" -msgstr "" +msgstr "Tühista" #. [src.unfulfilled] - order status #. defaultMessage is: @@ -8062,7 +8285,7 @@ msgstr "Täitmata" #: build/locale/src/orders/components/OrderUnfulfilledItems/OrderUnfulfilledItems.json msgctxt "section header" msgid "Unfulfilled ({quantity})" -msgstr "" +msgstr "Täitmata ({quantity})" #. [src.unpaid] - payment status #. defaultMessage is: @@ -8070,12 +8293,12 @@ msgstr "" #: build/locale/src/misc.json msgctxt "payment status" msgid "Unpaid" -msgstr "" +msgstr "Maksmata" -#. [src.collections.views.2237014112] - unpublish collections +#. [src.collections.views.CollectionList.2237014112] - unpublish collections #. defaultMessage is: #. Unpublish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "unpublish collections" msgid "Unpublish" msgstr "Kustuta" @@ -8112,10 +8335,10 @@ msgctxt "dialog header" msgid "Unpublish Products" msgstr "" -#. [src.collections.views.2637364047] - dialog title +#. [src.collections.views.CollectionList.2637364047] - dialog title #. defaultMessage is: #. Unpublish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Unpublish collections" msgstr "" @@ -8142,7 +8365,7 @@ msgstr "" #: build/locale/src/components/FileUpload/FileUpload.json msgctxt "upload file, button" msgid "Upload" -msgstr "" +msgstr "Lae üles" #. [src.uploadImage] - button #. defaultMessage is: @@ -8226,7 +8449,7 @@ msgstr "" #: build/locale/src/customers/components/CustomerDetails/CustomerDetails.json msgctxt "check to mark this account as active" msgid "User account active" -msgstr "" +msgstr "Kasutajakonto on aktiivne" #. [src.staff.components.StaffAddMemberDialog.1570990296] #. defaultMessage is: @@ -8234,7 +8457,7 @@ msgstr "" #: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json msgctxt "description" msgid "User has full access" -msgstr "" +msgstr "Kasutajal on täielik ligipääs" #. [src.staff.components.StaffPermissions.1848599267] - checkbox label #. defaultMessage is: @@ -8242,7 +8465,7 @@ msgstr "" #: build/locale/src/staff/components/StaffPermissions/StaffPermissions.json msgctxt "checkbox label" msgid "User has full access to the store" -msgstr "" +msgstr "Kasutajal on täielik ligipääs poele" #. [src.staff.components.StaffStatus.881953347] - checkbox label #. defaultMessage is: @@ -8258,7 +8481,7 @@ msgstr "Kasutaja on aktiivne" #: build/locale/src/discounts/components/VoucherList/VoucherList.json msgctxt "voucher uses" msgid "Uses" -msgstr "" +msgstr "Kasutuste arv" #. [src.orders.components.OrderPayment.1817306106] - vat included in order #. price @@ -8267,7 +8490,7 @@ msgstr "" #: build/locale/src/orders/components/OrderPayment/OrderPayment.json msgctxt "vat included in order price" msgid "VAT included" -msgstr "" +msgstr "Käibemaksuga" #. [src.discounts.components.SaleList.1148029984] - sale value #. defaultMessage is: @@ -8462,7 +8685,7 @@ msgstr "Nähtavus" #: build/locale/src/attributes/components/AttributeList/AttributeList.json msgctxt "attribute is visible" msgid "Visible" -msgstr "" +msgstr "Nähtav" #. [src.components.VisibilityCard.643174786] #. defaultMessage is: @@ -8470,7 +8693,7 @@ msgstr "" #: build/locale/src/components/VisibilityCard/VisibilityCard.json msgctxt "description" msgid "Visible" -msgstr "" +msgstr "Nähtav" #. [src.products.components.ProductListFilter.643174786] - product is visible #. defaultMessage is: @@ -8478,7 +8701,7 @@ msgstr "" #: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "product is visible" msgid "Visible" -msgstr "" +msgstr "Nähtav" #. [src.attributes.components.AttributeProperties.3876764312] - attribute #. defaultMessage is: @@ -8502,7 +8725,7 @@ msgstr "Tühistamine" #: build/locale/src/orders/components/OrderPaymentVoidDialog/OrderPaymentVoidDialog.json msgctxt "dialog header" msgid "Void Payment" -msgstr "" +msgstr "Tühine makse" #. [src.translations.components.TranslationsVouchersPage.2599922713] #. defaultMessage is: @@ -8550,7 +8773,7 @@ msgstr "Vautšerid" #: build/locale/src/misc.json msgctxt "tax rate" msgid "Water" -msgstr "" +msgstr "Vesi" #. [src.components.ErrorPage.3182212440] #. defaultMessage is: @@ -8584,7 +8807,7 @@ msgstr "" #: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json msgctxt "shipping method weight range" msgid "Weight Range" -msgstr "" +msgstr "Kaaluvahemik" #. [src.shipping.components.ShippingZoneRateDialog.2324036635] - order weight #. range @@ -8593,7 +8816,7 @@ msgstr "" #: build/locale/src/shipping/components/ShippingZoneRateDialog/ShippingZoneRateDialog.json msgctxt "order weight range" msgid "Weight range" -msgstr "" +msgstr "Kaaluvahemik" #. [src.yes] #. defaultMessage is: @@ -8613,6 +8836,22 @@ msgstr "Jah" #: build/locale/src/siteSettings/components/SiteSettingsAddress/SiteSettingsAddress.json msgctxt "description" msgid "ZIP / Postal code" +msgstr "Sihtnumber" + +#. [src.productTypes.components.ProductTypeListPage.3479705616] - button +#. defaultMessage is: +#. create product type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "button" +msgid "create product type" +msgstr "" + +#. [src.staff.views.1308770978] - dialog header +#. defaultMessage is: +#. delete Staff User +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "dialog header" +msgid "delete Staff User" msgstr "" #. [orderPaymentVATDoesNotApply] - vat not included in order price @@ -8688,19 +8927,35 @@ msgctxt "product status is set as" msgid "is set as" msgstr "" -#. [src.staff.views.2240444792] - dialog header -#. defaultMessage is: -#. remove Staff User -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "dialog header" -msgid "remove Staff User" -msgstr "" - -#. [src.components.VisibilityCard.1815688500] +#. [src.collections.components.CollectionCreatePage.1815688500] - collection #. defaultMessage is: #. since {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.1815688500] - collection +#. defaultMessage is: +#. since {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "since {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.1815688500] - page +#. defaultMessage is: +#. since {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "since {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#. [src.products.components.ProductUpdatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "since {date}" msgstr "" @@ -8728,11 +8983,35 @@ msgctxt "weight" msgid "to {value} {unit}" msgstr "" -#. [src.components.VisibilityCard.2001551496] +#. [src.collections.components.CollectionCreatePage.2001551496] - collection #. defaultMessage is: #. will be visible from {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.2001551496] - collection +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "will be visible from {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.2001551496] - page +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "will be visible from {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#. [src.products.components.ProductUpdatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "will be visible from {date}" msgstr "" diff --git a/locale/fa.json b/locale/fa.json index 4cf403c61..da8d652ef 100644 --- a/locale/fa.json +++ b/locale/fa.json @@ -1 +1 @@ -{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"کرکره‌ای","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.350498821":"افزودن ویژگی","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.2519239682":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"نام","src.categories.components.CategoryProducts.636461959":"نام","src.collections.components.CollectionProducts.636461959":"نام","src.products.components.ProductDetailsForm.636461959":"نام","src.collections.components.CollectionDetails.636461959":"نام","src.components.ProductList.636461959":"نام","src.discounts.components.SaleInfo.636461959":"نام","src.discounts.components.SaleList.636461959":"نام","src.discounts.components.SaleSummary.636461959":"نام","menuItemDialogNameLabel":"نام","src.products.components.ProductVariants.636461959":"نام","src.shipping.components.ShippingZoneRates.636461959":"نام","src.shipping.components.ShippingZonesList.636461959":"نام","src.staff.components.StaffList.636461959":"نام","src.translations.components.TranslationsEntitiesList.636461959":"نام","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.254756045":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.3182284913":"","src.auth.components.LoginPage.109182747":"ورود","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"","src.categories.views.2004894945":"","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.3229914152":"","src.categories.components.CategoryList.435697837":"","src.categories.components.CategoryList.2159874182":"زیردسته ها","src.categories.components.CategoryUpdatePage.2159874182":"زیردسته ها","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.228151782":"افزودن دسته بندی","src.categories.components.CategoryProducts.2968663655":"محصولات","src.categories.components.CategoryUpdatePage.2968663655":"محصولات","src.discounts.components.DiscountCategories.2968663655":"محصولات","src.discounts.components.DiscountCollections.2968663655":"محصولات","src.products":"محصولات","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryProducts.3554578821":"اضافه کردن محصول","src.categories.components.CategoryProductsCard.3554578821":"اضافه کردن محصول","src.categories.components.CategoryProducts.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProducts.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.categories.components.CategoryProductsCard.4164156574":"","src.categories.views.1754466114":"","src.categories.views.1140231710":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.712767046":"","src.categories.views.299584400":"","src.categories.views.844574071":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.collections.components.CollectionCreatePage.3958681866":"افزودن مجموعه","src.collections.components.CollectionListPage.3958681866":"افزودن مجموعه","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"دسترسی","src.availability":"","src.collections.components.CollectionList.3640454975":"منتشر شده","src.collections.components.CollectionProducts.3640454975":"منتشر شده","src.discounts.components.DiscountProducts.3640454975":"منتشر شده","src.components.ProductList.3640454975":"منتشر شده","src.products.components.ProductListPage.3640454975":"منتشر شده","src.pages.components.PageList.3640454975":"منتشر شده","src.products.views.ProductList.published":"منتشر شده","src.collections.components.CollectionList.2341910657":"منتشر نشده است","src.collections.components.CollectionProducts.2341910657":"منتشر نشده است","src.discounts.components.DiscountProducts.2341910657":"منتشر نشده است","src.components.ProductList.2341910657":"منتشر نشده است","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.686910896":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"","src.collections.views.2402899582":"","src.collections.views.2237014112":"منتشر نشده","src.pages.views.2237014112":"منتشر نشده","src.products.views.ProductList.2237014112":"منتشر نشده","src.collections.views.1547167026":"انتشار","src.pages.views.1547167026":"انتشار","src.products.views.ProductList.1547167026":"انتشار","src.collections.views.2823425739":"","src.collections.views.1348793822":"","src.collections.views.2637364047":"","src.collections.views.3944356444":"","src.collections.views.3817188998":"","src.collections.views.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"خروج","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.4057224233":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"","src.components.ErrorMessageCard.2845142593":"","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.FilterBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"اضافه کردن","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.ProductList.1134347598":"قیمت","src.orders.components.OrderDraftDetailsProducts.1134347598":"قیمت","src.orders.components.OrderFulfillment.1134347598":"قیمت","src.products.components.ProductListPage.1134347598":"قیمت","src.products.components.ProductPricing.1134347598":"قیمت","src.orders.components.OrderUnfulfilledItems.1134347598":"قیمت","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"قیمت","src.shipping.components.ShippingZoneRates.1134347598":"قیمت","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"قابل مشاهده","src.pages.components.PageList.1459686496":"قابل مشاهده","src.products.components.ProductListFilter.1459686496":"قابل مشاهده","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"پنهان","src.products.views.ProductList.hidden":"پنهان","src.components.VisibilityCard.1815688500":"","src.components.VisibilityCard.2001551496":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","configurationMenuStaff":"","configurationMenuShipping":"","configurationMenuTaxes":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","src.customers.components.CustomerAddress.1320082647":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"آدرس فاکتور","src.customers.components.CustomerAddresses.3517722732":"آدرس ارسال","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"آدرس","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"یادداشت ها","src.orders.components.OrderCustomerNote.1520756907":"یادداشت ها","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"یادداشت","src.customers.components.CustomerDetails.577013340":"یادداشت","src.customers.components.CustomerCreatePage.1934221653":"افزودن مشتری","src.customers.components.CustomerListPage.1934221653":"افزودن مشتری","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerOrders.3878642352":"سفارشات اخیر","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"تاریخ","src.orders.components.OrderDraftList.4205493358":"تاریخ","src.orders.components.OrderList.4205493358":"تاریخ","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"وضعیت","src.orders.components.OrderListFilter.1756106276":"وضعیت","src.products.components.ProductListFilter.1756106276":"وضعیت","src.products.components.ProductVariants.1756106276":"وضعیت","src.customers.components.CustomerOrders.878013594":"مجموع کل","src.orders.components.OrderDraftDetailsProducts.878013594":"مجموع کل","src.orders.components.OrderDraftDetailsSummary.878013594":"مجموع کل","src.orders.components.OrderDraftList.878013594":"مجموع کل","src.orders.components.OrderFulfillment.878013594":"مجموع کل","src.orders.components.OrderUnfulfilledItems.878013594":"مجموع کل","src.orders.components.OrderList.878013594":"مجموع کل","src.orders.components.OrderPayment.878013594":"مجموع کل","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.1946482599":"","src.customers.views.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"بها","src.discounts.components.SaleSummary.1148029984":"بها","src.discounts.components.VoucherList.1148029984":"بها","src.discounts.components.VoucherSummary.1148029984":"بها","src.discounts.components.VoucherValue.1148029984":"بها","src.products.components.ProductAttributes.1148029984":"بها","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.1742771332":"","src.discounts.components.SalePricing.1099355007":"قیمت دهی","src.products.components.ProductPricing.1099355007":"قیمت دهی","src.products.components.ProductVariantPrice.1099355007":"قیمت دهی","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"کشورها","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"کد","src.discounts.components.VoucherSummary.78726751":"کد","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.1536809153":"افزودن کوپن","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"تمام سفارش","src.discounts.products":"محصولات خاص","src.discounts.shipment":"پست","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.2809303671":"","src.discounts.views.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.367317371":"","src.discounts.views.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"لغو","src.orders.views.OrderList.3528672691":"لغو","src.confirm":"","src.delete":"","src.edit":"ویرایش","src.manage":"","src.remove":"حذف","src.save":"ذخیره","src.show":"","src.undo":"","src.attributes":"ویژگی ها","src.products.components.ProductAttributes.4153345096":"ویژگی ها","src.categories":"دسته ها","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"مجموعه ها","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"تنظیمات","src.customers":"مشتری ها","src.draftOrders":"","src.home":"خانه","src.navigation":"جهت یابی","src.orders":"سفارش ها","src.pages":"صفحات","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"طرح تخفیف","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"مالیات","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"مالیات","src.taxes.components.CountryListPage.3955023266":"مالیات","src.translations":"","src.vouchers":"کد تخفیف ها","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"","src.partiallyPaid":"","src.partiallyRefunded":"قسمتی بازپرداخت شد","src.refunded":"بازپرداخت کامل","src.unpaid":"","src.cancelled":"","src.draft":"پیش‌نویس","src.fulfilled":"کامل شده","src.orders.views.OrderList.fulfilled":"کامل شده","src.orders.components.OrderListFilter.1712863026":"کامل شده","src.partiallyFulfilled":"نیمه کامل","src.unfulfilled":"غیرنهایی","src.orders.views.OrderList.unfulfilled":"غیرنهایی","src.orders.components.OrderListFilter.1751787272":"غیرنهایی","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","src.1395232177":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"پیوند","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"لغو سفارش","src.orders.components.OrderDetailsPage.1854613983":"لغو سفارش","src.orders.components.OrderDraftPage.1854613983":"لغو سفارش","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"مشتری","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"مشتری","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"همان آدرس ارسال","src.orders.components.OrderCustomerEditDialog.1411666943":"ویرایش مشخصات مشتری","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.500287069":"حذف سفارش پیش نویس شده","src.orders.components.OrderDraftCancelDialog.3199827590":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"کالا","src.orders.components.OrderUnfulfilledItems.1895667608":"کالا","src.orders.components.OrderDraftDetailsProducts.2796503714":"تعداد","src.orders.components.OrderFulfillment.2796503714":"تعداد","src.orders.components.OrderFulfillmentDialog.2796503714":"تعداد","src.orders.components.OrderUnfulfilledItems.2796503714":"تعداد","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"جمع کل","src.orders.components.OrderPayment.781550514":"جمع کل","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"ایجاد سفارش","src.orders.components.OrderListPage.2826235371":"ایجاد سفارش","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"افزودن پیگیری","src.orders.components.OrderFulfillmentCancelDialog.732594284":"لغو پردازش","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"لغو پردازش","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"واحد انبار داری","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"کد پیگیری","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.2574162126":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"هزینه سفارش بطور کامل پرداخت شده.","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"سفارش داده شد.","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"پرداخت","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2943502192":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"ارسال","src.productTypes.components.ProductTypeShipping.1325966144":"ارسال","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"ارسال","src.orders.components.OrderPayment.3768782744":"مقدار پیش پرداخت","src.orders.components.OrderPayment.2320183694":"مقدار ضبط شده","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"ضبط","src.orders.components.OrderPayment.2845258362":"بازپرداخت","src.orders.components.OrderPayment.2444197639":"انتخاب نشده","src.orders.components.OrderPayment.3500506678":"تایید پرداخت","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"مبلغ","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.2775402904":"","src.products.components.ProductListPage.2775402904":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"نهایی سازی","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.3880993240":"","src.orders.views.1161115149":"","src.orders.views.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.755314116":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"عنوان","src.pages.components.PageList.1124600214":"عنوان","src.pages.components.PageInfo.1116746286":"محتوی","src.translations.components.TranslationsPagesPage.1116746286":"محتوی","src.pages.components.PageList.3478065224":"Slug","src.pages.components.PageSlug.3478065224":"Slug","src.productTypes.components.ProductTypeAttributes.3478065224":"Slug","src.pages.components.PageList.3767550649":"هنوز منتشر نشده","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.1767905232":"افزودن صفحه","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.3785394515":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"مقدار ها","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"عکس ها","src.products.components.ProductVariantImages.3240888698":"عکس ها","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"","src.products.components.ProductVariantStock.3841616483":"","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListPage.821159718":"","src.products.components.ProductListPage.1421689426":"","src.products.components.ProductListPage.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"فهرست کالا","prodictStockInventoryLabel":"فهرست کالا","src.products.components.ProductVariantStock.3490038570":"فهرست کالا","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"","src.products.components.ProductVariants.2153006789":"","src.products.components.ProductVariantNavigation.2845381934":"افزودن نوع مشابه","src.products.components.ProductVariants.2845381934":"افزودن نوع مشابه","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1542417144":"","src.products.views.1591632382":"","src.products.views.490753666":"","src.products.views.672103788":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.1694086800":"","src.products.views.ProductList.224127438":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.products.views.2178905289":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1756957616":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.889729490":"اضافه کردن نوع محصول","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.4080551769":"","src.productTypes.views.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.352297149":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2474410767":"افزودن منطقه حمل و نقل","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.254167659":"","src.shipping.views.ShippingZoneDetails.1790261672":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"کلید","src.siteSettings.components.SiteSettingsKeys.2446088470":"کلید","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.3490059488":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"دسترسی ها","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.3247064221":"فعال","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.802625341":"افزودن به کارکنان","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"کاربر فعال است","src.staff.views.2240444792":"","src.staff.views.2728048444":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file +{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"آیا از حذف {counter,plural,one{this attribute} other{{displayQuantity} ویژگی‌ها}} اطمینان دارید؟","src.attributes.components.AttributeDeleteDialog.1889602489":"","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"کرکره‌ای","src.attributes.components.AttributeDetails.3334509011":"انتخاب چندگان","src.attributes.components.AttributeDetails.691600601":"برچسب پیش‌فرض","src.attributes.components.AttributeList.691600601":"برچسب پیش‌فرض","src.attributes.components.AttributeDetails.3605174225":"کد صفت","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"بها اجباری است","src.attributes.components.AttributeList.643174786":"قابل رویت","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"قابل رویت","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.3824684885":"","src.attributes.components.AttributeListPage.2417065806":"","src.attributes.components.AttributeListPage.3916653510":"","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"ویژگی‌های داشبورد","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.4048785456":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"افزودن بها","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"نام","src.categories.components.CategoryProductList.636461959":"نام","src.components.ProductList.636461959":"نام","src.products.components.ProductList.636461959":"نام","src.collections.components.CollectionDetails.636461959":"نام","src.collections.components.CollectionProducts.636461959":"نام","src.products.components.ProductDetailsForm.636461959":"نام","src.discounts.components.SaleInfo.636461959":"نام","src.discounts.components.SaleList.636461959":"نام","src.discounts.components.SaleSummary.636461959":"نام","menuItemDialogNameLabel":"نام","src.plugins.components.PluginsList.636461959":"نام","src.products.components.ProductVariants.636461959":"نام","src.shipping.components.ShippingZoneRates.636461959":"نام","src.shipping.components.ShippingZonesList.636461959":"نام","src.staff.components.StaffList.636461959":"نام","src.translations.components.TranslationsEntitiesList.636461959":"نام","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.351422234":"","src.attributes.components.AttributeValues.1565474525":"مدیر","src.attributes.components.AttributeValues.1397696159":"ظاهر پیش‌فرض فروشگاه","src.attributes.components.AttributeValues.2054206599":"هیچ مقداری یافت نشد","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"متغیر با نام {name} وجود دارد.","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"مقدار حذف شد","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.109182747":"ورود","src.auth.components.LoginPage.4028609483":"","src.auth.components.NewPasswordPage.1915811227":"","src.auth.components.NewPasswordPage.1254879564":"","src.auth.components.NewPasswordPage.2799926859":"","src.auth.components.NewPasswordPage.4253911811":"","src.auth.components.NewPasswordPage.2342634351":"","src.auth.components.ResetPasswordPage.2370700732":"","src.auth.components.ResetPasswordPage.3663311080":"","src.auth.components.ResetPasswordSuccessPage.4066297200":"","src.auth.components.ResetPasswordSuccessPage.2245157344":"","src.auth.views.2388238158":"","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"(اختیاری)","src.collections.components.CollectionImage.3289097895":"(اختیاری)","src.categories.components.CategoryCreatePage.236319840":"ایجاد دسته‌بندی جدید","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"حذف دسته‌بندی","src.categories.views.2004894945":"حذف دسته‌بندی","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.2159874182":"زیردسته ها","src.categories.components.CategoryUpdatePage.2159874182":"زیردسته ها","src.categories.components.CategoryList.2527742754":"تعداد محصولات","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.1140231710":"","src.categories.views.1140231710":"","src.categories.components.CategoryListPage.4294878092":"","src.categories.components.CategoryListPage.3841025483":"","src.translations.components.TranslationsEntitiesListPage.3841025483":"","src.categories.components.CategoryProductList.1952810469":"گونه","src.collections.components.CollectionProducts.1952810469":"گونه","src.products.components.ProductList.1952810469":"گونه","src.products.components.ProductListPage.1952810469":"گونه","src.components.ProductList.1952810469":"گونه","src.productTypes.components.ProductTypeList.1952810469":"گونه","src.categories.components.CategoryProductList.3640454975":"منتشر شده","src.components.ProductList.3640454975":"منتشر شده","src.products.components.ProductList.3640454975":"منتشر شده","src.products.components.ProductListPage.3640454975":"منتشر شده","productStatusLabel":"منتشر شده","src.collections.components.CollectionList.3640454975":"منتشر شده","src.collections.components.CollectionProducts.3640454975":"منتشر شده","src.discounts.components.DiscountProducts.3640454975":"منتشر شده","src.pages.components.PageList.3640454975":"منتشر شده","src.products.views.ProductList.published":"منتشر شده","src.categories.components.CategoryProductList.1134347598":"قیمت","src.orders.components.OrderFulfillment.1134347598":"قیمت","src.products.components.ProductList.1134347598":"قیمت","src.products.components.ProductListPage.1134347598":"قیمت","src.products.components.ProductPricing.1134347598":"قیمت","src.components.ProductList.1134347598":"قیمت","src.orders.components.OrderDraftDetailsProducts.1134347598":"قیمت","src.orders.components.OrderUnfulfilledItems.1134347598":"قیمت","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"قیمت","src.shipping.components.ShippingZoneRates.1134347598":"قیمت","src.categories.components.CategoryProductList.2341910657":"منتشر نشده است","src.products.components.ProductList.2341910657":"منتشر نشده است","src.collections.components.CollectionList.2341910657":"منتشر نشده است","src.collections.components.CollectionProducts.2341910657":"منتشر نشده است","src.discounts.components.DiscountProducts.2341910657":"منتشر نشده است","src.components.ProductList.2341910657":"منتشر نشده است","src.categories.components.CategoryProductList.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.products.components.ProductList.1657559629":"","src.categories.components.CategoryProducts.4164156574":"محصولات در {categoryName}","src.categories.components.CategoryProducts.3554578821":"اضافه کردن محصول","src.categories.components.CategoryUpdatePage.2968663655":"محصولات","src.discounts.components.DiscountCategories.2968663655":"محصولات","src.discounts.components.DiscountCollections.2968663655":"محصولات","src.products":"محصولات","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryUpdatePage.3229914152":"","src.categories.components.CategoryUpdatePage.770296100":"","src.categories.views.1754466114":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.CategoryList.3488150607":"","src.categories.views.712767046":"حذف دسته‌بندی‌ها","src.categories.views.CategoryList.712767046":"حذف دسته‌بندی‌ها","src.categories.views.299584400":"","src.categories.views.2507763081":"حذف محصولات","src.categories.views.3231188861":"","src.categories.views.CategoryList.2144707585":"","src.collections.components.CollectionCreatePage.3958681866":"افزودن مجموعه","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionCreatePage.2001551496":"از تاریخ {date} قابل رویت خواهد بود","src.collections.components.CollectionDetailsPage.2001551496":"از تاریخ {date} قابل رویت خواهد بود","src.pages.components.PageDetailsPage.2001551496":"از تاریخ {date} قابل رویت خواهد بود","src.products.components.ProductCreatePage.2001551496":"از تاریخ {date} قابل رویت خواهد بود","src.products.components.ProductUpdatePage.2001551496":"از تاریخ {date} قابل رویت خواهد بود","src.collections.components.CollectionCreatePage.1815688500":"از تاریخ {date}","src.collections.components.CollectionDetailsPage.1815688500":"از تاریخ {date}","src.pages.components.PageDetailsPage.1815688500":"از تاریخ {date}","src.products.components.ProductCreatePage.1815688500":"از تاریخ {date}","src.products.components.ProductUpdatePage.1815688500":"از تاریخ {date}","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"دسترسی","src.availability":"","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionListPage.686910896":"","src.collections.views.686910896":"","src.collections.components.CollectionListPage.1631917001":"","src.collections.components.CollectionListPage.4057224233":"","src.components.AssignCollectionDialog.4057224233":"","src.translations.components.TranslationsEntitiesListPage.4057224233":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"تخصیص نیافته","saleDetailsUnassignCategory":"تخصیص نیافته","saleDetailsUnassignCollection":"تخصیص نیافته","saleDetailsUnassignProduct":"تخصیص نیافته","voucherDetailsUnassignCategory":"تخصیص نیافته","voucherDetailsUnassignCollection":"تخصیص نیافته","voucherDetailsUnassignProduct":"تخصیص نیافته","src.productTypes.views.ProductTypeUpdate.870815507":"تخصیص نیافته","src.collections.views.699514132":"حذف مجموعه","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"","src.collections.views.2402899582":"","src.collections.views.CollectionList.2237014112":"منتشر نشده","src.pages.views.2237014112":"منتشر نشده","src.products.views.ProductList.2237014112":"منتشر نشده","src.collections.views.CollectionList.1547167026":"انتشار","src.pages.views.1547167026":"انتشار","src.products.views.ProductList.1547167026":"انتشار","src.collections.views.CollectionList.2823425739":"منتشر کردن مجموعه‌ها","src.collections.views.CollectionList.1348793822":"","src.collections.views.CollectionList.2637364047":"مجموعه‌ها‌ی منتشر نشده","src.collections.views.CollectionList.3944356444":"","src.collections.views.CollectionList.3817188998":"حذف مجموعه‌ها","src.collections.views.CollectionList.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"خروج","src.components.AssignCategoryDialog.190977792":"دسته‌بندی‌ها‌ی تخصیص داده شده","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"تخصیص محصولات","src.discounts.components.DiscountProducts.2100305525":"تخصیص محصولات","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"ستون‌ها","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"ریست","src.components.ConfirmButton.2845142593":"خطا","src.components.ErrorMessageCard.2845142593":"خطا","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.Filter.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"بازگشت به خانه","src.components.FileUpload.3050254265":"بارگذاری","src.components.Filter.2852521946":"افزودن فیلتر","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"افزودن فیلتر","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.Filter.1514415736":"ذخیره جستجو‌ی سفارشی","src.components.TableFilter.1514415736":"ذخیره جستجو‌ی سفارشی","src.components.SaveFilterTabDialog.1514415736":"ذخیره جستجو‌ی سفارشی","src.components.FilterBar.2340527467":"","src.components.SearchBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"افزودن","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"از {money}","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"افزودن بهای جدید: {value}","src.components.SingleAutocompleteSelectField.1477537381":"افزودن بهای جدید: {value}","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"بازگشت به داشبورد","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"افزودن لینک تصویر","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"افزودن یا ویرایش لینک","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1556856943":"جستجوی نام","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"هیچ","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"ارسال","src.components.VisibilityCard.1459686496":"قابل مشاهده","src.pages.components.PageList.1459686496":"قابل مشاهده","src.products.components.ProductListFilter.1459686496":"قابل مشاهده","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"پنهان","src.products.views.ProductList.hidden":"پنهان","src.components.VisibilityCard.292404896":"","src.components.VisibilityCard.2060790769":"منتشر شده در","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"{fromValue} {fromUnit} - {toValue} {toUnit}","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","src.configuration.2326418019":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","src.configuration.3655543906":"","configurationMenuShipping":"","configurationMenuTaxes":"","src.configuration.3140151600":"","configurationMenuStaff":"","src.configuration.1233229030":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","configurationPluginsPages":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"استفاده به عنوان آدرس پیش‌فرض","src.customers.components.CustomerAddressDialog.3769321414":"افزودن آدرس","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"اطلاعات آدرس","src.customers.components.CustomerAddresses.2428885633":"آدرس فاکتور","src.customers.components.CustomerAddresses.3517722732":"آدرس ارسال","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"آدرس","src.customers.components.CustomerAddressListPage.489918044":"جزئیات {fullName}","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"افزودن آدرس","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"بررسی مشتری","src.customers.components.CustomerCreateNote.1520756907":"یادداشت ها","src.orders.components.OrderCustomerNote.1520756907":"یادداشت ها","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"یادداشت","src.customers.components.CustomerDetails.577013340":"یادداشت","src.customers.components.CustomerCreatePage.1934221653":"افزودن مشتری","src.customers.components.CustomerListPage.1934221653":"افزودن مشتری","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerListPage.477293306":"","src.customers.components.CustomerListPage.1643417013":"","src.customers.components.CustomerOrders.3878642352":"سفارشات اخیر","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"شماره سفارش","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"تاریخ","src.orders.components.OrderDraftList.4205493358":"تاریخ","src.orders.components.OrderList.4205493358":"تاریخ","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"وضعیت","src.orders.components.OrderListFilter.1756106276":"وضعیت","src.plugins.components.PluginInfo.1756106276":"وضعیت","src.products.components.ProductListFilter.1756106276":"وضعیت","src.products.components.ProductVariants.1756106276":"وضعیت","src.customers.components.CustomerOrders.878013594":"مجموع کل","src.orders.components.OrderDraftDetailsProducts.878013594":"مجموع کل","src.orders.components.OrderDraftDetailsSummary.878013594":"مجموع کل","src.orders.components.OrderDraftList.878013594":"مجموع کل","src.orders.components.OrderFulfillment.878013594":"مجموع کل","src.orders.components.OrderUnfulfilledItems.878013594":"مجموع کل","src.orders.components.OrderList.878013594":"مجموع کل","src.orders.components.OrderPayment.878013594":"مجموع کل","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"تاریخچه مشتری","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"حذف آدرس","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.CustomerList.1946482599":"","src.customers.views.CustomerList.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","src.discounts.components.SaleListPage.3866518732":"","saleDetailsPageCategoriesQuantity":"تعداد دسته‌بندی‌ها: ({quantity})","src.discounts.components.VoucherDetailsPage.346170541":"تعداد دسته‌بندی‌ها: ({quantity})","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"شروع","src.discounts.components.VoucherList.47059407":"شروع شده","src.discounts.components.SaleList.3715522424":"پایان یافته","src.discounts.components.VoucherList.3715522424":"پایان یافته","src.discounts.components.SaleList.1148029984":"بها","src.discounts.components.SaleSummary.1148029984":"بها","src.discounts.components.VoucherList.1148029984":"بها","src.discounts.components.VoucherSummary.1148029984":"بها","src.discounts.components.VoucherValue.1148029984":"بها","src.products.components.ProductAttributes.1148029984":"بها","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.3907768880":"","src.discounts.components.SaleListPage.1866913828":"","src.translations.components.TranslationsEntitiesListPage.1866913828":"","src.discounts.components.SalePricing.1099355007":"قیمت دهی","src.products.components.ProductPricing.1099355007":"قیمت دهی","src.products.components.ProductVariantPrice.1099355007":"قیمت دهی","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"بازه‌ی زمانی","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"روزهای فعالیت","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"کشورها","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"تولید کد","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"محدودیت استفاده","src.discounts.components.VoucherSummary.3751756157":"محدودیت استفاده","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"کد","src.discounts.components.VoucherSummary.78726751":"کد","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"مصارف","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.614836274":"","src.discounts.components.VoucherListPage.1112241061":"","src.discounts.components.VoucherListPage.1930485532":"","src.translations.components.TranslationsEntitiesListPage.1930485532":"","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"اعمال شده به","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"ارسال رایگان","src.discounts.components.VoucherTypes.3216816841":"گونه تخفیف","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"تمام سفارش","src.discounts.products":"محصولات خاص","src.discounts.shipment":"پست","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"حذف تخفیف‌ها","src.discounts.views.1457489953":"","src.discounts.views.SaleList.2809303671":"حذف تخفیف","src.discounts.views.SaleList.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"حذف کوپن","src.discounts.views.3261917848":"","src.discounts.views.VoucherList.367317371":"","src.discounts.views.VoucherList.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"فعالیت","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"اینجا برخی از اطلاعاتی که ما درمورد مغازه‌یتان جمع‌آوری کرده‌ایم آمده است","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"محصولات برتر","homeProductListCardOrders":"{amount,plural,one{یک سفارش‌داده شد} other{{amount} سفارش‌داده شد}}","homeScreenDisclaimer":"سلب مسئولیت","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.somethingWentWrong":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"بارگذاری تصوی","src.yes":"","src.back":"بازگشت","src.cancel":"لغو","src.orders.views.OrderList.3528672691":"لغو","src.confirm":"","src.delete":"حذف","src.edit":"ویرایش","src.manage":"","src.remove":"حذف","src.save":"ذخیره","src.show":"","src.undo":"باطل کردن","src.attributes":"ویژگی ها","src.products.components.ProductAttributes.4153345096":"ویژگی‌ها","src.categories":"دسته‌بندی‌ها","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"مجموعه ها","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"تنظیمات","src.customers":"مشتری ها","src.draftOrders":"","src.home":"خانه","src.navigation":"جهت یابی","src.orders":"سفارش ها","src.pages":"صفحات","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.plugins":"","src.productTypes":"گونه‌ها‌ی محصول","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"طرح تخفیف","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"روش ارسال","src.siteSettings":"تنظیمات وب‌سایت","src.staff":"کارکنان","src.taxes":"مالیات","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"مالیات","src.taxes.components.CountryListPage.3955023266":"مالیات","src.translations":"","src.vouchers":"کد تخفیف ها","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"","src.partiallyPaid":"قسمتی پرداخت شد","src.partiallyRefunded":"قسمتی بازپرداخت شد","src.refunded":"بازپرداخت کامل","src.unpaid":"","src.cancelled":"لغو شده","src.draft":"پیش‌نویس","src.fulfilled":"کامل شده","src.orders.views.OrderList.fulfilled":"کامل شده","src.orders.components.OrderListFilter.1712863026":"کامل شده","src.partiallyFulfilled":"نیمه کامل","src.unfulfilled":"غیرنهایی","src.orders.views.OrderList.unfulfilled":"غیرنهایی","src.orders.components.OrderListFilter.1751787272":"پردازش نشده","src.accommodation":"محل زندگی","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"دعوت به رویدادهای ورزشی","src.advertising":"تبلیغات","src.agriculturalSupplies":"عرضه‌ی محصولات کشاورزی","src.babyFoodstuffs":"","src.bikes":"دوچرخه","src.books":"کتاب‌ها","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"خوراکی‌ها","src.hotels":"هتل‌ها","src.medical":"پزشکی","src.newspapers":"روزنامه‌ها","src.passengerTransport":"حمل و نقل مسافران","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"رستوران‌ها","src.socialHousing":"مسکن سازمانی","src.standard":"استاندارد","src.water":"ویفر","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"افزودن مورد","menuItemDialogLinkLabel":"پیوند","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"تغییر آدرس پرداخت","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"سفارش‌های لغو شده","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"تمام موجودی انبار که به این سفارش‌ها مرتبط هست را آزاد کن","src.orders.components.OrderCancelDialog.1854613983":"لغو سفارش","src.orders.components.OrderDetailsPage.1854613983":"لغو سفارش","src.orders.components.OrderDraftPage.1854613983":"لغو سفارش","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"مشتری","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"مشتری","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"اطلاعات تماس","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"همان آدرس ارسال","src.orders.components.OrderCustomerEditDialog.1411666943":"ویرایش مشخصات مشتری","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.632633254":"","src.orders.components.OrderDraftCancelDialog.36681973":"","src.orders.components.OrderDraftDetails.2343989342":"جزئیات سفارش","src.orders.components.OrderDraftDetails.2528459381":"افزودن محصولات","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"محصول","src.orders.components.OrderUnfulfilledItems.1895667608":"محصول","src.orders.components.OrderDraftDetailsProducts.2796503714":"تعداد","src.orders.components.OrderFulfillment.2796503714":"تعداد","src.orders.components.OrderFulfillmentDialog.2796503714":"تعداد","src.orders.components.OrderUnfulfilledItems.2796503714":"تعداد","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"جمع کل","src.orders.components.OrderPayment.781550514":"جمع کل","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"نهایی‌سازی پیش‌نویس سفارش","src.orders.components.OrderDraftFinalizeDialog.678764806":"نهایی کردن به هرقیمتی","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"ایجاد سفارش","src.orders.components.OrderListPage.2826235371":"ایجاد سفارش","src.orders.components.OrderDraftListPage.551325728":"","src.orders.components.OrderDraftListPage.77765281":"","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"افزودن پیگیری","src.orders.components.OrderFulfillmentCancelDialog.732594284":"لغو پردازش","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"موجود کردن موارد؟","src.orders.components.OrderFulfillmentCancelDialog.675709443":"لغو پردازش","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"واحد انبار داری","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"کد پیگیری","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"افزودن کد پیگیری","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"محصولات به پیش‌نویس سفارش افزوده شد","src.orders.components.OrderHistory.3095247195":"پیش‌نویس سفارش ایجاد شد","src.orders.components.OrderHistory.4067959693":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"پردازش لغو شد","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"یادداشت به سفارش افزوده شد","src.orders.components.OrderHistory.2655541129":"هزینه سفارش بطور کامل پرداخت شده.","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"پرداخت باطل شد","src.orders.components.OrderHistory.348557206":"پرداخت بازپرداخت شد","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"سفارش ثبت شد","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"پرداخت","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"برابر","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"تنظیم شده است","src.products.components.ProductListFilter.1438173764":"تنظیم شده است","src.orders.components.OrderListFilter.210276526":"پردازش نیمه کامل","src.orders.views.OrderList.partiallyFulfilled":"پردازش نیمه کامل","src.orders.components.OrderListFilter.2415661583":"","src.orders.views.OrderList.readyToCapture":"","src.orders.components.OrderListFilter.2222765704":"","src.orders.components.OrderListPage.875489544":"تمام سفارش‌ها","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"مالیت بر ارزش افزوده محاسبه شده‌است","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"ارسال","src.productTypes.components.ProductTypeShipping.1325966144":"ارسال","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"ارسال","src.orders.components.OrderPayment.3768782744":"مقدار پیش پرداخت","src.orders.components.OrderPayment.2320183694":"مقدار ضبط شده","src.orders.components.OrderPayment.353147224":"تراز","src.orders.components.OrderPayment.4211710217":"ضبط","src.orders.components.OrderPayment.2845258362":"بازپرداخت","src.orders.components.OrderPayment.2444197639":"انتخاب نشده","src.orders.components.OrderPayment.3500506678":"تایید پرداخت","src.orders.components.OrderPaymentDialog.1466130374":"پرداخت ضبط شده","src.orders.components.OrderPaymentDialog.250371749":"بازگشت پرداخت","src.orders.components.OrderPaymentDialog.75546233":"مبلغ","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.1542417144":"ایجاد محصول","src.products.components.ProductListPage.1542417144":"ایجاد محصول","src.products.views.1542417144":"ایجاد محصول","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"پردازش","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.OrderDraftList.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.OrderDraftList.1648805446":"","src.orders.views.OrderDraftList.1161115149":"حذف پیش‌نویس‌های سفارش","src.orders.views.OrderDraftList.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"تا تاریخ {date}","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.1068617485":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"عنوان","src.pages.components.PageList.1124600214":"عنوان","src.pages.components.PageInfo.1116746286":"محتوا","src.translations.components.TranslationsPagesPage.1116746286":"محتوا","src.pages.components.PageList.3478065224":"Slug","src.pages.components.PageSlug.3478065224":"Slug","src.productTypes.components.ProductTypeAttributes.3478065224":"Slug","src.pages.components.PageList.3767550649":"هنوز منتشر نشده","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.3785394515":"ایجاد صفحه","src.pages.views.3785394515":"ایجاد صفحه","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"صفحات منتشر شده","src.pages.views.1080715663":"صفحه‌های حذف شده","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"صفحات منتشر نشده","src.pages.views.691980200":"","src.pages.views.2782958373":"حذف صفحه‌ها","src.pages.views.3382708469":"","src.plugins.components.PluginInfo.3425535100":"","src.plugins.components.PluginsDetailsPage.3425535100":"","src.plugins.components.PluginInfo.1049131348":"","src.plugins.components.PluginInfo.4013064767":"","src.plugins.components.PluginsDetailsPage.3352026836":"","src.plugins.components.PluginsDetailsPage.2277745418":"","src.plugins.components.PluginsDetailsPage.1970881031":"","src.plugins.components.PluginSettings.1970881031":"","src.plugins.components.PluginsDetailsPage.4241018152":"","src.plugins.components.PluginsList.3247064221":"فعال","src.staff.components.StaffList.3247064221":"فعال","src.plugins.components.PluginsList.4120604650":"","src.plugins.components.PluginsList.666641390":"","src.plugins.views.100549097":"","src.products.components.ProductAttributes.1071548120":"{number} صفت","src.products.components.ProductAttributes.1207761269":"مقدار ها","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"سازمان","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"تمام تصاویر","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"اطلاعات تصویر","src.products.components.ProductImagePage.367472710":"نمایش تصویر","src.products.components.ProductImages.3240888698":"عکس ها","src.products.components.ProductVariantImages.3240888698":"عکس ها","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"موجود است","src.products.components.ProductVariants.2157131639":"موجود","src.products.views.ProductList.available":"موجود است","src.products.components.ProductListFilter.1640493122":"ناموجود","src.products.components.ProductListFilter.3841616483":"موجودی انبار","src.products.components.ProductVariantStock.3841616483":"موجودی انبار","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListFilter.821159718":"","src.products.components.ProductListFilter.1421689426":"","src.products.components.ProductListFilter.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"قابل تنظیم","src.productTypes.components.ProductTypeList.2754779425":"قابل تنظیم","src.products.components.ProductOrganization.150865454":"عادی","src.products.components.ProductOrganization.2805838453":"اختیاری. افزودن محصول در مجموعه به کاربران در یافتن آن کمک می‌کند.","src.products.components.ProductPricing.3015886868":"","productStockHeader":"فهرست کالا","prodictStockInventoryLabel":"فهرست کالا","src.products.components.ProductVariantStock.3490038570":"فهرست کالا","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"حذف نوع","src.products.components.ProductVariantDeleteDialog.3726089650":"حذف نوع","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"آیا از حذف {name} مطمئن هستید؟","src.products.views.ProductUpdate.2297471173":"آیا از حذف {name} مطمئن هستید؟","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"آیا از حذف {name} مطمئن هستید؟","shippingZoneDetailsDialogsDeleteShippingMethod":"آیا از حذف {name} مطمئن هستید؟","shippingZoneDetailsDialogsDeleteShippingZone":"آیا از حذف {name} مطمئن هستید؟","src.products.components.ProductVariantDeleteDialog.1583616500":"","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"","src.products.components.ProductVariants.2153006789":"","src.products.components.ProductVariantNavigation.2845381934":"افزودن نوع مشابه","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.3989383405":"","src.products.views.3989383405":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1591632382":"محصول جدید","src.products.views.1731766393":"","src.products.views.2880386427":"","src.products.views.ProductList.outOfStock":"ناموجود","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"قیمت به {price}","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"آیا از حذف {counter,plural,one{this محصول} other{{displayQuantity} محصولات}} اطمینان دارید؟","src.products.views.ProductList.2946646245":"منتشر کردن محصولات","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"محصولات منتشر نشده","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"حذف انواع محصول","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.productTypes.components.AssignAttributeDialog.3922579741":"ویژگی تخصیص داده شده","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"حذف ویژگی از گونه محصول","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1217376589":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"مالیات","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"دیجیتال","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.3479705616":"","src.productTypes.components.ProductTypeListPage.1776073799":"","src.productTypes.components.ProductTypeListPage.3420445375":"","src.translations.components.TranslationsEntitiesListPage.3420445375":"","src.productTypes.components.ProductTypeShipping.2143413921":"آیا این محصول قابل ارسال است؟","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.ProductTypeList.4080551769":"حذف گونه‌ها‌ی محصول","src.productTypes.views.ProductTypeList.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"افزودن محدوده‌ی ارسالی جدید","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"افزودن نرخ قیمت","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"افزودن نرخ وزن","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"نام نرخ","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"محدوده‌ی وزن","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"نرخ","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"ایجاد نرخ","src.shipping.components.ShippingZoneRates.16061680":"ایجاد نرخ","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2673544109":"","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"حذف محدوده‌ی ارسال","src.shipping.views.1010705153":"حذف محدوده‌ی ارسال","src.shipping.views.ShippingZoneDetails.1947090060":"","src.shipping.views.ShippingZoneDetails.131963671":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"مشخصات فروشگاه","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"افزودن کلید دسترسی جدید","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"کلید","src.siteSettings.components.SiteSettingsKeys.2446088470":"کلید","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"افزودن احراز هویت","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"افزودن کلی","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"هیچ کلیدی وجود ندارد","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.1481503299":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"دسترسی‌ها","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"ارسال دعوت‌نامه","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.797461521":"","src.staff.components.StaffListPage.2852350932":"","src.staff.components.StaffListPage.61043583":"","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"اطلاعات کارکنان","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"حذف تصویر","src.staff.components.StaffStatus.2183517419":"وضعیت حساب کاربری","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"کاربر فعال است","src.staff.views.1308770978":"","src.staff.views.8878988":"","src.staff.views.701332676":"حذف تصویر کاربر کارمند","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"نرخ مالیات در {countryName}","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"دریافت مالیات","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.2105464697":"","src.translations.components.TranslationsEntitiesListPage.2559018090":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"ویژگی محصول ({attributeName})","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file diff --git a/locale/fa.po b/locale/fa.po index 27b90e764..1acca0ee3 100644 --- a/locale/fa.po +++ b/locale/fa.po @@ -5,7 +5,7 @@ # msgid "" msgstr "" -"POT-Creation-Date: 2019-09-06T13:56:36.897Z\n" +"POT-Creation-Date: 2019-09-16T15:25:09.340Z\n" "Last-Translator: Mahdi Khosravi , 2019\n" "Language-Team: Persian (https://www.transifex.com/mirumee/teams/34782/fa/)\n" "MIME-Version: 1.0\n" @@ -143,22 +143,6 @@ msgctxt "create new menu item, header" msgid "Add Item" msgstr "افزودن مورد" -#. [menuCreateDialogHeader] - dialog header -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json -msgctxt "dialog header" -msgid "Add Menu" -msgstr "افزودن منو" - -#. [menuListPageAddMenu] - button -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json -msgctxt "button" -msgid "Add Menu" -msgstr "افزودن منو" - #. [src.siteSettings.components.SiteSettingsKeyDialog.1238948746] - dialog #. header #. defaultMessage is: @@ -168,14 +152,6 @@ msgctxt "dialog header" msgid "Add New Authorization Key" msgstr "افزودن کلید دسترسی جدید" -#. [src.pages.components.PageDetailsPage.755314116] - page header -#. defaultMessage is: -#. Add Page -#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json -msgctxt "page header" -msgid "Add Page" -msgstr "افزودن صفحه" - #. [src.shipping.components.ShippingZoneRateDialog.2892088870] - dialog header #. defaultMessage is: #. Add Price Rate @@ -184,38 +160,6 @@ msgctxt "dialog header" msgid "Add Price Rate" msgstr "افزودن نرخ قیمت" -#. [src.orders.components.OrderProductAddDialog.2775402904] - dialog header -#. defaultMessage is: -#. Add Product -#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json -msgctxt "dialog header" -msgid "Add Product" -msgstr "افزودن محصول" - -#. [src.products.components.ProductListPage.2775402904] - button -#. defaultMessage is: -#. Add Product -#: build/locale/src/products/components/ProductListPage/ProductListPage.json -msgctxt "button" -msgid "Add Product" -msgstr "افزودن محصول" - -#. [src.discounts.components.SaleListPage.1742771332] - button -#. defaultMessage is: -#. Add Sale -#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json -msgctxt "button" -msgid "Add Sale" -msgstr "افزودن طرح تخفیف" - -#. [src.staff.components.StaffAddMemberDialog.3490059488] - dialog header -#. defaultMessage is: -#. Add Staff Member -#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json -msgctxt "dialog header" -msgid "Add Staff Member" -msgstr "افزودن به کارکنان" - #. [src.attributes.components.AttributeValueEditDialog.1841790893] - add #. attribute value #. defaultMessage is: @@ -225,14 +169,6 @@ msgctxt "add attribute value" msgid "Add Value" msgstr "افزودن بها" -#. [src.products.views.2178905289] - header -#. defaultMessage is: -#. Add Variant -#: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "header" -msgid "Add Variant" -msgstr "افزودن نوع" - #. [src.shipping.components.ShippingZoneRateDialog.1397795758] - add weight #. based shipping method, dialog header #. defaultMessage is: @@ -250,14 +186,6 @@ msgctxt "button" msgid "Add address" msgstr "افزودن آدرس" -#. [src.attributes.components.AttributeListPage.350498821] - button -#. defaultMessage is: -#. Add attribute -#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json -msgctxt "button" -msgid "Add attribute" -msgstr "افزودن ویژگی" - #. [src.siteSettings.components.SiteSettingsKeyDialog.50561933] - button #. defaultMessage is: #. Add authentication @@ -266,14 +194,6 @@ msgctxt "button" msgid "Add authentication" msgstr "افزودن احراز هویت" -#. [src.categories.components.CategoryListPage.228151782] - button -#. defaultMessage is: -#. Add category -#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json -msgctxt "button" -msgid "Add category" -msgstr "افزودن دسته‌بندی" - #. [src.collections.components.CollectionCreatePage.3958681866] - page header #. defaultMessage is: #. Add collection @@ -282,14 +202,6 @@ msgctxt "page header" msgid "Add collection" msgstr "افزودن مجموعه" -#. [src.collections.components.CollectionListPage.3958681866] - button -#. defaultMessage is: -#. Add collection -#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json -msgctxt "button" -msgid "Add collection" -msgstr "افزودن مجموعه" - #. [src.customers.components.CustomerCreatePage.1934221653] - page header #. defaultMessage is: #. Add customer @@ -322,14 +234,6 @@ msgctxt "button" msgid "Add key" msgstr "افزودن کلی" -#. [menuItemsAddItem] - add new menu item -#. defaultMessage is: -#. Add new item -#: build/locale/src/navigation/components/MenuItems/MenuItems.json -msgctxt "add new menu item" -msgid "Add new item" -msgstr "افزودن مورد جدید" - #. [menuItemsPlaceholder] #. defaultMessage is: #. Add new menu item to begin creating menu @@ -364,14 +268,6 @@ msgctxt "button" msgid "Add or Edit Link" msgstr "افزودن یا ویرایش لینک" -#. [src.pages.components.PageListPage.1767905232] - button -#. defaultMessage is: -#. Add page -#: build/locale/src/pages/components/PageListPage/PageListPage.json -msgctxt "button" -msgid "Add page" -msgstr "افزودن صفحه" - #. [src.categories.components.CategoryProducts.3554578821] - button #. defaultMessage is: #. Add product @@ -380,14 +276,6 @@ msgctxt "button" msgid "Add product" msgstr "اضافه کردن محصول" -#. [src.productTypes.components.ProductTypeListPage.889729490] - button -#. defaultMessage is: -#. Add product type -#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json -msgctxt "button" -msgid "Add product type" -msgstr "اضافه کردن گونه محصول" - #. [src.orders.components.OrderDraftDetails.2528459381] - button #. defaultMessage is: #. Add products @@ -396,14 +284,6 @@ msgctxt "button" msgid "Add products" msgstr "افزودن محصولات" -#. [src.shipping.components.ShippingZoneRates.352297149] - button -#. defaultMessage is: -#. Add rate -#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json -msgctxt "button" -msgid "Add rate" -msgstr "افزودن نرخ" - #. [src.categories.components.CategoryCreatePage.2563994280] #. defaultMessage is: #. Add search engine title and description to make this category easier to @@ -465,30 +345,6 @@ msgctxt "button" msgid "Add shipping carrier" msgstr "" -#. [src.shipping.components.ShippingZonesList.2474410767] - button -#. defaultMessage is: -#. Add shipping zone -#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json -msgctxt "button" -msgid "Add shipping zone" -msgstr "افزودن منطقه حمل و نقل" - -#. [src.staff.components.StaffListPage.802625341] - button -#. defaultMessage is: -#. Add staff member -#: build/locale/src/staff/components/StaffListPage/StaffListPage.json -msgctxt "button" -msgid "Add staff member" -msgstr "افزودن به کارکنان" - -#. [src.categories.components.CategoryList.435697837] - button -#. defaultMessage is: -#. Add subcategory -#: build/locale/src/categories/components/CategoryList/CategoryList.json -msgctxt "button" -msgid "Add subcategory" -msgstr "افزودن زیردسته‌بندی" - #. [src.attributes.components.AttributeProperties.673770329] - add attribute #. as column in product list table #. defaultMessage is: @@ -516,35 +372,14 @@ msgctxt "dialog header" msgid "Add tracking code" msgstr "افزودن کد پیگیری" -#. [src.attributes.components.AttributeValues.254756045] - add attribute value -#. button -#. defaultMessage is: -#. Add value -#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json -msgctxt "add attribute value button" -msgid "Add value" -msgstr "افزودن مقدار" - #. [src.products.components.ProductVariantNavigation.2845381934] - button #. defaultMessage is: #. Add variant -#. [src.products.components.ProductVariants.2845381934] - button -#. defaultMessage is: -#. Add variant #: build/locale/src/products/components/ProductVariantNavigation/ProductVariantNavigation.json -#: build/locale/src/products/components/ProductVariants/ProductVariants.json msgctxt "button" msgid "Add variant" msgstr "افزودن نوع مشابه" -#. [src.discounts.components.VoucherListPage.1536809153] - button -#. defaultMessage is: -#. Add voucher -#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json -msgctxt "button" -msgid "Add voucher" -msgstr "افزودن کوپن" - #. [src.attributes.views.AttributeDetails.634268988] - added new attribute #. value #. defaultMessage is: @@ -602,14 +437,6 @@ msgctxt "description" msgid "Address line 2" msgstr "آدرس، خط 2" -#. [src.customers.components.CustomerAddress.1320082647] - addres card header -#. defaultMessage is: -#. Address {addressNumber} -#: build/locale/src/customers/components/CustomerAddress/CustomerAddress.json -msgctxt "addres card header" -msgid "Address {addressNumber}" -msgstr "" - #. [src.attributes.components.AttributeValues.1565474525] - attribute values #. list: slug column header #. defaultMessage is: @@ -659,6 +486,46 @@ msgctxt "tax rate" msgid "Agricultural supplies" msgstr "عرضه‌ی محصولات کشاورزی" +#. [src.attributes.components.AttributeListPage.2417065806] - tab name +#. defaultMessage is: +#. All Attributes +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "tab name" +msgid "All Attributes" +msgstr "" + +#. [src.categories.components.CategoryListPage.4294878092] - tab name +#. defaultMessage is: +#. All Categories +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "tab name" +msgid "All Categories" +msgstr "" + +#. [src.collections.components.CollectionListPage.1631917001] - tab name +#. defaultMessage is: +#. All Collections +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "tab name" +msgid "All Collections" +msgstr "" + +#. [src.customers.components.CustomerListPage.477293306] - tab name +#. defaultMessage is: +#. All Customers +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "tab name" +msgid "All Customers" +msgstr "" + +#. [src.orders.components.OrderDraftListPage.551325728] - tab name +#. defaultMessage is: +#. All Drafts +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "tab name" +msgid "All Drafts" +msgstr "" + #. [src.orders.components.OrderListPage.875489544] - tab name #. defaultMessage is: #. All Orders @@ -676,22 +543,54 @@ msgctxt "section header" msgid "All Photos" msgstr "تمام تصاویر" -#. [src.products.components.ProductListPage.821159718] - tab name +#. [src.productTypes.components.ProductTypeListPage.1776073799] - tab name +#. defaultMessage is: +#. All Product Types +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "tab name" +msgid "All Product Types" +msgstr "" + +#. [src.products.components.ProductListFilter.821159718] - tab name #. defaultMessage is: #. All Products -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "tab name" msgid "All Products" msgstr "" -#. [src.categories.components.CategoryList.3229914152] - section header +#. [src.discounts.components.SaleListPage.3907768880] - tab name +#. defaultMessage is: +#. All Sales +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "tab name" +msgid "All Sales" +msgstr "" + +#. [src.staff.components.StaffListPage.2852350932] - tab name +#. defaultMessage is: +#. All Staff Members +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "tab name" +msgid "All Staff Members" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.3229914152] - section header #. defaultMessage is: #. All Subcategories -#: build/locale/src/categories/components/CategoryList/CategoryList.json +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json msgctxt "section header" msgid "All Subcategories" msgstr "" +#. [src.discounts.components.VoucherListPage.1112241061] - tab name +#. defaultMessage is: +#. All Vouchers +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "tab name" +msgid "All Vouchers" +msgstr "" + #. [src.taxes.components.TaxConfiguration.142803418] #. defaultMessage is: #. All products prices are entered with tax included @@ -803,6 +702,14 @@ msgctxt "description" msgid "Are you sure you want to delete collection's image?" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.36681973] +#. defaultMessage is: +#. Are you sure you want to delete draft #{number}? +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "description" +msgid "Are you sure you want to delete draft #{number}?" +msgstr "" + #. [menuDetailsDeleteMenuContent] #. defaultMessage is: #. Are you sure you want to delete menu {menuName}? @@ -819,6 +726,14 @@ msgctxt "description" msgid "Are you sure you want to delete this address from users address book?" msgstr "" +#. [src.products.views.2880386427] +#. defaultMessage is: +#. Are you sure you want to delete this image? +#: build/locale/src/products/views/ProductImage.json +msgctxt "description" +msgid "Are you sure you want to delete this image?" +msgstr "" + #. [src.attributes.components.AttributeDeleteDialog.3738429348] - dialog #. content #. defaultMessage is: @@ -871,12 +786,7 @@ msgstr "" #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this attribute} #. other{{displayQuantity} categories}}? -#. [src.categories.views.844574071] -#. defaultMessage is: -#. Are you sure you want to delete {counter,plural,one{this attribute} -#. other{{displayQuantity} categories}}? #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this attribute} " @@ -894,22 +804,33 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.2497542455] +#. [src.categories.views.CategoryList.2144707585] +#. defaultMessage is: +#. Are you sure you want to delete {counter,plural,one{this category} +#. other{{displayQuantity} categories}}? +#: build/locale/src/categories/views/CategoryList/CategoryList.json +msgctxt "description" +msgid "" +"Are you sure you want to delete {counter,plural,one{this category} " +"other{{displayQuantity} categories}}?" +msgstr "" + +#. [src.collections.views.CollectionList.2497542455] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this collection} " "other{{displayQuantity} collections}}?" msgstr "" -#. [src.customers.views.409347866] +#. [src.customers.views.CustomerList.409347866] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this customer} #. other{{displayQuantity} customers}}? -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this customer} " @@ -929,11 +850,11 @@ msgstr "" "آیا از حذف {counter,plural,one{this menu} other{{displayQuantity} منوها}} " "اطمینان دارید؟" -#. [src.orders.views.1389231130] - dialog content +#. [src.orders.views.OrderDraftList.1389231130] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this order draft} #. other{{displayQuantity} orderDrafts}}? -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this order draft} " @@ -951,11 +872,11 @@ msgid "" "other{{displayQuantity} pages}}?" msgstr "" -#. [src.productTypes.views.2294091098] - dialog content +#. [src.productTypes.views.ProductTypeList.2294091098] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this product type} #. other{{displayQuantity} product types}}? -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this product type} " @@ -975,11 +896,11 @@ msgstr "" "آیا از حذف {counter,plural,one{this محصول} other{{displayQuantity} محصولات}}" " اطمینان دارید؟" -#. [src.discounts.views.2516361175] - dialog content +#. [src.discounts.views.SaleList.2516361175] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this sale} #. other{{displayQuantity} sales}}? -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this sale} " @@ -1008,17 +929,33 @@ msgid "" "other{{displayQuantity} variants}}?" msgstr "" -#. [src.discounts.views.1791926983] - dialog content +#. [src.discounts.views.VoucherList.1791926983] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this voucher} #. other{{displayQuantity} vouchers}}? -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this voucher} " "other{{displayQuantity} vouchers}}?" msgstr "" +#. [src.shipping.views.ShippingZoneDetails.131963671] - unassign country +#. defaultMessage is: +#. Are you sure you want to delete {countryName} from this shipping zone? +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country" +msgid "Are you sure you want to delete {countryName} from this shipping zone?" +msgstr "" + +#. [src.staff.views.8878988] +#. defaultMessage is: +#. Are you sure you want to delete {email} from staff members? +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "description" +msgid "Are you sure you want to delete {email} from staff members?" +msgstr "" + #. [src.customers.views.1927691511] - delete customer, dialog content #. defaultMessage is: #. Are you sure you want to delete {email}? @@ -1133,11 +1070,11 @@ msgctxt "description" msgid "Are you sure you want to mark this order as paid?" msgstr "" -#. [src.collections.views.1348793822] +#. [src.collections.views.CollectionList.1348793822] #. defaultMessage is: #. Are you sure you want to publish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to publish {counter,plural,one{this collection} " @@ -1166,30 +1103,6 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.orders.components.OrderDraftCancelDialog.3199827590] -#. defaultMessage is: -#. Are you sure you want to remove draft #{number}? -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "description" -msgid "Are you sure you want to remove draft #{number}?" -msgstr "" - -#. [src.products.views.672103788] -#. defaultMessage is: -#. Are you sure you want to remove this image? -#: build/locale/src/products/views/ProductImage.json -msgctxt "description" -msgid "Are you sure you want to remove this image?" -msgstr "" - -#. [src.shipping.views.ShippingZoneDetails.1790261672] - unassign country -#. defaultMessage is: -#. Are you sure you want to remove {countryName} from this shipping zone? -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country" -msgid "Are you sure you want to remove {countryName} from this shipping zone?" -msgstr "" - #. [src.staff.views.3945766678] #. defaultMessage is: #. Are you sure you want to remove {email} avatar? @@ -1198,14 +1111,6 @@ msgctxt "description" msgid "Are you sure you want to remove {email} avatar?" msgstr "" -#. [src.staff.views.2728048444] -#. defaultMessage is: -#. Are you sure you want to remove {email} from staff members? -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "description" -msgid "Are you sure you want to remove {email} from staff members?" -msgstr "" - #. [src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450] #. defaultMessage is: #. Are you sure you want to unassign {attributeName} from {productTypeName}? @@ -1286,11 +1191,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.3944356444] +#. [src.collections.views.CollectionList.3944356444] #. defaultMessage is: #. Are you sure you want to unpublish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to unpublish {counter,plural,one{this collection} " @@ -1451,6 +1356,15 @@ msgctxt "button" msgid "Assign products" msgstr "تخصیص محصولات" +#. [src.attributes.components.AttributeValues.351422234] - assign attribute +#. value button +#. defaultMessage is: +#. Assign value +#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json +msgctxt "assign attribute value button" +msgid "Assign value" +msgstr "" + #. [src.attributes.components.AttributeDetails.3605174225] - attribute's slug #. short code label #. defaultMessage is: @@ -1529,6 +1443,14 @@ msgctxt "product attributes, section header" msgid "Attributes" msgstr "ویژگی‌ها" +#. [src.configuration.2326418019] +#. defaultMessage is: +#. Attributes and Product Typess +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Attributes and Product Typess" +msgstr "" + #. [src.attributes.views.AttributeList.3218248395] - deleted multiple #. attributes #. defaultMessage is: @@ -2312,6 +2234,22 @@ msgctxt "description" msgid "Country area" msgstr "" +#. [menuCreateDialogHeader] - dialog header +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json +msgctxt "dialog header" +msgid "Create Menu" +msgstr "" + +#. [menuListPageAddMenu] - button +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json +msgctxt "button" +msgid "Create Menu" +msgstr "" + #. [src.attributes.components.AttributePage.2855501559] - page title #. defaultMessage is: #. Create New Attribute @@ -2336,6 +2274,30 @@ msgctxt "header" msgid "Create New Shipping Zone" msgstr "افزودن محدوده‌ی ارسالی جدید" +#. [src.pages.components.PageDetailsPage.1068617485] - page header +#. defaultMessage is: +#. Create Page +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page header" +msgid "Create Page" +msgstr "" + +#. [src.orders.components.OrderProductAddDialog.1542417144] - dialog header +#. defaultMessage is: +#. Create Product +#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json +msgctxt "dialog header" +msgid "Create Product" +msgstr "ایجاد محصول" + +#. [src.products.components.ProductListPage.1542417144] - button +#. defaultMessage is: +#. Create Product +#: build/locale/src/products/components/ProductListPage/ProductListPage.json +msgctxt "button" +msgid "Create Product" +msgstr "ایجاد محصول" + #. [src.products.views.1542417144] - window title #. defaultMessage is: #. Create Product @@ -2368,11 +2330,19 @@ msgctxt "page header" msgid "Create Sale" msgstr "" -#. [src.products.views.2362587265] - window title +#. [src.discounts.components.SaleListPage.3866518732] - button +#. defaultMessage is: +#. Create Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "button" +msgid "Create Sale" +msgstr "" + +#. [src.products.views.2362587265] - header #. defaultMessage is: #. Create Variant #: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "window title" +msgctxt "header" msgid "Create Variant" msgstr "" @@ -2384,6 +2354,22 @@ msgctxt "page header" msgid "Create Voucher" msgstr "" +#. [src.attributes.components.AttributeListPage.3824684885] - button +#. defaultMessage is: +#. Create attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "button" +msgid "Create attribute" +msgstr "" + +#. [src.categories.components.CategoryListPage.1140231710] - button +#. defaultMessage is: +#. Create category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "button" +msgid "Create category" +msgstr "" + #. [src.categories.views.1140231710] - window title #. defaultMessage is: #. Create category @@ -2392,6 +2378,14 @@ msgctxt "window title" msgid "Create category" msgstr "" +#. [src.collections.components.CollectionListPage.686910896] - button +#. defaultMessage is: +#. Create collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "button" +msgid "Create collection" +msgstr "" + #. [src.collections.views.686910896] - window title #. defaultMessage is: #. Create collection @@ -2408,6 +2402,14 @@ msgctxt "window title" msgid "Create customer" msgstr "" +#. [menuItemsAddItem] - add new menu item +#. defaultMessage is: +#. Create new item +#: build/locale/src/navigation/components/MenuItems/MenuItems.json +msgctxt "add new menu item" +msgid "Create new item" +msgstr "" + #. [src.orders.components.OrderDraftListPage.2826235371] - button #. defaultMessage is: #. Create order @@ -2420,6 +2422,14 @@ msgctxt "button" msgid "Create order" msgstr "ایجاد سفارش" +#. [src.pages.components.PageListPage.3785394515] - button +#. defaultMessage is: +#. Create page +#: build/locale/src/pages/components/PageListPage/PageListPage.json +msgctxt "button" +msgid "Create page" +msgstr "ایجاد صفحه" + #. [src.pages.views.3785394515] - header #. defaultMessage is: #. Create page @@ -2431,11 +2441,55 @@ msgstr "ایجاد صفحه" #. [src.shipping.components.ShippingZoneRateDialog.16061680] - button #. defaultMessage is: #. Create rate +#. [src.shipping.components.ShippingZoneRates.16061680] - button +#. defaultMessage is: +#. Create rate #: build/locale/src/shipping/components/ShippingZoneRateDialog/ShippingZoneRateDialog.json +#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json msgctxt "button" msgid "Create rate" msgstr "ایجاد نرخ" +#. [src.shipping.components.ShippingZonesList.2673544109] - button +#. defaultMessage is: +#. Create shipping zone +#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json +msgctxt "button" +msgid "Create shipping zone" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.770296100] - button +#. defaultMessage is: +#. Create subcategory +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json +msgctxt "button" +msgid "Create subcategory" +msgstr "" + +#. [src.products.components.ProductVariants.3989383405] - button +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/components/ProductVariants/ProductVariants.json +msgctxt "button" +msgid "Create variant" +msgstr "" + +#. [src.products.views.3989383405] - window title +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/views/ProductVariantCreate.json +msgctxt "window title" +msgid "Create variant" +msgstr "" + +#. [src.discounts.components.VoucherListPage.614836274] - button +#. defaultMessage is: +#. Create voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "button" +msgid "Create voucher" +msgstr "" + #. [src.collections.views.1597339737] #. defaultMessage is: #. Created collection @@ -2482,7 +2536,11 @@ msgstr "در حال حاضر هیچ کشوری به این محدوده‌ی ا #. [src.components.FilterBar.2340527467] #. defaultMessage is: #. Custom Filter +#. [src.components.SearchBar.2340527467] +#. defaultMessage is: +#. Custom Filter #: build/locale/src/components/FilterBar/FilterBar.json +#: build/locale/src/components/SearchBar/SearchBar.json msgctxt "description" msgid "Custom Filter" msgstr "فیلتر سفارشی" @@ -2738,10 +2796,18 @@ msgctxt "dialog title" msgid "Delete Collection" msgstr "حذف مجموعه" -#. [src.orders.views.1161115149] - dialog header +#. [src.products.views.1731766393] - dialog header +#. defaultMessage is: +#. Delete Image +#: build/locale/src/products/views/ProductImage.json +msgctxt "dialog header" +msgid "Delete Image" +msgstr "" + +#. [src.orders.views.OrderDraftList.1161115149] - dialog header #. defaultMessage is: #. Delete Order Drafts -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog header" msgid "Delete Order Drafts" msgstr "حذف پیش‌نویس‌های سفارش" @@ -2779,10 +2845,10 @@ msgctxt "dialog header" msgid "Delete Product Type" msgstr "" -#. [src.productTypes.views.4080551769] - dialog header +#. [src.productTypes.views.ProductTypeList.4080551769] - dialog header #. defaultMessage is: #. Delete Product Types -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog header" msgid "Delete Product Types" msgstr "حذف گونه‌ها‌ی محصول" @@ -2811,10 +2877,10 @@ msgctxt "dialog header" msgid "Delete Sale" msgstr "حذف تخفیف‌ها" -#. [src.discounts.views.2809303671] - dialog header +#. [src.discounts.views.SaleList.2809303671] - dialog header #. defaultMessage is: #. Delete Sales -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog header" msgid "Delete Sales" msgstr "حذف تخفیف" @@ -2828,9 +2894,13 @@ msgctxt "custom search delete, dialog header" msgid "Delete Search" msgstr "" +#. [src.components.Filter.2173195312] - button +#. defaultMessage is: +#. Delete Search #. [src.components.TableFilter.2173195312] - button #. defaultMessage is: #. Delete Search +#: build/locale/src/components/Filter/FilterSearch.json #: build/locale/src/components/TableFilter/FilterChips.json msgctxt "button" msgid "Delete Search" @@ -2897,10 +2967,10 @@ msgctxt "dialog header" msgid "Delete Voucher" msgstr "حذف کوپن" -#. [src.discounts.views.367317371] - dialog header +#. [src.discounts.views.VoucherList.367317371] - dialog header #. defaultMessage is: #. Delete Vouchers -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog header" msgid "Delete Vouchers" msgstr "" @@ -2934,11 +3004,11 @@ msgstr "" #. [src.categories.views.712767046] - dialog title #. defaultMessage is: #. Delete categories -#. [src.categories.views.712767046] - dialog title +#. [src.categories.views.CategoryList.712767046] - dialog title #. defaultMessage is: #. Delete categories #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "dialog title" msgid "Delete categories" msgstr "حذف دسته‌بندی‌ها" @@ -2955,10 +3025,10 @@ msgctxt "dialog title" msgid "Delete category" msgstr "حذف دسته‌بندی" -#. [src.collections.views.3817188998] - dialog title +#. [src.collections.views.CollectionList.3817188998] - dialog title #. defaultMessage is: #. Delete collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Delete collections" msgstr "حذف مجموعه‌ها" @@ -2971,14 +3041,31 @@ msgctxt "dialog header" msgid "Delete customer" msgstr "" -#. [src.customers.views.1946482599] - dialog header +#. [src.customers.views.CustomerList.1946482599] - dialog header #. defaultMessage is: #. Delete customers -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "dialog header" msgid "Delete customers" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.632633254] - dialog header +#. defaultMessage is: +#. Delete draft order +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "dialog header" +msgid "Delete draft order" +msgstr "" + +#. [src.shipping.views.ShippingZoneDetails.1947090060] - unassign country, +#. dialog header +#. defaultMessage is: +#. Delete from shipping zone +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country, dialog header" +msgid "Delete from shipping zone" +msgstr "" + #. [src.collections.views.942133001] - dialog title #. defaultMessage is: #. Delete image @@ -3039,6 +3126,14 @@ msgctxt "description" msgid "Deleted collection" msgstr "مجموعه حذف شد" +#. [src.orders.views.OrderDraftList.1648805446] +#. defaultMessage is: +#. Deleted draft orders +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json +msgctxt "description" +msgid "Deleted draft orders" +msgstr "" + #. [menuListDeletedMenu] #. defaultMessage is: #. Deleted menu @@ -3638,14 +3733,6 @@ msgctxt "order history message" msgid "Fulfilled {quantity} items" msgstr "" -#. [src.orders.components.OrderListFilter.2943502192] - order -#. defaultMessage is: -#. Fulfillment Status -#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json -msgctxt "order" -msgid "Fulfillment Status" -msgstr "وضعیت پردازش" - #. [src.orders.components.OrderHistory.3081292385] - order history message #. defaultMessage is: #. Fulfillment confirmation was sent to customer @@ -3803,12 +3890,12 @@ msgctxt "description" msgid "If empty, the preview shows what will be autogenerated." msgstr "اگر خالی باشد، پیش‌نمایش به صورت تولید خودکار نمایش داده می‌شود." -#. [src.attributes.components.AttributeProperties.2519239682] +#. [src.attributes.components.AttributeProperties.4048785456] #. defaultMessage is: -#. If enable this attribute can be used as a column in product table. +#. If enabled this attribute can be used as a column in product table. #: build/locale/src/attributes/components/AttributeProperties/AttributeProperties.json msgctxt "description" -msgid "If enable this attribute can be used as a column in product table." +msgid "If enabled this attribute can be used as a column in product table." msgstr "" #. [src.attributes.components.AttributeProperties.787251583] @@ -3914,6 +4001,22 @@ msgctxt "product variant stock" msgid "Inventory" msgstr "فهرست کالا" +#. [src.staff.components.StaffAddMemberDialog.1481503299] - dialog header +#. defaultMessage is: +#. Invite Staff Member +#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json +msgctxt "dialog header" +msgid "Invite Staff Member" +msgstr "" + +#. [src.staff.components.StaffListPage.797461521] - button +#. defaultMessage is: +#. Invite staff member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "button" +msgid "Invite staff member" +msgstr "" + #. [src.productTypes.components.ProductTypeShipping.2143413921] - switch #. button #. defaultMessage is: @@ -4266,6 +4369,14 @@ msgctxt "voucher requirement" msgid "Minimum quantity of items" msgstr "" +#. [src.configuration.1233229030] +#. defaultMessage is: +#. Miscellaneous +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Miscellaneous" +msgstr "" + #. [src.attributes.components.AttributeDetails.3334509011] - product attribute #. type #. defaultMessage is: @@ -5098,6 +5209,14 @@ msgctxt "description" msgid "Order History" msgstr "تاریخچه‌ی سفارش" +#. [src.orders.components.OrderListFilter.2222765704] +#. defaultMessage is: +#. Order Status +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +msgctxt "description" +msgid "Order Status" +msgstr "" + #. [src.orders.components.OrderHistory.1230178536] - order history message #. defaultMessage is: #. Order address was updated @@ -5114,13 +5233,13 @@ msgctxt "order history message" msgid "Order confirmation was sent to customer" msgstr "" -#. [src.orders.views.1872939752] +#. [src.orders.views.OrderDraftList.1872939752] #. defaultMessage is: #. Order draft succesfully created #. [src.orders.views.OrderList.1872939752] #. defaultMessage is: #. Order draft succesfully created -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json #: build/locale/src/orders/views/OrderList/OrderList.json msgctxt "description" msgid "Order draft succesfully created" @@ -5785,6 +5904,14 @@ msgctxt "description" msgid "Product Name" msgstr "نام محصول" +#. [src.configuration.3655543906] +#. defaultMessage is: +#. Product Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Product Settings" +msgstr "" + #. [src.discounts.components.DiscountProducts.4257289053] #. defaultMessage is: #. Product Type @@ -5943,12 +6070,12 @@ msgctxt "order history message" msgid "Products were added to draft order" msgstr "محصولات به پیش‌نویس سفارش افزوده شد" -#. [src.orders.components.OrderHistory.2574162126] - order history message +#. [src.orders.components.OrderHistory.4067959693] - order history message #. defaultMessage is: -#. Products were removed from draft order +#. Products were deleted from draft order #: build/locale/src/orders/components/OrderHistory/OrderHistory.json msgctxt "order history message" -msgid "Products were removed from draft order" +msgid "Products were deleted from draft order" msgstr "" #. [src.properties] @@ -5975,10 +6102,10 @@ msgctxt "description" msgid "Provided email address does not exist in our database." msgstr "" -#. [src.collections.views.1547167026] - publish collections +#. [src.collections.views.CollectionList.1547167026] - publish collections #. defaultMessage is: #. Publish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "publish collections" msgid "Publish" msgstr "انتشار" @@ -6015,10 +6142,10 @@ msgctxt "dialog header" msgid "Publish Products" msgstr "منتشر کردن محصولات" -#. [src.collections.views.2823425739] - dialog title +#. [src.collections.views.CollectionList.2823425739] - dialog title #. defaultMessage is: #. Publish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Publish collections" msgstr "منتشر کردن مجموعه‌ها" @@ -6192,6 +6319,18 @@ msgctxt "shipping method price" msgid "Rate Price" msgstr "" +#. [src.orders.components.OrderListFilter.2415661583] - order status +#. defaultMessage is: +#. Ready to Capture +#. [src.orders.views.OrderList.readyToCapture] - order status +#. defaultMessage is: +#. Ready to Capture +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +#: build/locale/src/orders/views/OrderList/filters.json +msgctxt "order status" +msgid "Ready to Capture" +msgstr "" + #. [src.customers.components.CustomerOrders.3878642352] - section header #. defaultMessage is: #. Recent orders @@ -6240,22 +6379,14 @@ msgctxt "switch button" msgid "Release all stock allocated to this order" msgstr "" -#. [src.auth.components.LoginPage.3182284913] - login -#. defaultMessage is: -#. Remember me -#: build/locale/src/auth/components/LoginPage/LoginPage.json -msgctxt "login" -msgid "Remember me" -msgstr "" - #. [src.categories.views.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. -#. [src.categories.views.3488150607] +#. [src.categories.views.CategoryList.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "description" msgid "Remember this will also delete all products assigned to this category." msgstr "" @@ -6268,39 +6399,6 @@ msgctxt "button" msgid "Remove" msgstr "حذف" -#. [src.products.views.490753666] - dialog header -#. defaultMessage is: -#. Remove Image -#: build/locale/src/products/views/ProductImage.json -msgctxt "dialog header" -msgid "Remove Image" -msgstr "" - -#. [src.orders.components.OrderDraftCancelDialog.500287069] - dialog header -#. defaultMessage is: -#. Remove draft order -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "dialog header" -msgid "Remove draft order" -msgstr "حذف سفارش پیش نویس شده" - -#. [src.shipping.views.ShippingZoneDetails.254167659] - unassign country, -#. dialog header -#. defaultMessage is: -#. Remove from shipping zone -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country, dialog header" -msgid "Remove from shipping zone" -msgstr "حذف از محدوده‌ی ارسال" - -#. [src.orders.views.3880993240] -#. defaultMessage is: -#. Removed draft orders -#: build/locale/src/orders/views/OrderDraftList.json -msgctxt "description" -msgid "Removed draft orders" -msgstr "" - #. [src.pages.views.1457312643] #. defaultMessage is: #. Removed page @@ -6466,6 +6564,18 @@ msgctxt "button" msgid "Save" msgstr "ذخیره" +#. [src.components.Filter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#. [src.components.TableFilter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#: build/locale/src/components/Filter/FilterSearch.json +#: build/locale/src/components/TableFilter/FilterChips.json +msgctxt "button" +msgid "Save Custom Search" +msgstr "ذخیره جستجو‌ی سفارشی" + #. [src.components.SaveFilterTabDialog.1514415736] - save filter tab, header #. defaultMessage is: #. Save Custom Search @@ -6474,14 +6584,6 @@ msgctxt "save filter tab, header" msgid "Save Custom Search" msgstr "ذخیره جستجو‌ی سفارشی" -#. [src.components.TableFilter.1514415736] - button -#. defaultMessage is: -#. Save Custom Search -#: build/locale/src/components/TableFilter/FilterChips.json -msgctxt "button" -msgid "Save Custom Search" -msgstr "ذخیره جستجو‌ی سفارشی" - #. [src.products.components.ProductVariantCreatePage.2853608829] - button #. defaultMessage is: #. Save variant @@ -6498,6 +6600,14 @@ msgctxt "description" msgid "Saved changes" msgstr "ذخیره دسته‌بندی" +#. [src.attributes.components.AttributeListPage.3916653510] +#. defaultMessage is: +#. Search Attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "description" +msgid "Search Attribute" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.902296540] #. defaultMessage is: #. Search Attributes @@ -6514,10 +6624,30 @@ msgctxt "description" msgid "Search Categories" msgstr "" +#. [src.categories.components.CategoryListPage.3841025483] +#. defaultMessage is: +#. Search Category +#. [src.translations.components.TranslationsEntitiesListPage.3841025483] +#. defaultMessage is: +#. Search Category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Category" +msgstr "" + +#. [src.collections.components.CollectionListPage.4057224233] +#. defaultMessage is: +#. Search Collection #. [src.components.AssignCollectionDialog.4057224233] #. defaultMessage is: #. Search Collection +#. [src.translations.components.TranslationsEntitiesListPage.4057224233] +#. defaultMessage is: +#. Search Collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json #: build/locale/src/components/AssignCollectionDialog/AssignCollectionDialog.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json msgctxt "description" msgid "Search Collection" msgstr "جستجو مجموعه" @@ -6530,6 +6660,14 @@ msgctxt "description" msgid "Search Countries" msgstr "جستجوی کشورها" +#. [src.customers.components.CustomerListPage.1643417013] +#. defaultMessage is: +#. Search Customer +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "description" +msgid "Search Customer" +msgstr "" + #. [src.orders.components.OrderCustomer.2433460203] #. defaultMessage is: #. Search Customers @@ -6538,6 +6676,14 @@ msgctxt "description" msgid "Search Customers" msgstr "" +#. [src.orders.components.OrderDraftListPage.77765281] +#. defaultMessage is: +#. Search Draft +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "description" +msgid "Search Draft" +msgstr "" + #. [src.translations.components.TranslationsCategoriesPage.1406947243] #. defaultMessage is: #. Search Engine Description @@ -6618,6 +6764,34 @@ msgctxt "description" msgid "Search Orders..." msgstr "جستجوی سفارش‌ها ..." +#. [src.translations.components.TranslationsEntitiesListPage.2559018090] +#. defaultMessage is: +#. Search Page +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Page" +msgstr "" + +#. [src.translations.components.TranslationsEntitiesListPage.2105464697] +#. defaultMessage is: +#. Search Product +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product" +msgstr "" + +#. [src.productTypes.components.ProductTypeListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#. [src.translations.components.TranslationsEntitiesListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product Type" +msgstr "" + #. [src.components.AssignProductDialog.2850255786] #. defaultMessage is: #. Search Products @@ -6630,14 +6804,46 @@ msgctxt "description" msgid "Search Products" msgstr "" -#. [src.products.components.ProductListPage.3550330425] +#. [src.products.components.ProductListFilter.3550330425] #. defaultMessage is: #. Search Products... -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Search Products..." msgstr "" +#. [src.discounts.components.SaleListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#. [src.translations.components.TranslationsEntitiesListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Sale" +msgstr "" + +#. [src.staff.components.StaffListPage.61043583] +#. defaultMessage is: +#. Search Staff Member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "description" +msgid "Search Staff Member" +msgstr "" + +#. [src.discounts.components.VoucherListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#. [src.translations.components.TranslationsEntitiesListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Voucher" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.524117994] #. defaultMessage is: #. Search by attribute name @@ -6744,10 +6950,10 @@ msgctxt "description" msgid "Select all orders where:" msgstr "" -#. [src.products.components.ProductListPage.1421689426] +#. [src.products.components.ProductListFilter.1421689426] #. defaultMessage is: #. Select all products where: -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Select all products where:" msgstr "انتخاب تمام محصولات که:" @@ -6833,6 +7039,14 @@ msgctxt "description" msgid "Set plugin as Active" msgstr "" +#. [src.components.VisibilityCard.292404896] +#. defaultMessage is: +#. Set publication date +#: build/locale/src/components/VisibilityCard/VisibilityCard.json +msgctxt "description" +msgid "Set publication date" +msgstr "" + #. [src.discounts.shipment] - voucher discount #. defaultMessage is: #. Shipment @@ -7098,6 +7312,14 @@ msgctxt "staff section name" msgid "Staff Members" msgstr "کارکنان" +#. [src.configuration.3140151600] +#. defaultMessage is: +#. Staff Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Staff Settings" +msgstr "" + #. [src.standard] - tax rate #. defaultMessage is: #. Standard @@ -8084,10 +8306,10 @@ msgctxt "payment status" msgid "Unpaid" msgstr "" -#. [src.collections.views.2237014112] - unpublish collections +#. [src.collections.views.CollectionList.2237014112] - unpublish collections #. defaultMessage is: #. Unpublish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "unpublish collections" msgid "Unpublish" msgstr "منتشر نشده" @@ -8124,10 +8346,10 @@ msgctxt "dialog header" msgid "Unpublish Products" msgstr "محصولات منتشر نشده" -#. [src.collections.views.2637364047] - dialog title +#. [src.collections.views.CollectionList.2637364047] - dialog title #. defaultMessage is: #. Unpublish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Unpublish collections" msgstr "مجموعه‌ها‌ی منتشر نشده" @@ -8627,6 +8849,22 @@ msgctxt "description" msgid "ZIP / Postal code" msgstr "کد پستی" +#. [src.productTypes.components.ProductTypeListPage.3479705616] - button +#. defaultMessage is: +#. create product type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "button" +msgid "create product type" +msgstr "" + +#. [src.staff.views.1308770978] - dialog header +#. defaultMessage is: +#. delete Staff User +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "dialog header" +msgid "delete Staff User" +msgstr "" + #. [orderPaymentVATDoesNotApply] - vat not included in order price #. defaultMessage is: #. does not apply @@ -8700,19 +8938,35 @@ msgctxt "product status is set as" msgid "is set as" msgstr "تنظیم شده است" -#. [src.staff.views.2240444792] - dialog header -#. defaultMessage is: -#. remove Staff User -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "dialog header" -msgid "remove Staff User" -msgstr "" - -#. [src.components.VisibilityCard.1815688500] +#. [src.collections.components.CollectionCreatePage.1815688500] - collection #. defaultMessage is: #. since {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.1815688500] - collection +#. defaultMessage is: +#. since {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "since {date}" +msgstr "از تاریخ {date}" + +#. [src.pages.components.PageDetailsPage.1815688500] - page +#. defaultMessage is: +#. since {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "since {date}" +msgstr "از تاریخ {date}" + +#. [src.products.components.ProductCreatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#. [src.products.components.ProductUpdatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "since {date}" msgstr "از تاریخ {date}" @@ -8740,11 +8994,35 @@ msgctxt "weight" msgid "to {value} {unit}" msgstr "" -#. [src.components.VisibilityCard.2001551496] +#. [src.collections.components.CollectionCreatePage.2001551496] - collection #. defaultMessage is: #. will be visible from {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.2001551496] - collection +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "will be visible from {date}" +msgstr "از تاریخ {date} قابل رویت خواهد بود" + +#. [src.pages.components.PageDetailsPage.2001551496] - page +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "will be visible from {date}" +msgstr "از تاریخ {date} قابل رویت خواهد بود" + +#. [src.products.components.ProductCreatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#. [src.products.components.ProductUpdatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "will be visible from {date}" msgstr "از تاریخ {date} قابل رویت خواهد بود" diff --git a/locale/fr.json b/locale/fr.json index e6a2cc6d7..ed4d1f0cf 100644 --- a/locale/fr.json +++ b/locale/fr.json @@ -1 +1 @@ -{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"Effacer l'attribut","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.350498821":"Ajouter un attribut","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.2519239682":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"Nom","src.categories.components.CategoryProducts.636461959":"Nom","src.collections.components.CollectionProducts.636461959":"Nom","src.products.components.ProductDetailsForm.636461959":"Nom","src.collections.components.CollectionDetails.636461959":"Nom","src.components.ProductList.636461959":"Nom","src.discounts.components.SaleInfo.636461959":"Nom","src.discounts.components.SaleList.636461959":"Nom","src.discounts.components.SaleSummary.636461959":"Nom","menuItemDialogNameLabel":"Nom","src.products.components.ProductVariants.636461959":"Nom","src.shipping.components.ShippingZoneRates.636461959":"Nom","src.shipping.components.ShippingZonesList.636461959":"Nom","src.staff.components.StaffList.636461959":"Nom","src.translations.components.TranslationsEntitiesList.636461959":"Nom","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.254756045":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.3182284913":"","src.auth.components.LoginPage.109182747":"Connexion","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"Effacer la catégorie","src.categories.views.2004894945":"Effacer la catégorie","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.3229914152":"","src.categories.components.CategoryList.435697837":"","src.categories.components.CategoryList.2159874182":"Sous catégories","src.categories.components.CategoryUpdatePage.2159874182":"Sous catégories","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.228151782":"Ajouter une catégorie","src.categories.components.CategoryProducts.2968663655":"Produits","src.categories.components.CategoryUpdatePage.2968663655":"Produits","src.discounts.components.DiscountCategories.2968663655":"Produits","src.discounts.components.DiscountCollections.2968663655":"Produits","src.products":"Produits","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryProducts.3554578821":"Ajouter un produit","src.categories.components.CategoryProductsCard.3554578821":"Ajouter un produit","src.categories.components.CategoryProducts.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProducts.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.categories.components.CategoryProductsCard.4164156574":"","src.categories.views.1754466114":"","src.categories.views.1140231710":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.712767046":"","src.categories.views.299584400":"","src.categories.views.844574071":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.collections.components.CollectionCreatePage.3958681866":"Ajouter une collection","src.collections.components.CollectionListPage.3958681866":"Ajouter une collection","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"Disponibilité","src.availability":"","src.collections.components.CollectionList.3640454975":"Publiée","src.collections.components.CollectionProducts.3640454975":"Publiée","src.discounts.components.DiscountProducts.3640454975":"Publiée","src.components.ProductList.3640454975":"Publiée","src.products.components.ProductListPage.3640454975":"Publiée","src.pages.components.PageList.3640454975":"Publiée","src.products.views.ProductList.published":"Publiée","src.collections.components.CollectionList.2341910657":"Non publié","src.collections.components.CollectionProducts.2341910657":"Non publié","src.discounts.components.DiscountProducts.2341910657":"Non publié","src.components.ProductList.2341910657":"Non publié","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.686910896":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"Effacer l'image","src.collections.views.2402899582":"","src.collections.views.2237014112":"Dépublier","src.pages.views.2237014112":"Dépublier","src.products.views.ProductList.2237014112":"Dépublier","src.collections.views.1547167026":"Publier","src.pages.views.1547167026":"Publier","src.products.views.ProductList.1547167026":"Publier","src.collections.views.2823425739":"","src.collections.views.1348793822":"","src.collections.views.2637364047":"","src.collections.views.3944356444":"","src.collections.views.3817188998":"","src.collections.views.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"Déconnexion","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.4057224233":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"Erreur","src.components.ErrorMessageCard.2845142593":"Erreur","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.FilterBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"Ajouter","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.ProductList.1134347598":"Prix","src.orders.components.OrderDraftDetailsProducts.1134347598":"Prix","src.orders.components.OrderFulfillment.1134347598":"Prix","src.products.components.ProductListPage.1134347598":"Prix","src.products.components.ProductPricing.1134347598":"Prix","src.orders.components.OrderUnfulfilledItems.1134347598":"Prix","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"Prix","src.shipping.components.ShippingZoneRates.1134347598":"Prix","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"Visibilitée","src.pages.components.PageList.1459686496":"Visibilitée","src.products.components.ProductListFilter.1459686496":"Visibilitée","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"Caché","src.products.views.ProductList.hidden":"Caché","src.components.VisibilityCard.1815688500":"","src.components.VisibilityCard.2001551496":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","configurationMenuStaff":"","configurationMenuShipping":"","configurationMenuTaxes":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","src.customers.components.CustomerAddress.1320082647":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"Adresse de facturation","src.customers.components.CustomerAddresses.3517722732":"Adresse de livraison","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"Adresse","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"Notes","src.orders.components.OrderCustomerNote.1520756907":"Notes","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"Note","src.customers.components.CustomerDetails.577013340":"Note","src.customers.components.CustomerCreatePage.1934221653":"Ajouter le client","src.customers.components.CustomerListPage.1934221653":"Ajouter le client","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerOrders.3878642352":"Commandes récentes","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"Date","src.orders.components.OrderDraftList.4205493358":"Date","src.orders.components.OrderList.4205493358":"Date","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"État","src.orders.components.OrderListFilter.1756106276":"État","src.products.components.ProductListFilter.1756106276":"État","src.products.components.ProductVariants.1756106276":"État","src.customers.components.CustomerOrders.878013594":"Total","src.orders.components.OrderDraftDetailsProducts.878013594":"Total","src.orders.components.OrderDraftDetailsSummary.878013594":"Total","src.orders.components.OrderDraftList.878013594":"Total","src.orders.components.OrderFulfillment.878013594":"Total","src.orders.components.OrderUnfulfilledItems.878013594":"Total","src.orders.components.OrderList.878013594":"Total","src.orders.components.OrderPayment.878013594":"Total","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"Effacer l'adresse","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.1946482599":"","src.customers.views.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"Valeur","src.discounts.components.SaleSummary.1148029984":"Valeur","src.discounts.components.VoucherList.1148029984":"Valeur","src.discounts.components.VoucherSummary.1148029984":"Valeur","src.discounts.components.VoucherValue.1148029984":"Valeur","src.products.components.ProductAttributes.1148029984":"Valeur","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.1742771332":"","src.discounts.components.SalePricing.1099355007":"Prix","src.products.components.ProductPricing.1099355007":"Prix","src.products.components.ProductVariantPrice.1099355007":"Prix","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"Pays","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"Code","src.discounts.components.VoucherSummary.78726751":"Code","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.1536809153":"Ajouter un bon d'achat","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"Des produits spécifiques","src.discounts.shipment":"Livraison","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.2809303671":"","src.discounts.views.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.367317371":"","src.discounts.views.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"Annuler","src.orders.views.OrderList.3528672691":"Annuler","src.confirm":"","src.delete":"Effacer","src.edit":"Modifier","src.manage":"","src.remove":"Supprimer","src.save":"Sauvegarder","src.show":"","src.undo":"","src.attributes":"Attributs","src.products.components.ProductAttributes.4153345096":"Attributs","src.categories":"Catégories","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"Collections","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"Configuration","src.customers":"Clients","src.draftOrders":"","src.home":"Accueil","src.navigation":"Navigation","src.orders":"Commandes","src.pages":"Pages","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"Ventes","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"TVA","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"TVA","src.taxes.components.CountryListPage.3955023266":"TVA","src.translations":"","src.vouchers":"Bons d'achats","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"Paiement totalement effectué","src.partiallyPaid":"","src.partiallyRefunded":"","src.refunded":"Totalement remboursé","src.unpaid":"","src.cancelled":"Annulé","src.draft":"Brouillon","src.fulfilled":"Traitée","src.orders.views.OrderList.fulfilled":"Traitée","src.orders.components.OrderListFilter.1712863026":"Traitée","src.partiallyFulfilled":"En cours de traitement","src.unfulfilled":"En attente","src.orders.views.OrderList.unfulfilled":"En attente","src.orders.components.OrderListFilter.1751787272":"En attente","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","src.1395232177":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"Lien hypertexte","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"Annuler la commande","src.orders.components.OrderDetailsPage.1854613983":"Annuler la commande","src.orders.components.OrderDraftPage.1854613983":"Annuler la commande","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"Client","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"Client","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"Même adresse que la livraison","src.orders.components.OrderCustomerEditDialog.1411666943":"Modifier les détails du client","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.500287069":"Supprimer la commande brouillon","src.orders.components.OrderDraftCancelDialog.3199827590":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"Produit","src.orders.components.OrderUnfulfilledItems.1895667608":"Produit","src.orders.components.OrderDraftDetailsProducts.2796503714":"Quantité","src.orders.components.OrderFulfillment.2796503714":"Quantité","src.orders.components.OrderFulfillmentDialog.2796503714":"Quantité","src.orders.components.OrderUnfulfilledItems.2796503714":"Quantité","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"Sous-total","src.orders.components.OrderPayment.781550514":"Sous-total","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"Créer la commande","src.orders.components.OrderListPage.2826235371":"Créer la commande","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"Annuler la livraison","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"Ajouter un suivi","src.orders.components.OrderFulfillmentCancelDialog.732594284":"Annuler l'expédition","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"Annuler l'expédition","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"Référence","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"Numéro de suivi","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.2574162126":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"La commande a été passée","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"Paiement","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2943502192":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"La livraison","src.productTypes.components.ProductTypeShipping.1325966144":"La livraison","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"La livraison","src.orders.components.OrderPayment.3768782744":"Montant pré-autorisé","src.orders.components.OrderPayment.2320183694":"Montant saisi","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"Saisie","src.orders.components.OrderPayment.2845258362":"Remboursement","src.orders.components.OrderPayment.2444197639":"","src.orders.components.OrderPayment.3500506678":"Marquer payé","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"Montant","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.2775402904":"","src.products.components.ProductListPage.2775402904":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"Expédier","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.3880993240":"","src.orders.views.1161115149":"","src.orders.views.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.755314116":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"Titre","src.pages.components.PageList.1124600214":"Titre","src.pages.components.PageInfo.1116746286":"Contenu","src.translations.components.TranslationsPagesPage.1116746286":"Contenu","src.pages.components.PageList.3478065224":"Slug","src.pages.components.PageSlug.3478065224":"Slug","src.productTypes.components.ProductTypeAttributes.3478065224":"Slug","src.pages.components.PageList.3767550649":"Non Publié","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.1767905232":"Ajouter une page","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.3785394515":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"Valeurs","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"Photos","src.products.components.ProductVariantImages.3240888698":"Photos","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"Stock","src.products.components.ProductVariantStock.3841616483":"Stock","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListPage.821159718":"","src.products.components.ProductListPage.1421689426":"","src.products.components.ProductListPage.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"Inventaire","prodictStockInventoryLabel":"Inventaire","src.products.components.ProductVariantStock.3490038570":"Inventaire","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"Effacer la variante","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"Variantes","src.products.components.ProductVariants.2153006789":"Variantes","src.products.components.ProductVariantNavigation.2845381934":"Ajouter une variante","src.products.components.ProductVariants.2845381934":"Ajouter une variante","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1542417144":"","src.products.views.1591632382":"","src.products.views.490753666":"","src.products.views.672103788":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.1694086800":"","src.products.views.ProductList.224127438":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.products.views.2178905289":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1756957616":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.889729490":"Ajouter un type de produit","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.4080551769":"","src.productTypes.views.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.352297149":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2474410767":"","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.254167659":"","src.shipping.views.ShippingZoneDetails.1790261672":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"Clé","src.siteSettings.components.SiteSettingsKeys.2446088470":"Clé","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.3490059488":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"Droits","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.3247064221":"Activé","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.802625341":"Ajouter un membre au personnel","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"L'utilisateur est activé","src.staff.views.2240444792":"","src.staff.views.2728048444":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file +{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"Effacer l'attribut","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.3824684885":"","src.attributes.components.AttributeListPage.2417065806":"","src.attributes.components.AttributeListPage.3916653510":"","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.4048785456":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"Ajouter une valeur","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"Nom","src.categories.components.CategoryProductList.636461959":"Nom","src.components.ProductList.636461959":"Nom","src.products.components.ProductList.636461959":"Nom","src.collections.components.CollectionDetails.636461959":"Nom","src.collections.components.CollectionProducts.636461959":"Nom","src.products.components.ProductDetailsForm.636461959":"Nom","src.discounts.components.SaleInfo.636461959":"Nom","src.discounts.components.SaleList.636461959":"Nom","src.discounts.components.SaleSummary.636461959":"Nom","menuItemDialogNameLabel":"Nom","src.plugins.components.PluginsList.636461959":"Nom","src.products.components.ProductVariants.636461959":"Nom","src.shipping.components.ShippingZoneRates.636461959":"Nom","src.shipping.components.ShippingZonesList.636461959":"Nom","src.staff.components.StaffList.636461959":"Nom","src.translations.components.TranslationsEntitiesList.636461959":"Nom","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.351422234":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"Une valeur nommée {name} existe déjà","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"La nouvelle valeur a été ajoutée","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.109182747":"Connexion","src.auth.components.LoginPage.4028609483":"","src.auth.components.NewPasswordPage.1915811227":"","src.auth.components.NewPasswordPage.1254879564":"","src.auth.components.NewPasswordPage.2799926859":"","src.auth.components.NewPasswordPage.4253911811":"","src.auth.components.NewPasswordPage.2342634351":"","src.auth.components.ResetPasswordPage.2370700732":"","src.auth.components.ResetPasswordPage.3663311080":"","src.auth.components.ResetPasswordSuccessPage.4066297200":"","src.auth.components.ResetPasswordSuccessPage.2245157344":"","src.auth.views.2388238158":"","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"(Optionnel)","src.collections.components.CollectionImage.3289097895":"(Optionnel)","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"Effacer la catégorie","src.categories.views.2004894945":"Effacer la catégorie","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.2159874182":"Sous catégories","src.categories.components.CategoryUpdatePage.2159874182":"Sous catégories","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.1140231710":"","src.categories.views.1140231710":"","src.categories.components.CategoryListPage.4294878092":"","src.categories.components.CategoryListPage.3841025483":"","src.translations.components.TranslationsEntitiesListPage.3841025483":"","src.categories.components.CategoryProductList.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductList.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProductList.3640454975":"Publiée","src.components.ProductList.3640454975":"Publiée","src.products.components.ProductList.3640454975":"Publiée","src.products.components.ProductListPage.3640454975":"Publiée","productStatusLabel":"Publiée","src.collections.components.CollectionList.3640454975":"Publiée","src.collections.components.CollectionProducts.3640454975":"Publiée","src.discounts.components.DiscountProducts.3640454975":"Publiée","src.pages.components.PageList.3640454975":"Publiée","src.products.views.ProductList.published":"Publiée","src.categories.components.CategoryProductList.1134347598":"Prix","src.orders.components.OrderFulfillment.1134347598":"Prix","src.products.components.ProductList.1134347598":"Prix","src.products.components.ProductListPage.1134347598":"Prix","src.products.components.ProductPricing.1134347598":"Prix","src.components.ProductList.1134347598":"Prix","src.orders.components.OrderDraftDetailsProducts.1134347598":"Prix","src.orders.components.OrderUnfulfilledItems.1134347598":"Prix","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"Prix","src.shipping.components.ShippingZoneRates.1134347598":"Prix","src.categories.components.CategoryProductList.2341910657":"Non publié","src.products.components.ProductList.2341910657":"Non publié","src.collections.components.CollectionList.2341910657":"Non publié","src.collections.components.CollectionProducts.2341910657":"Non publié","src.discounts.components.DiscountProducts.2341910657":"Non publié","src.components.ProductList.2341910657":"Non publié","src.categories.components.CategoryProductList.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.products.components.ProductList.1657559629":"","src.categories.components.CategoryProducts.4164156574":"","src.categories.components.CategoryProducts.3554578821":"Ajouter un produit","src.categories.components.CategoryUpdatePage.2968663655":"Produits","src.discounts.components.DiscountCategories.2968663655":"Produits","src.discounts.components.DiscountCollections.2968663655":"Produits","src.products":"Produits","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryUpdatePage.3229914152":"","src.categories.components.CategoryUpdatePage.770296100":"","src.categories.views.1754466114":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.CategoryList.3488150607":"","src.categories.views.712767046":"","src.categories.views.CategoryList.712767046":"","src.categories.views.299584400":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.categories.views.CategoryList.2144707585":"","src.collections.components.CollectionCreatePage.3958681866":"Ajouter une collection","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionCreatePage.2001551496":"","src.collections.components.CollectionDetailsPage.2001551496":"","src.pages.components.PageDetailsPage.2001551496":"","src.products.components.ProductCreatePage.2001551496":"","src.products.components.ProductUpdatePage.2001551496":"","src.collections.components.CollectionCreatePage.1815688500":"","src.collections.components.CollectionDetailsPage.1815688500":"","src.pages.components.PageDetailsPage.1815688500":"","src.products.components.ProductCreatePage.1815688500":"","src.products.components.ProductUpdatePage.1815688500":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"Disponibilité","src.availability":"","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionListPage.686910896":"","src.collections.views.686910896":"","src.collections.components.CollectionListPage.1631917001":"","src.collections.components.CollectionListPage.4057224233":"","src.components.AssignCollectionDialog.4057224233":"","src.translations.components.TranslationsEntitiesListPage.4057224233":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"Effacer l'image","src.collections.views.2402899582":"","src.collections.views.CollectionList.2237014112":"Dépublier","src.pages.views.2237014112":"Dépublier","src.products.views.ProductList.2237014112":"Dépublier","src.collections.views.CollectionList.1547167026":"Publier","src.pages.views.1547167026":"Publier","src.products.views.ProductList.1547167026":"Publier","src.collections.views.CollectionList.2823425739":"","src.collections.views.CollectionList.1348793822":"","src.collections.views.CollectionList.2637364047":"","src.collections.views.CollectionList.3944356444":"","src.collections.views.CollectionList.3817188998":"","src.collections.views.CollectionList.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"Déconnexion","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"{numberOfSelected} colonnes sélectionnés sur {numberOfTotal}","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"Erreur","src.components.ErrorMessageCard.2845142593":"Erreur","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"{number} Pays","src.components.DeleteFilterTabDialog.2173195312":"","src.components.Filter.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"Ajouter un filtre","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"Ajouter un filtre","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.Filter.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.FilterBar.2340527467":"","src.components.SearchBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"Ajouter","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"Ajouter la nouvelle valeur: {value}","src.components.SingleAutocompleteSelectField.1477537381":"Ajouter la nouvelle valeur: {value}","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"Ajouter le lien d'une image","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"{numberOfCharacters} sur {maxCharacters} caractères","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"Visibilitée","src.pages.components.PageList.1459686496":"Visibilitée","src.products.components.ProductListFilter.1459686496":"Visibilitée","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"Caché","src.products.views.ProductList.hidden":"Caché","src.components.VisibilityCard.292404896":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","src.configuration.2326418019":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","src.configuration.3655543906":"","configurationMenuShipping":"","configurationMenuTaxes":"","src.configuration.3140151600":"","configurationMenuStaff":"","src.configuration.1233229030":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","configurationPluginsPages":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"Ajouter une adresse","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"Adresse de facturation","src.customers.components.CustomerAddresses.3517722732":"Adresse de livraison","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"Adresse","src.customers.components.CustomerAddressListPage.489918044":"Détails de {fullName}","src.customers.components.CustomerAddressListPage.1090326769":"Carnet d'adresses de {fullName}","src.customers.components.CustomerAddressListPage.3623935073":"Ajouter une adresse","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"Notes","src.orders.components.OrderCustomerNote.1520756907":"Notes","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"Note","src.customers.components.CustomerDetails.577013340":"Note","src.customers.components.CustomerCreatePage.1934221653":"Ajouter le client","src.customers.components.CustomerListPage.1934221653":"Ajouter le client","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"Compte utilisateur actif","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerListPage.477293306":"","src.customers.components.CustomerListPage.1643417013":"","src.customers.components.CustomerOrders.3878642352":"Commandes récentes","src.customers.components.CustomerOrders.3029139173":"Voir toutes les commandes","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"Date","src.orders.components.OrderDraftList.4205493358":"Date","src.orders.components.OrderList.4205493358":"Date","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"État","src.orders.components.OrderListFilter.1756106276":"État","src.plugins.components.PluginInfo.1756106276":"État","src.products.components.ProductListFilter.1756106276":"État","src.products.components.ProductVariants.1756106276":"État","src.customers.components.CustomerOrders.878013594":"Total","src.orders.components.OrderDraftDetailsProducts.878013594":"Total","src.orders.components.OrderDraftDetailsSummary.878013594":"Total","src.orders.components.OrderDraftList.878013594":"Total","src.orders.components.OrderFulfillment.878013594":"Total","src.orders.components.OrderUnfulfilledItems.878013594":"Total","src.orders.components.OrderList.878013594":"Total","src.orders.components.OrderPayment.878013594":"Total","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"Effacer l'adresse","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.CustomerList.1946482599":"","src.customers.views.CustomerList.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","src.discounts.components.SaleListPage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"Valeur","src.discounts.components.SaleSummary.1148029984":"Valeur","src.discounts.components.VoucherList.1148029984":"Valeur","src.discounts.components.VoucherSummary.1148029984":"Valeur","src.discounts.components.VoucherValue.1148029984":"Valeur","src.products.components.ProductAttributes.1148029984":"Valeur","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.3907768880":"","src.discounts.components.SaleListPage.1866913828":"","src.translations.components.TranslationsEntitiesListPage.1866913828":"","src.discounts.components.SalePricing.1099355007":"Prix","src.products.components.ProductPricing.1099355007":"Prix","src.products.components.ProductVariantPrice.1099355007":"Prix","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"Pays","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"Code","src.discounts.components.VoucherSummary.78726751":"Code","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.614836274":"","src.discounts.components.VoucherListPage.1112241061":"","src.discounts.components.VoucherListPage.1930485532":"","src.translations.components.TranslationsEntitiesListPage.1930485532":"","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"Des produits spécifiques","src.discounts.shipment":"Livraison","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.SaleList.2809303671":"","src.discounts.views.SaleList.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.VoucherList.367317371":"","src.discounts.views.VoucherList.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"Activité","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.somethingWentWrong":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"Annuler","src.orders.views.OrderList.3528672691":"Annuler","src.confirm":"","src.delete":"Effacer","src.edit":"Modifier","src.manage":"","src.remove":"Supprimer","src.save":"Sauvegarder","src.show":"","src.undo":"","src.attributes":"Attributs","src.products.components.ProductAttributes.4153345096":"Attributs","src.categories":"Catégories","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"Collections","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"Configuration","src.customers":"Clients","src.draftOrders":"","src.home":"Accueil","src.navigation":"Navigation","src.orders":"Commandes","src.pages":"Pages","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.plugins":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"Ventes","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"TVA","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"TVA","src.taxes.components.CountryListPage.3955023266":"TVA","src.translations":"","src.vouchers":"Bons d'achats","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"Paiement totalement effectué","src.partiallyPaid":"","src.partiallyRefunded":"","src.refunded":"Totalement remboursé","src.unpaid":"","src.cancelled":"Annulé","src.draft":"Brouillon","src.fulfilled":"Traitée","src.orders.views.OrderList.fulfilled":"Traitée","src.orders.components.OrderListFilter.1712863026":"Traitée","src.partiallyFulfilled":"En cours de traitement","src.unfulfilled":"En attente","src.orders.views.OrderList.unfulfilled":"En attente","src.orders.components.OrderListFilter.1751787272":"En attente","src.accommodation":"","src.admissionToCulturalEvents":"Admission à des événements culturel","src.admissionToEntertainmentEvents":"Admission à des événements de divertissement","src.admissionToSportingEvents":"Admission à des événements sportifs","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"Eau","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"Lien hypertexte","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"Annuler la commande","src.orders.components.OrderDetailsPage.1854613983":"Annuler la commande","src.orders.components.OrderDraftPage.1854613983":"Annuler la commande","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"Client","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"Client","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"Voir profil","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"Même adresse que la livraison","src.orders.components.OrderCustomerEditDialog.1411666943":"Modifier les détails du client","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.632633254":"","src.orders.components.OrderDraftCancelDialog.36681973":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"Ajouter des produits","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"Produit","src.orders.components.OrderUnfulfilledItems.1895667608":"Produit","src.orders.components.OrderDraftDetailsProducts.2796503714":"Quantité","src.orders.components.OrderFulfillment.2796503714":"Quantité","src.orders.components.OrderFulfillmentDialog.2796503714":"Quantité","src.orders.components.OrderUnfulfilledItems.2796503714":"Quantité","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"Sous-total","src.orders.components.OrderPayment.781550514":"Sous-total","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"Créer la commande","src.orders.components.OrderListPage.2826235371":"Créer la commande","src.orders.components.OrderDraftListPage.551325728":"","src.orders.components.OrderDraftListPage.77765281":"","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"Annuler la livraison","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"Ajouter un suivi","src.orders.components.OrderFulfillmentCancelDialog.732594284":"Annuler l'expédition","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"Annuler l'expédition","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"Référence","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"Numéro de suivi","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"Ajouter un numéro de suivi","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.4067959693":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"La commande a été passée","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"Paiement","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2415661583":"","src.orders.views.OrderList.readyToCapture":"","src.orders.components.OrderListFilter.2222765704":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"La livraison","src.productTypes.components.ProductTypeShipping.1325966144":"La livraison","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"La livraison","src.orders.components.OrderPayment.3768782744":"Montant pré-autorisé","src.orders.components.OrderPayment.2320183694":"Montant saisi","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"Saisie","src.orders.components.OrderPayment.2845258362":"Remboursement","src.orders.components.OrderPayment.2444197639":"","src.orders.components.OrderPayment.3500506678":"Marquer payé","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"Montant","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.1542417144":"","src.products.components.ProductListPage.1542417144":"","src.products.views.1542417144":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"Expédier","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.OrderDraftList.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.OrderDraftList.1648805446":"","src.orders.views.OrderDraftList.1161115149":"","src.orders.views.OrderDraftList.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.1068617485":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"Titre","src.pages.components.PageList.1124600214":"Titre","src.pages.components.PageInfo.1116746286":"Contenu","src.translations.components.TranslationsPagesPage.1116746286":"Contenu","src.pages.components.PageList.3478065224":"Slug","src.pages.components.PageSlug.3478065224":"Slug","src.productTypes.components.ProductTypeAttributes.3478065224":"Slug","src.pages.components.PageList.3767550649":"Non Publié","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.3785394515":"","src.pages.views.3785394515":"","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.plugins.components.PluginInfo.3425535100":"","src.plugins.components.PluginsDetailsPage.3425535100":"","src.plugins.components.PluginInfo.1049131348":"","src.plugins.components.PluginInfo.4013064767":"","src.plugins.components.PluginsDetailsPage.3352026836":"","src.plugins.components.PluginsDetailsPage.2277745418":"","src.plugins.components.PluginsDetailsPage.1970881031":"","src.plugins.components.PluginSettings.1970881031":"","src.plugins.components.PluginsDetailsPage.4241018152":"","src.plugins.components.PluginsList.3247064221":"Activé","src.staff.components.StaffList.3247064221":"Activé","src.plugins.components.PluginsList.4120604650":"","src.plugins.components.PluginsList.666641390":"","src.plugins.views.100549097":"","src.products.components.ProductAttributes.1071548120":"{number} Attributs","src.products.components.ProductAttributes.1207761269":"Valeurs","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"Photos","src.products.components.ProductVariantImages.3240888698":"Photos","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"Stock","src.products.components.ProductVariantStock.3841616483":"Stock","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListFilter.821159718":"","src.products.components.ProductListFilter.1421689426":"","src.products.components.ProductListFilter.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"*Optionnel. Ajouter un produit à une collection aide l'utilisateur à le trouver.","src.products.components.ProductPricing.3015886868":"","productStockHeader":"Inventaire","prodictStockInventoryLabel":"Inventaire","src.products.components.ProductVariantStock.3490038570":"Inventaire","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"Effacer la variante","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"Variantes","src.products.components.ProductVariants.2153006789":"Variantes","src.products.components.ProductVariantNavigation.2845381934":"Ajouter une variante","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.3989383405":"","src.products.views.3989383405":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1591632382":"","src.products.views.1731766393":"","src.products.views.2880386427":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"Attributs de la variante","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1217376589":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.3479705616":"","src.productTypes.components.ProductTypeListPage.1776073799":"","src.productTypes.components.ProductTypeListPage.3420445375":"","src.translations.components.TranslationsEntitiesListPage.3420445375":"","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.ProductTypeList.4080551769":"","src.productTypes.views.ProductTypeList.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRates.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2673544109":"","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.1947090060":"","src.shipping.views.ShippingZoneDetails.131963671":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"Ajouter une nouvelle clé d'autorisation","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"Clé","src.siteSettings.components.SiteSettingsKeys.2446088470":"Clé","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.1481503299":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"Droits","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.797461521":"","src.staff.components.StaffListPage.2852350932":"","src.staff.components.StaffListPage.61043583":"","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"L'utilisateur a un accès complet au magasin","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"Statut du compte","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"L'utilisateur est activé","src.staff.views.1308770978":"","src.staff.views.8878988":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.2105464697":"","src.translations.components.TranslationsEntitiesListPage.2559018090":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file diff --git a/locale/fr.po b/locale/fr.po index 3ad63e866..d9b1c5d4e 100644 --- a/locale/fr.po +++ b/locale/fr.po @@ -5,11 +5,12 @@ # Da Costa Faro Rémy , 2019 # benoit barthelet , 2019 # NyаnKiyoshi , 2019 +# Thomas LOSBAR , 2019 # msgid "" msgstr "" -"POT-Creation-Date: 2019-09-06T13:56:36.897Z\n" -"Last-Translator: NyаnKiyoshi , 2019\n" +"POT-Creation-Date: 2019-09-16T15:25:09.340Z\n" +"Last-Translator: Thomas LOSBAR , 2019\n" "Language-Team: French (https://www.transifex.com/mirumee/teams/34782/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,7 +30,7 @@ msgstr "" #: build/locale/src/collections/components/CollectionImage/CollectionImage.json msgctxt "field is optional" msgid "(Optional)" -msgstr "" +msgstr "(Optionnel)" #. [src.products.components.ProductOrganization.2805838453] - field is #. optional @@ -39,6 +40,8 @@ msgstr "" msgctxt "field is optional" msgid "*Optional. Adding product to collection helps users find it." msgstr "" +"*Optionnel. Ajouter un produit à une collection aide l'utilisateur à le " +"trouver." #. [src.attributes.views.AttributeCreate.2348058468] - attribute value edit #. error @@ -47,7 +50,7 @@ msgstr "" #: build/locale/src/attributes/views/AttributeCreate/AttributeCreate.json msgctxt "attribute value edit error" msgid "A value named {name} already exists" -msgstr "" +msgstr "Une valeur nommée {name} existe déjà" #. [src.accommodation] - tax rate #. defaultMessage is: @@ -63,7 +66,7 @@ msgstr "" #: build/locale/src/staff/components/StaffStatus/StaffStatus.json msgctxt "section header" msgid "Account Status" -msgstr "" +msgstr "Statut du compte" #. [src.plugins.components.PluginsList.4120604650] - user action bar #. defaultMessage is: @@ -104,7 +107,7 @@ msgstr "" #: build/locale/src/home/components/HomeActivityCard/HomeActivityCard.json msgctxt "header" msgid "Activity" -msgstr "" +msgstr "Activité" #. [src.components.ListField.3099331554] - button #. defaultMessage is: @@ -120,7 +123,7 @@ msgstr "Ajouter" #: build/locale/src/customers/components/CustomerAddressDialog/CustomerAddressDialog.json msgctxt "dialog title" msgid "Add Address" -msgstr "" +msgstr "Ajouter une adresse" #. [src.components.Filter.2852521946] - button #. defaultMessage is: @@ -128,7 +131,7 @@ msgstr "" #: build/locale/src/components/Filter/Filter.json msgctxt "button" msgid "Add Filter" -msgstr "" +msgstr "Ajouter un filtre" #. [src.components.RichTextEditor.1603794322] - dialog header #. defaultMessage is: @@ -136,7 +139,7 @@ msgstr "" #: build/locale/src/components/RichTextEditor/ImageSource.json msgctxt "dialog header" msgid "Add Image Link" -msgstr "" +msgstr "Ajouter le lien d'une image" #. [menuItemDialogAddItem] - create new menu item, header #. defaultMessage is: @@ -146,22 +149,6 @@ msgctxt "create new menu item, header" msgid "Add Item" msgstr "" -#. [menuCreateDialogHeader] - dialog header -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json -msgctxt "dialog header" -msgid "Add Menu" -msgstr "" - -#. [menuListPageAddMenu] - button -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json -msgctxt "button" -msgid "Add Menu" -msgstr "" - #. [src.siteSettings.components.SiteSettingsKeyDialog.1238948746] - dialog #. header #. defaultMessage is: @@ -169,15 +156,7 @@ msgstr "" #: build/locale/src/siteSettings/components/SiteSettingsKeyDialog/SiteSettingsKeyDialog.json msgctxt "dialog header" msgid "Add New Authorization Key" -msgstr "" - -#. [src.pages.components.PageDetailsPage.755314116] - page header -#. defaultMessage is: -#. Add Page -#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json -msgctxt "page header" -msgid "Add Page" -msgstr "" +msgstr "Ajouter une nouvelle clé d'autorisation" #. [src.shipping.components.ShippingZoneRateDialog.2892088870] - dialog header #. defaultMessage is: @@ -187,38 +166,6 @@ msgctxt "dialog header" msgid "Add Price Rate" msgstr "" -#. [src.orders.components.OrderProductAddDialog.2775402904] - dialog header -#. defaultMessage is: -#. Add Product -#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json -msgctxt "dialog header" -msgid "Add Product" -msgstr "" - -#. [src.products.components.ProductListPage.2775402904] - button -#. defaultMessage is: -#. Add Product -#: build/locale/src/products/components/ProductListPage/ProductListPage.json -msgctxt "button" -msgid "Add Product" -msgstr "" - -#. [src.discounts.components.SaleListPage.1742771332] - button -#. defaultMessage is: -#. Add Sale -#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json -msgctxt "button" -msgid "Add Sale" -msgstr "" - -#. [src.staff.components.StaffAddMemberDialog.3490059488] - dialog header -#. defaultMessage is: -#. Add Staff Member -#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json -msgctxt "dialog header" -msgid "Add Staff Member" -msgstr "" - #. [src.attributes.components.AttributeValueEditDialog.1841790893] - add #. attribute value #. defaultMessage is: @@ -226,15 +173,7 @@ msgstr "" #: build/locale/src/attributes/components/AttributeValueEditDialog/AttributeValueEditDialog.json msgctxt "add attribute value" msgid "Add Value" -msgstr "" - -#. [src.products.views.2178905289] - header -#. defaultMessage is: -#. Add Variant -#: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "header" -msgid "Add Variant" -msgstr "" +msgstr "Ajouter une valeur" #. [src.shipping.components.ShippingZoneRateDialog.1397795758] - add weight #. based shipping method, dialog header @@ -251,15 +190,7 @@ msgstr "" #: build/locale/src/customers/components/CustomerAddressListPage/CustomerAddressListPage.json msgctxt "button" msgid "Add address" -msgstr "" - -#. [src.attributes.components.AttributeListPage.350498821] - button -#. defaultMessage is: -#. Add attribute -#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json -msgctxt "button" -msgid "Add attribute" -msgstr "Ajouter un attribut" +msgstr "Ajouter une adresse" #. [src.siteSettings.components.SiteSettingsKeyDialog.50561933] - button #. defaultMessage is: @@ -269,14 +200,6 @@ msgctxt "button" msgid "Add authentication" msgstr "" -#. [src.categories.components.CategoryListPage.228151782] - button -#. defaultMessage is: -#. Add category -#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json -msgctxt "button" -msgid "Add category" -msgstr "Ajouter une catégorie" - #. [src.collections.components.CollectionCreatePage.3958681866] - page header #. defaultMessage is: #. Add collection @@ -285,14 +208,6 @@ msgctxt "page header" msgid "Add collection" msgstr "Ajouter une collection" -#. [src.collections.components.CollectionListPage.3958681866] - button -#. defaultMessage is: -#. Add collection -#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json -msgctxt "button" -msgid "Add collection" -msgstr "Ajouter une collection" - #. [src.customers.components.CustomerCreatePage.1934221653] - page header #. defaultMessage is: #. Add customer @@ -315,7 +230,7 @@ msgstr "Ajouter le client" #: build/locale/src/components/Filter/FilterContent.json msgctxt "button" msgid "Add filter" -msgstr "" +msgstr "Ajouter un filtre" #. [src.siteSettings.components.SiteSettingsKeys.1114030884] - button #. defaultMessage is: @@ -325,14 +240,6 @@ msgctxt "button" msgid "Add key" msgstr "" -#. [menuItemsAddItem] - add new menu item -#. defaultMessage is: -#. Add new item -#: build/locale/src/navigation/components/MenuItems/MenuItems.json -msgctxt "add new menu item" -msgid "Add new item" -msgstr "" - #. [menuItemsPlaceholder] #. defaultMessage is: #. Add new menu item to begin creating menu @@ -348,7 +255,7 @@ msgstr "" #: build/locale/src/components/MultiAutocompleteSelectField/MultiAutocompleteSelectField.json msgctxt "add custom option to select input" msgid "Add new value: {value}" -msgstr "" +msgstr "Ajouter la nouvelle valeur: {value}" #. [src.components.SingleAutocompleteSelectField.1477537381] - add custom #. select input option @@ -357,7 +264,7 @@ msgstr "" #: build/locale/src/components/SingleAutocompleteSelectField/SingleAutocompleteSelectField.json msgctxt "add custom select input option" msgid "Add new value: {value}" -msgstr "" +msgstr "Ajouter la nouvelle valeur: {value}" #. [src.components.RichTextEditor.2160163587] - button #. defaultMessage is: @@ -367,14 +274,6 @@ msgctxt "button" msgid "Add or Edit Link" msgstr "" -#. [src.pages.components.PageListPage.1767905232] - button -#. defaultMessage is: -#. Add page -#: build/locale/src/pages/components/PageListPage/PageListPage.json -msgctxt "button" -msgid "Add page" -msgstr "Ajouter une page" - #. [src.categories.components.CategoryProducts.3554578821] - button #. defaultMessage is: #. Add product @@ -383,29 +282,13 @@ msgctxt "button" msgid "Add product" msgstr "Ajouter un produit" -#. [src.productTypes.components.ProductTypeListPage.889729490] - button -#. defaultMessage is: -#. Add product type -#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json -msgctxt "button" -msgid "Add product type" -msgstr "Ajouter un type de produit" - #. [src.orders.components.OrderDraftDetails.2528459381] - button #. defaultMessage is: #. Add products #: build/locale/src/orders/components/OrderDraftDetails/OrderDraftDetails.json msgctxt "button" msgid "Add products" -msgstr "" - -#. [src.shipping.components.ShippingZoneRates.352297149] - button -#. defaultMessage is: -#. Add rate -#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json -msgctxt "button" -msgid "Add rate" -msgstr "" +msgstr "Ajouter des produits" #. [src.categories.components.CategoryCreatePage.2563994280] #. defaultMessage is: @@ -468,30 +351,6 @@ msgctxt "button" msgid "Add shipping carrier" msgstr "" -#. [src.shipping.components.ShippingZonesList.2474410767] - button -#. defaultMessage is: -#. Add shipping zone -#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json -msgctxt "button" -msgid "Add shipping zone" -msgstr "" - -#. [src.staff.components.StaffListPage.802625341] - button -#. defaultMessage is: -#. Add staff member -#: build/locale/src/staff/components/StaffListPage/StaffListPage.json -msgctxt "button" -msgid "Add staff member" -msgstr "Ajouter un membre au personnel" - -#. [src.categories.components.CategoryList.435697837] - button -#. defaultMessage is: -#. Add subcategory -#: build/locale/src/categories/components/CategoryList/CategoryList.json -msgctxt "button" -msgid "Add subcategory" -msgstr "" - #. [src.attributes.components.AttributeProperties.673770329] - add attribute #. as column in product list table #. defaultMessage is: @@ -517,37 +376,16 @@ msgstr "Ajouter un suivi" #: build/locale/src/orders/components/OrderFulfillmentTrackingDialog/OrderFulfillmentTrackingDialog.json msgctxt "dialog header" msgid "Add tracking code" -msgstr "" - -#. [src.attributes.components.AttributeValues.254756045] - add attribute value -#. button -#. defaultMessage is: -#. Add value -#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json -msgctxt "add attribute value button" -msgid "Add value" -msgstr "" +msgstr "Ajouter un numéro de suivi" #. [src.products.components.ProductVariantNavigation.2845381934] - button #. defaultMessage is: #. Add variant -#. [src.products.components.ProductVariants.2845381934] - button -#. defaultMessage is: -#. Add variant #: build/locale/src/products/components/ProductVariantNavigation/ProductVariantNavigation.json -#: build/locale/src/products/components/ProductVariants/ProductVariants.json msgctxt "button" msgid "Add variant" msgstr "Ajouter une variante" -#. [src.discounts.components.VoucherListPage.1536809153] - button -#. defaultMessage is: -#. Add voucher -#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json -msgctxt "button" -msgid "Add voucher" -msgstr "Ajouter un bon d'achat" - #. [src.attributes.views.AttributeDetails.634268988] - added new attribute #. value #. defaultMessage is: @@ -555,7 +393,7 @@ msgstr "Ajouter un bon d'achat" #: build/locale/src/attributes/views/AttributeDetails/AttributeDetails.json msgctxt "added new attribute value" msgid "Added new value" -msgstr "" +msgstr "La nouvelle valeur a été ajoutée" #. [src.collections.views.2001540731] #. defaultMessage is: @@ -563,7 +401,7 @@ msgstr "" #: build/locale/src/collections/views/CollectionDetails.json msgctxt "description" msgid "Added product to collection" -msgstr "" +msgstr "Le produit a été ajouté à la collection" #. [src.customers.components.CustomerAddresses.359810770] - subsection header #. defaultMessage is: @@ -605,14 +443,6 @@ msgctxt "description" msgid "Address line 2" msgstr "" -#. [src.customers.components.CustomerAddress.1320082647] - addres card header -#. defaultMessage is: -#. Address {addressNumber} -#: build/locale/src/customers/components/CustomerAddress/CustomerAddress.json -msgctxt "addres card header" -msgid "Address {addressNumber}" -msgstr "" - #. [src.attributes.components.AttributeValues.1565474525] - attribute values #. list: slug column header #. defaultMessage is: @@ -628,7 +458,7 @@ msgstr "" #: build/locale/src/misc.json msgctxt "tax rate" msgid "Admission to cultural events" -msgstr "" +msgstr "Admission à des événements culturel" #. [src.admissionToEntertainmentEvents] - tax rate #. defaultMessage is: @@ -636,7 +466,7 @@ msgstr "" #: build/locale/src/misc.json msgctxt "tax rate" msgid "Admission to entertainment events" -msgstr "" +msgstr "Admission à des événements de divertissement" #. [src.admissionToSportingEvents] - tax rate #. defaultMessage is: @@ -644,7 +474,7 @@ msgstr "" #: build/locale/src/misc.json msgctxt "tax rate" msgid "Admission to sporting events" -msgstr "" +msgstr "Admission à des événements sportifs" #. [src.advertising] - tax rate #. defaultMessage is: @@ -662,6 +492,46 @@ msgctxt "tax rate" msgid "Agricultural supplies" msgstr "" +#. [src.attributes.components.AttributeListPage.2417065806] - tab name +#. defaultMessage is: +#. All Attributes +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "tab name" +msgid "All Attributes" +msgstr "" + +#. [src.categories.components.CategoryListPage.4294878092] - tab name +#. defaultMessage is: +#. All Categories +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "tab name" +msgid "All Categories" +msgstr "" + +#. [src.collections.components.CollectionListPage.1631917001] - tab name +#. defaultMessage is: +#. All Collections +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "tab name" +msgid "All Collections" +msgstr "" + +#. [src.customers.components.CustomerListPage.477293306] - tab name +#. defaultMessage is: +#. All Customers +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "tab name" +msgid "All Customers" +msgstr "" + +#. [src.orders.components.OrderDraftListPage.551325728] - tab name +#. defaultMessage is: +#. All Drafts +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "tab name" +msgid "All Drafts" +msgstr "" + #. [src.orders.components.OrderListPage.875489544] - tab name #. defaultMessage is: #. All Orders @@ -679,22 +549,54 @@ msgctxt "section header" msgid "All Photos" msgstr "" -#. [src.products.components.ProductListPage.821159718] - tab name +#. [src.productTypes.components.ProductTypeListPage.1776073799] - tab name +#. defaultMessage is: +#. All Product Types +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "tab name" +msgid "All Product Types" +msgstr "" + +#. [src.products.components.ProductListFilter.821159718] - tab name #. defaultMessage is: #. All Products -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "tab name" msgid "All Products" msgstr "" -#. [src.categories.components.CategoryList.3229914152] - section header +#. [src.discounts.components.SaleListPage.3907768880] - tab name +#. defaultMessage is: +#. All Sales +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "tab name" +msgid "All Sales" +msgstr "" + +#. [src.staff.components.StaffListPage.2852350932] - tab name +#. defaultMessage is: +#. All Staff Members +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "tab name" +msgid "All Staff Members" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.3229914152] - section header #. defaultMessage is: #. All Subcategories -#: build/locale/src/categories/components/CategoryList/CategoryList.json +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json msgctxt "section header" msgid "All Subcategories" msgstr "" +#. [src.discounts.components.VoucherListPage.1112241061] - tab name +#. defaultMessage is: +#. All Vouchers +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "tab name" +msgid "All Vouchers" +msgstr "" + #. [src.taxes.components.TaxConfiguration.142803418] #. defaultMessage is: #. All products prices are entered with tax included @@ -802,6 +704,14 @@ msgctxt "description" msgid "Are you sure you want to delete collection's image?" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.36681973] +#. defaultMessage is: +#. Are you sure you want to delete draft #{number}? +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "description" +msgid "Are you sure you want to delete draft #{number}?" +msgstr "" + #. [menuDetailsDeleteMenuContent] #. defaultMessage is: #. Are you sure you want to delete menu {menuName}? @@ -818,6 +728,14 @@ msgctxt "description" msgid "Are you sure you want to delete this address from users address book?" msgstr "" +#. [src.products.views.2880386427] +#. defaultMessage is: +#. Are you sure you want to delete this image? +#: build/locale/src/products/views/ProductImage.json +msgctxt "description" +msgid "Are you sure you want to delete this image?" +msgstr "" + #. [src.attributes.components.AttributeDeleteDialog.3738429348] - dialog #. content #. defaultMessage is: @@ -868,12 +786,7 @@ msgstr "" #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this attribute} #. other{{displayQuantity} categories}}? -#. [src.categories.views.844574071] -#. defaultMessage is: -#. Are you sure you want to delete {counter,plural,one{this attribute} -#. other{{displayQuantity} categories}}? #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this attribute} " @@ -891,22 +804,33 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.2497542455] +#. [src.categories.views.CategoryList.2144707585] +#. defaultMessage is: +#. Are you sure you want to delete {counter,plural,one{this category} +#. other{{displayQuantity} categories}}? +#: build/locale/src/categories/views/CategoryList/CategoryList.json +msgctxt "description" +msgid "" +"Are you sure you want to delete {counter,plural,one{this category} " +"other{{displayQuantity} categories}}?" +msgstr "" + +#. [src.collections.views.CollectionList.2497542455] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this collection} " "other{{displayQuantity} collections}}?" msgstr "" -#. [src.customers.views.409347866] +#. [src.customers.views.CustomerList.409347866] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this customer} #. other{{displayQuantity} customers}}? -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this customer} " @@ -924,11 +848,11 @@ msgid "" "other{{displayQuantity} menus}}?" msgstr "" -#. [src.orders.views.1389231130] - dialog content +#. [src.orders.views.OrderDraftList.1389231130] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this order draft} #. other{{displayQuantity} orderDrafts}}? -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this order draft} " @@ -946,11 +870,11 @@ msgid "" "other{{displayQuantity} pages}}?" msgstr "" -#. [src.productTypes.views.2294091098] - dialog content +#. [src.productTypes.views.ProductTypeList.2294091098] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this product type} #. other{{displayQuantity} product types}}? -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this product type} " @@ -968,11 +892,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.discounts.views.2516361175] - dialog content +#. [src.discounts.views.SaleList.2516361175] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this sale} #. other{{displayQuantity} sales}}? -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this sale} " @@ -1001,17 +925,33 @@ msgid "" "other{{displayQuantity} variants}}?" msgstr "" -#. [src.discounts.views.1791926983] - dialog content +#. [src.discounts.views.VoucherList.1791926983] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this voucher} #. other{{displayQuantity} vouchers}}? -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this voucher} " "other{{displayQuantity} vouchers}}?" msgstr "" +#. [src.shipping.views.ShippingZoneDetails.131963671] - unassign country +#. defaultMessage is: +#. Are you sure you want to delete {countryName} from this shipping zone? +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country" +msgid "Are you sure you want to delete {countryName} from this shipping zone?" +msgstr "" + +#. [src.staff.views.8878988] +#. defaultMessage is: +#. Are you sure you want to delete {email} from staff members? +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "description" +msgid "Are you sure you want to delete {email} from staff members?" +msgstr "" + #. [src.customers.views.1927691511] - delete customer, dialog content #. defaultMessage is: #. Are you sure you want to delete {email}? @@ -1126,11 +1066,11 @@ msgctxt "description" msgid "Are you sure you want to mark this order as paid?" msgstr "" -#. [src.collections.views.1348793822] +#. [src.collections.views.CollectionList.1348793822] #. defaultMessage is: #. Are you sure you want to publish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to publish {counter,plural,one{this collection} " @@ -1159,30 +1099,6 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.orders.components.OrderDraftCancelDialog.3199827590] -#. defaultMessage is: -#. Are you sure you want to remove draft #{number}? -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "description" -msgid "Are you sure you want to remove draft #{number}?" -msgstr "" - -#. [src.products.views.672103788] -#. defaultMessage is: -#. Are you sure you want to remove this image? -#: build/locale/src/products/views/ProductImage.json -msgctxt "description" -msgid "Are you sure you want to remove this image?" -msgstr "" - -#. [src.shipping.views.ShippingZoneDetails.1790261672] - unassign country -#. defaultMessage is: -#. Are you sure you want to remove {countryName} from this shipping zone? -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country" -msgid "Are you sure you want to remove {countryName} from this shipping zone?" -msgstr "" - #. [src.staff.views.3945766678] #. defaultMessage is: #. Are you sure you want to remove {email} avatar? @@ -1191,14 +1107,6 @@ msgctxt "description" msgid "Are you sure you want to remove {email} avatar?" msgstr "" -#. [src.staff.views.2728048444] -#. defaultMessage is: -#. Are you sure you want to remove {email} from staff members? -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "description" -msgid "Are you sure you want to remove {email} from staff members?" -msgstr "" - #. [src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450] #. defaultMessage is: #. Are you sure you want to unassign {attributeName} from {productTypeName}? @@ -1279,11 +1187,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.3944356444] +#. [src.collections.views.CollectionList.3944356444] #. defaultMessage is: #. Are you sure you want to unpublish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to unpublish {counter,plural,one{this collection} " @@ -1444,6 +1352,15 @@ msgctxt "button" msgid "Assign products" msgstr "" +#. [src.attributes.components.AttributeValues.351422234] - assign attribute +#. value button +#. defaultMessage is: +#. Assign value +#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json +msgctxt "assign attribute value button" +msgid "Assign value" +msgstr "" + #. [src.attributes.components.AttributeDetails.3605174225] - attribute's slug #. short code label #. defaultMessage is: @@ -1522,6 +1439,14 @@ msgctxt "product attributes, section header" msgid "Attributes" msgstr "Attributs" +#. [src.configuration.2326418019] +#. defaultMessage is: +#. Attributes and Product Typess +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Attributes and Product Typess" +msgstr "" + #. [src.attributes.views.AttributeList.3218248395] - deleted multiple #. attributes #. defaultMessage is: @@ -2305,6 +2230,22 @@ msgctxt "description" msgid "Country area" msgstr "" +#. [menuCreateDialogHeader] - dialog header +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json +msgctxt "dialog header" +msgid "Create Menu" +msgstr "" + +#. [menuListPageAddMenu] - button +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json +msgctxt "button" +msgid "Create Menu" +msgstr "" + #. [src.attributes.components.AttributePage.2855501559] - page title #. defaultMessage is: #. Create New Attribute @@ -2329,6 +2270,30 @@ msgctxt "header" msgid "Create New Shipping Zone" msgstr "" +#. [src.pages.components.PageDetailsPage.1068617485] - page header +#. defaultMessage is: +#. Create Page +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page header" +msgid "Create Page" +msgstr "" + +#. [src.orders.components.OrderProductAddDialog.1542417144] - dialog header +#. defaultMessage is: +#. Create Product +#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json +msgctxt "dialog header" +msgid "Create Product" +msgstr "" + +#. [src.products.components.ProductListPage.1542417144] - button +#. defaultMessage is: +#. Create Product +#: build/locale/src/products/components/ProductListPage/ProductListPage.json +msgctxt "button" +msgid "Create Product" +msgstr "" + #. [src.products.views.1542417144] - window title #. defaultMessage is: #. Create Product @@ -2361,11 +2326,19 @@ msgctxt "page header" msgid "Create Sale" msgstr "" -#. [src.products.views.2362587265] - window title +#. [src.discounts.components.SaleListPage.3866518732] - button +#. defaultMessage is: +#. Create Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "button" +msgid "Create Sale" +msgstr "" + +#. [src.products.views.2362587265] - header #. defaultMessage is: #. Create Variant #: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "window title" +msgctxt "header" msgid "Create Variant" msgstr "" @@ -2377,6 +2350,22 @@ msgctxt "page header" msgid "Create Voucher" msgstr "" +#. [src.attributes.components.AttributeListPage.3824684885] - button +#. defaultMessage is: +#. Create attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "button" +msgid "Create attribute" +msgstr "" + +#. [src.categories.components.CategoryListPage.1140231710] - button +#. defaultMessage is: +#. Create category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "button" +msgid "Create category" +msgstr "" + #. [src.categories.views.1140231710] - window title #. defaultMessage is: #. Create category @@ -2385,6 +2374,14 @@ msgctxt "window title" msgid "Create category" msgstr "" +#. [src.collections.components.CollectionListPage.686910896] - button +#. defaultMessage is: +#. Create collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "button" +msgid "Create collection" +msgstr "" + #. [src.collections.views.686910896] - window title #. defaultMessage is: #. Create collection @@ -2401,6 +2398,14 @@ msgctxt "window title" msgid "Create customer" msgstr "" +#. [menuItemsAddItem] - add new menu item +#. defaultMessage is: +#. Create new item +#: build/locale/src/navigation/components/MenuItems/MenuItems.json +msgctxt "add new menu item" +msgid "Create new item" +msgstr "" + #. [src.orders.components.OrderDraftListPage.2826235371] - button #. defaultMessage is: #. Create order @@ -2413,6 +2418,14 @@ msgctxt "button" msgid "Create order" msgstr "Créer la commande" +#. [src.pages.components.PageListPage.3785394515] - button +#. defaultMessage is: +#. Create page +#: build/locale/src/pages/components/PageListPage/PageListPage.json +msgctxt "button" +msgid "Create page" +msgstr "" + #. [src.pages.views.3785394515] - header #. defaultMessage is: #. Create page @@ -2424,11 +2437,55 @@ msgstr "" #. [src.shipping.components.ShippingZoneRateDialog.16061680] - button #. defaultMessage is: #. Create rate +#. [src.shipping.components.ShippingZoneRates.16061680] - button +#. defaultMessage is: +#. Create rate #: build/locale/src/shipping/components/ShippingZoneRateDialog/ShippingZoneRateDialog.json +#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json msgctxt "button" msgid "Create rate" msgstr "" +#. [src.shipping.components.ShippingZonesList.2673544109] - button +#. defaultMessage is: +#. Create shipping zone +#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json +msgctxt "button" +msgid "Create shipping zone" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.770296100] - button +#. defaultMessage is: +#. Create subcategory +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json +msgctxt "button" +msgid "Create subcategory" +msgstr "" + +#. [src.products.components.ProductVariants.3989383405] - button +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/components/ProductVariants/ProductVariants.json +msgctxt "button" +msgid "Create variant" +msgstr "" + +#. [src.products.views.3989383405] - window title +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/views/ProductVariantCreate.json +msgctxt "window title" +msgid "Create variant" +msgstr "" + +#. [src.discounts.components.VoucherListPage.614836274] - button +#. defaultMessage is: +#. Create voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "button" +msgid "Create voucher" +msgstr "" + #. [src.collections.views.1597339737] #. defaultMessage is: #. Created collection @@ -2475,7 +2532,11 @@ msgstr "" #. [src.components.FilterBar.2340527467] #. defaultMessage is: #. Custom Filter +#. [src.components.SearchBar.2340527467] +#. defaultMessage is: +#. Custom Filter #: build/locale/src/components/FilterBar/FilterBar.json +#: build/locale/src/components/SearchBar/SearchBar.json msgctxt "description" msgid "Custom Filter" msgstr "" @@ -2731,10 +2792,18 @@ msgctxt "dialog title" msgid "Delete Collection" msgstr "" -#. [src.orders.views.1161115149] - dialog header +#. [src.products.views.1731766393] - dialog header +#. defaultMessage is: +#. Delete Image +#: build/locale/src/products/views/ProductImage.json +msgctxt "dialog header" +msgid "Delete Image" +msgstr "" + +#. [src.orders.views.OrderDraftList.1161115149] - dialog header #. defaultMessage is: #. Delete Order Drafts -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog header" msgid "Delete Order Drafts" msgstr "" @@ -2772,10 +2841,10 @@ msgctxt "dialog header" msgid "Delete Product Type" msgstr "" -#. [src.productTypes.views.4080551769] - dialog header +#. [src.productTypes.views.ProductTypeList.4080551769] - dialog header #. defaultMessage is: #. Delete Product Types -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog header" msgid "Delete Product Types" msgstr "" @@ -2804,10 +2873,10 @@ msgctxt "dialog header" msgid "Delete Sale" msgstr "" -#. [src.discounts.views.2809303671] - dialog header +#. [src.discounts.views.SaleList.2809303671] - dialog header #. defaultMessage is: #. Delete Sales -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog header" msgid "Delete Sales" msgstr "" @@ -2821,9 +2890,13 @@ msgctxt "custom search delete, dialog header" msgid "Delete Search" msgstr "" +#. [src.components.Filter.2173195312] - button +#. defaultMessage is: +#. Delete Search #. [src.components.TableFilter.2173195312] - button #. defaultMessage is: #. Delete Search +#: build/locale/src/components/Filter/FilterSearch.json #: build/locale/src/components/TableFilter/FilterChips.json msgctxt "button" msgid "Delete Search" @@ -2890,10 +2963,10 @@ msgctxt "dialog header" msgid "Delete Voucher" msgstr "" -#. [src.discounts.views.367317371] - dialog header +#. [src.discounts.views.VoucherList.367317371] - dialog header #. defaultMessage is: #. Delete Vouchers -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog header" msgid "Delete Vouchers" msgstr "" @@ -2927,11 +3000,11 @@ msgstr "" #. [src.categories.views.712767046] - dialog title #. defaultMessage is: #. Delete categories -#. [src.categories.views.712767046] - dialog title +#. [src.categories.views.CategoryList.712767046] - dialog title #. defaultMessage is: #. Delete categories #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "dialog title" msgid "Delete categories" msgstr "" @@ -2948,10 +3021,10 @@ msgctxt "dialog title" msgid "Delete category" msgstr "Effacer la catégorie" -#. [src.collections.views.3817188998] - dialog title +#. [src.collections.views.CollectionList.3817188998] - dialog title #. defaultMessage is: #. Delete collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Delete collections" msgstr "" @@ -2964,14 +3037,31 @@ msgctxt "dialog header" msgid "Delete customer" msgstr "" -#. [src.customers.views.1946482599] - dialog header +#. [src.customers.views.CustomerList.1946482599] - dialog header #. defaultMessage is: #. Delete customers -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "dialog header" msgid "Delete customers" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.632633254] - dialog header +#. defaultMessage is: +#. Delete draft order +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "dialog header" +msgid "Delete draft order" +msgstr "" + +#. [src.shipping.views.ShippingZoneDetails.1947090060] - unassign country, +#. dialog header +#. defaultMessage is: +#. Delete from shipping zone +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country, dialog header" +msgid "Delete from shipping zone" +msgstr "" + #. [src.collections.views.942133001] - dialog title #. defaultMessage is: #. Delete image @@ -3032,6 +3122,14 @@ msgctxt "description" msgid "Deleted collection" msgstr "Collection supprimée" +#. [src.orders.views.OrderDraftList.1648805446] +#. defaultMessage is: +#. Deleted draft orders +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json +msgctxt "description" +msgid "Deleted draft orders" +msgstr "" + #. [menuListDeletedMenu] #. defaultMessage is: #. Deleted menu @@ -3631,14 +3729,6 @@ msgctxt "order history message" msgid "Fulfilled {quantity} items" msgstr "" -#. [src.orders.components.OrderListFilter.2943502192] - order -#. defaultMessage is: -#. Fulfillment Status -#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json -msgctxt "order" -msgid "Fulfillment Status" -msgstr "" - #. [src.orders.components.OrderHistory.3081292385] - order history message #. defaultMessage is: #. Fulfillment confirmation was sent to customer @@ -3796,12 +3886,12 @@ msgid "If empty, the preview shows what will be autogenerated." msgstr "" "Si vide, la prévisualisation va montrer ce qui sera généré automatiquement." -#. [src.attributes.components.AttributeProperties.2519239682] +#. [src.attributes.components.AttributeProperties.4048785456] #. defaultMessage is: -#. If enable this attribute can be used as a column in product table. +#. If enabled this attribute can be used as a column in product table. #: build/locale/src/attributes/components/AttributeProperties/AttributeProperties.json msgctxt "description" -msgid "If enable this attribute can be used as a column in product table." +msgid "If enabled this attribute can be used as a column in product table." msgstr "" #. [src.attributes.components.AttributeProperties.787251583] @@ -3907,6 +3997,22 @@ msgctxt "product variant stock" msgid "Inventory" msgstr "Inventaire" +#. [src.staff.components.StaffAddMemberDialog.1481503299] - dialog header +#. defaultMessage is: +#. Invite Staff Member +#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json +msgctxt "dialog header" +msgid "Invite Staff Member" +msgstr "" + +#. [src.staff.components.StaffListPage.797461521] - button +#. defaultMessage is: +#. Invite staff member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "button" +msgid "Invite staff member" +msgstr "" + #. [src.productTypes.components.ProductTypeShipping.2143413921] - switch #. button #. defaultMessage is: @@ -4259,6 +4365,14 @@ msgctxt "voucher requirement" msgid "Minimum quantity of items" msgstr "" +#. [src.configuration.1233229030] +#. defaultMessage is: +#. Miscellaneous +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Miscellaneous" +msgstr "" + #. [src.attributes.components.AttributeDetails.3334509011] - product attribute #. type #. defaultMessage is: @@ -5091,6 +5205,14 @@ msgctxt "description" msgid "Order History" msgstr "" +#. [src.orders.components.OrderListFilter.2222765704] +#. defaultMessage is: +#. Order Status +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +msgctxt "description" +msgid "Order Status" +msgstr "" + #. [src.orders.components.OrderHistory.1230178536] - order history message #. defaultMessage is: #. Order address was updated @@ -5107,13 +5229,13 @@ msgctxt "order history message" msgid "Order confirmation was sent to customer" msgstr "" -#. [src.orders.views.1872939752] +#. [src.orders.views.OrderDraftList.1872939752] #. defaultMessage is: #. Order draft succesfully created #. [src.orders.views.OrderList.1872939752] #. defaultMessage is: #. Order draft succesfully created -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json #: build/locale/src/orders/views/OrderList/OrderList.json msgctxt "description" msgid "Order draft succesfully created" @@ -5778,6 +5900,14 @@ msgctxt "description" msgid "Product Name" msgstr "" +#. [src.configuration.3655543906] +#. defaultMessage is: +#. Product Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Product Settings" +msgstr "" + #. [src.discounts.components.DiscountProducts.4257289053] #. defaultMessage is: #. Product Type @@ -5936,12 +6066,12 @@ msgctxt "order history message" msgid "Products were added to draft order" msgstr "" -#. [src.orders.components.OrderHistory.2574162126] - order history message +#. [src.orders.components.OrderHistory.4067959693] - order history message #. defaultMessage is: -#. Products were removed from draft order +#. Products were deleted from draft order #: build/locale/src/orders/components/OrderHistory/OrderHistory.json msgctxt "order history message" -msgid "Products were removed from draft order" +msgid "Products were deleted from draft order" msgstr "" #. [src.properties] @@ -5968,10 +6098,10 @@ msgctxt "description" msgid "Provided email address does not exist in our database." msgstr "" -#. [src.collections.views.1547167026] - publish collections +#. [src.collections.views.CollectionList.1547167026] - publish collections #. defaultMessage is: #. Publish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "publish collections" msgid "Publish" msgstr "Publier" @@ -6008,10 +6138,10 @@ msgctxt "dialog header" msgid "Publish Products" msgstr "" -#. [src.collections.views.2823425739] - dialog title +#. [src.collections.views.CollectionList.2823425739] - dialog title #. defaultMessage is: #. Publish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Publish collections" msgstr "" @@ -6185,6 +6315,18 @@ msgctxt "shipping method price" msgid "Rate Price" msgstr "" +#. [src.orders.components.OrderListFilter.2415661583] - order status +#. defaultMessage is: +#. Ready to Capture +#. [src.orders.views.OrderList.readyToCapture] - order status +#. defaultMessage is: +#. Ready to Capture +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +#: build/locale/src/orders/views/OrderList/filters.json +msgctxt "order status" +msgid "Ready to Capture" +msgstr "" + #. [src.customers.components.CustomerOrders.3878642352] - section header #. defaultMessage is: #. Recent orders @@ -6233,22 +6375,14 @@ msgctxt "switch button" msgid "Release all stock allocated to this order" msgstr "" -#. [src.auth.components.LoginPage.3182284913] - login -#. defaultMessage is: -#. Remember me -#: build/locale/src/auth/components/LoginPage/LoginPage.json -msgctxt "login" -msgid "Remember me" -msgstr "" - #. [src.categories.views.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. -#. [src.categories.views.3488150607] +#. [src.categories.views.CategoryList.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "description" msgid "Remember this will also delete all products assigned to this category." msgstr "" @@ -6261,39 +6395,6 @@ msgctxt "button" msgid "Remove" msgstr "Supprimer" -#. [src.products.views.490753666] - dialog header -#. defaultMessage is: -#. Remove Image -#: build/locale/src/products/views/ProductImage.json -msgctxt "dialog header" -msgid "Remove Image" -msgstr "" - -#. [src.orders.components.OrderDraftCancelDialog.500287069] - dialog header -#. defaultMessage is: -#. Remove draft order -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "dialog header" -msgid "Remove draft order" -msgstr "Supprimer la commande brouillon" - -#. [src.shipping.views.ShippingZoneDetails.254167659] - unassign country, -#. dialog header -#. defaultMessage is: -#. Remove from shipping zone -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country, dialog header" -msgid "Remove from shipping zone" -msgstr "" - -#. [src.orders.views.3880993240] -#. defaultMessage is: -#. Removed draft orders -#: build/locale/src/orders/views/OrderDraftList.json -msgctxt "description" -msgid "Removed draft orders" -msgstr "" - #. [src.pages.views.1457312643] #. defaultMessage is: #. Removed page @@ -6459,6 +6560,18 @@ msgctxt "button" msgid "Save" msgstr "Sauvegarder" +#. [src.components.Filter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#. [src.components.TableFilter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#: build/locale/src/components/Filter/FilterSearch.json +#: build/locale/src/components/TableFilter/FilterChips.json +msgctxt "button" +msgid "Save Custom Search" +msgstr "" + #. [src.components.SaveFilterTabDialog.1514415736] - save filter tab, header #. defaultMessage is: #. Save Custom Search @@ -6467,14 +6580,6 @@ msgctxt "save filter tab, header" msgid "Save Custom Search" msgstr "" -#. [src.components.TableFilter.1514415736] - button -#. defaultMessage is: -#. Save Custom Search -#: build/locale/src/components/TableFilter/FilterChips.json -msgctxt "button" -msgid "Save Custom Search" -msgstr "" - #. [src.products.components.ProductVariantCreatePage.2853608829] - button #. defaultMessage is: #. Save variant @@ -6491,6 +6596,14 @@ msgctxt "description" msgid "Saved changes" msgstr "" +#. [src.attributes.components.AttributeListPage.3916653510] +#. defaultMessage is: +#. Search Attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "description" +msgid "Search Attribute" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.902296540] #. defaultMessage is: #. Search Attributes @@ -6507,10 +6620,30 @@ msgctxt "description" msgid "Search Categories" msgstr "" +#. [src.categories.components.CategoryListPage.3841025483] +#. defaultMessage is: +#. Search Category +#. [src.translations.components.TranslationsEntitiesListPage.3841025483] +#. defaultMessage is: +#. Search Category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Category" +msgstr "" + +#. [src.collections.components.CollectionListPage.4057224233] +#. defaultMessage is: +#. Search Collection #. [src.components.AssignCollectionDialog.4057224233] #. defaultMessage is: #. Search Collection +#. [src.translations.components.TranslationsEntitiesListPage.4057224233] +#. defaultMessage is: +#. Search Collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json #: build/locale/src/components/AssignCollectionDialog/AssignCollectionDialog.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json msgctxt "description" msgid "Search Collection" msgstr "" @@ -6523,6 +6656,14 @@ msgctxt "description" msgid "Search Countries" msgstr "" +#. [src.customers.components.CustomerListPage.1643417013] +#. defaultMessage is: +#. Search Customer +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "description" +msgid "Search Customer" +msgstr "" + #. [src.orders.components.OrderCustomer.2433460203] #. defaultMessage is: #. Search Customers @@ -6531,6 +6672,14 @@ msgctxt "description" msgid "Search Customers" msgstr "" +#. [src.orders.components.OrderDraftListPage.77765281] +#. defaultMessage is: +#. Search Draft +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "description" +msgid "Search Draft" +msgstr "" + #. [src.translations.components.TranslationsCategoriesPage.1406947243] #. defaultMessage is: #. Search Engine Description @@ -6611,6 +6760,34 @@ msgctxt "description" msgid "Search Orders..." msgstr "" +#. [src.translations.components.TranslationsEntitiesListPage.2559018090] +#. defaultMessage is: +#. Search Page +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Page" +msgstr "" + +#. [src.translations.components.TranslationsEntitiesListPage.2105464697] +#. defaultMessage is: +#. Search Product +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product" +msgstr "" + +#. [src.productTypes.components.ProductTypeListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#. [src.translations.components.TranslationsEntitiesListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product Type" +msgstr "" + #. [src.components.AssignProductDialog.2850255786] #. defaultMessage is: #. Search Products @@ -6623,14 +6800,46 @@ msgctxt "description" msgid "Search Products" msgstr "" -#. [src.products.components.ProductListPage.3550330425] +#. [src.products.components.ProductListFilter.3550330425] #. defaultMessage is: #. Search Products... -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Search Products..." msgstr "" +#. [src.discounts.components.SaleListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#. [src.translations.components.TranslationsEntitiesListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Sale" +msgstr "" + +#. [src.staff.components.StaffListPage.61043583] +#. defaultMessage is: +#. Search Staff Member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "description" +msgid "Search Staff Member" +msgstr "" + +#. [src.discounts.components.VoucherListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#. [src.translations.components.TranslationsEntitiesListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Voucher" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.524117994] #. defaultMessage is: #. Search by attribute name @@ -6737,10 +6946,10 @@ msgctxt "description" msgid "Select all orders where:" msgstr "" -#. [src.products.components.ProductListPage.1421689426] +#. [src.products.components.ProductListFilter.1421689426] #. defaultMessage is: #. Select all products where: -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Select all products where:" msgstr "" @@ -6826,6 +7035,14 @@ msgctxt "description" msgid "Set plugin as Active" msgstr "" +#. [src.components.VisibilityCard.292404896] +#. defaultMessage is: +#. Set publication date +#: build/locale/src/components/VisibilityCard/VisibilityCard.json +msgctxt "description" +msgid "Set publication date" +msgstr "" + #. [src.discounts.shipment] - voucher discount #. defaultMessage is: #. Shipment @@ -7091,6 +7308,14 @@ msgctxt "staff section name" msgid "Staff Members" msgstr "" +#. [src.configuration.3140151600] +#. defaultMessage is: +#. Staff Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Staff Settings" +msgstr "" + #. [src.standard] - tax rate #. defaultMessage is: #. Standard @@ -8075,10 +8300,10 @@ msgctxt "payment status" msgid "Unpaid" msgstr "" -#. [src.collections.views.2237014112] - unpublish collections +#. [src.collections.views.CollectionList.2237014112] - unpublish collections #. defaultMessage is: #. Unpublish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "unpublish collections" msgid "Unpublish" msgstr "Dépublier" @@ -8115,10 +8340,10 @@ msgctxt "dialog header" msgid "Unpublish Products" msgstr "" -#. [src.collections.views.2637364047] - dialog title +#. [src.collections.views.CollectionList.2637364047] - dialog title #. defaultMessage is: #. Unpublish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Unpublish collections" msgstr "" @@ -8229,7 +8454,7 @@ msgstr "" #: build/locale/src/customers/components/CustomerDetails/CustomerDetails.json msgctxt "check to mark this account as active" msgid "User account active" -msgstr "" +msgstr "Compte utilisateur actif" #. [src.staff.components.StaffAddMemberDialog.1570990296] #. defaultMessage is: @@ -8237,7 +8462,7 @@ msgstr "" #: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json msgctxt "description" msgid "User has full access" -msgstr "" +msgstr "L'utilisateur a un accès complet" #. [src.staff.components.StaffPermissions.1848599267] - checkbox label #. defaultMessage is: @@ -8245,7 +8470,7 @@ msgstr "" #: build/locale/src/staff/components/StaffPermissions/StaffPermissions.json msgctxt "checkbox label" msgid "User has full access to the store" -msgstr "" +msgstr "L'utilisateur a un accès complet au magasin" #. [src.staff.components.StaffStatus.881953347] - checkbox label #. defaultMessage is: @@ -8380,7 +8605,7 @@ msgstr "" #: build/locale/src/productTypes/components/ProductTypeAttributes/ProductTypeAttributes.json msgctxt "section header" msgid "Variant Attributes" -msgstr "" +msgstr "Attributs de la variante" #. [src.products.views.2279302139] #. defaultMessage is: @@ -8388,7 +8613,7 @@ msgstr "" #: build/locale/src/products/views/ProductVariant.json msgctxt "description" msgid "Variant removed" -msgstr "" +msgstr "Variante retirée" #. [src.products.components.ProductVariantNavigation.2153006789] - section #. header @@ -8409,7 +8634,7 @@ msgstr "Variantes" #: build/locale/src/orders/components/OrderCustomer/OrderCustomer.json msgctxt "link" msgid "View Profile" -msgstr "" +msgstr "Voir profil" #. [src.customers.components.CustomerOrders.3029139173] - button #. defaultMessage is: @@ -8417,7 +8642,7 @@ msgstr "" #: build/locale/src/customers/components/CustomerOrders/CustomerOrders.json msgctxt "button" msgid "View all orders" -msgstr "" +msgstr "Voir toutes les commandes" #. [configurationPluginsPages] #. defaultMessage is: @@ -8513,7 +8738,7 @@ msgstr "" #: build/locale/src/translations/components/TranslationsVouchersPage/TranslationsVouchersPage.json msgctxt "description" msgid "Voucher Name" -msgstr "" +msgstr "Nom du bon d'achat" #. [src.discounts.components.VoucherDetailsPage.2071139683] #. defaultMessage is: @@ -8521,7 +8746,7 @@ msgstr "" #: build/locale/src/discounts/components/VoucherDetailsPage/VoucherDetailsPage.json msgctxt "description" msgid "Voucher applies to all countries" -msgstr "" +msgstr "Le bon d'achat s'applique à tous les pays" #. [src.discounts.components.VoucherDetailsPage.2102960822] #. defaultMessage is: @@ -8529,7 +8754,7 @@ msgstr "" #: build/locale/src/discounts/components/VoucherDetailsPage/VoucherDetailsPage.json msgctxt "description" msgid "Voucher is limited to these countries" -msgstr "" +msgstr "Le bon d'achat est limité à ces pays" #. [src.vouchers] - vouchers section name #. defaultMessage is: @@ -8553,7 +8778,7 @@ msgstr "Bons d'achats" #: build/locale/src/misc.json msgctxt "tax rate" msgid "Water" -msgstr "" +msgstr "Eau" #. [src.components.ErrorPage.3182212440] #. defaultMessage is: @@ -8616,6 +8841,22 @@ msgstr "Oui" #: build/locale/src/siteSettings/components/SiteSettingsAddress/SiteSettingsAddress.json msgctxt "description" msgid "ZIP / Postal code" +msgstr "ZIP / Code Postal" + +#. [src.productTypes.components.ProductTypeListPage.3479705616] - button +#. defaultMessage is: +#. create product type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "button" +msgid "create product type" +msgstr "" + +#. [src.staff.views.1308770978] - dialog header +#. defaultMessage is: +#. delete Staff User +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "dialog header" +msgid "delete Staff User" msgstr "" #. [orderPaymentVATDoesNotApply] - vat not included in order price @@ -8691,19 +8932,35 @@ msgctxt "product status is set as" msgid "is set as" msgstr "" -#. [src.staff.views.2240444792] - dialog header -#. defaultMessage is: -#. remove Staff User -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "dialog header" -msgid "remove Staff User" -msgstr "" - -#. [src.components.VisibilityCard.1815688500] +#. [src.collections.components.CollectionCreatePage.1815688500] - collection #. defaultMessage is: #. since {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.1815688500] - collection +#. defaultMessage is: +#. since {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "since {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.1815688500] - page +#. defaultMessage is: +#. since {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "since {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#. [src.products.components.ProductUpdatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "since {date}" msgstr "" @@ -8731,11 +8988,35 @@ msgctxt "weight" msgid "to {value} {unit}" msgstr "" -#. [src.components.VisibilityCard.2001551496] +#. [src.collections.components.CollectionCreatePage.2001551496] - collection #. defaultMessage is: #. will be visible from {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.2001551496] - collection +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "will be visible from {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.2001551496] - page +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "will be visible from {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#. [src.products.components.ProductUpdatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "will be visible from {date}" msgstr "" @@ -8804,7 +9085,7 @@ msgstr "" #: build/locale/src/customers/components/CustomerAddressListPage/CustomerAddressListPage.json msgctxt "customer details, header" msgid "{fullName} Details" -msgstr "" +msgstr "Détails de {fullName}" #. [src.customers.components.CustomerAddressListPage.1090326769] - customer's #. address book, header @@ -8813,7 +9094,7 @@ msgstr "" #: build/locale/src/customers/components/CustomerAddressListPage/CustomerAddressListPage.json msgctxt "customer's address book, header" msgid "{fullName}'s Address Book" -msgstr "" +msgstr "Carnet d'adresses de {fullName}" #. [src.components.LanguageSwitch.4150219184] - button #. defaultMessage is: @@ -8837,7 +9118,7 @@ msgstr "" #: build/locale/src/components/SeoForm/SeoForm.json msgctxt "character limit" msgid "{numberOfCharacters} of {maxCharacters} characters" -msgstr "" +msgstr "{numberOfCharacters} sur {maxCharacters} caractères" #. [src.components.ColumnPicker.2715399461] - pick columns to display #. defaultMessage is: @@ -8845,7 +9126,7 @@ msgstr "" #: build/locale/src/components/ColumnPicker/ColumnPickerContent.json msgctxt "pick columns to display" msgid "{numberOfSelected} columns selected out of {numberOfTotal}" -msgstr "" +msgstr "{numberOfSelected} colonnes sélectionnés sur {numberOfTotal}" #. [src.products.components.ProductAttributes.1071548120] - number of product #. attributes @@ -8854,7 +9135,7 @@ msgstr "" #: build/locale/src/products/components/ProductAttributes/ProductAttributes.json msgctxt "number of product attributes" msgid "{number} Attributes" -msgstr "" +msgstr "{number} Attributs" #. [src.components.CountryList.2460766407] - number of countries #. defaultMessage is: @@ -8862,7 +9143,7 @@ msgstr "" #: build/locale/src/components/CountryList/CountryList.json msgctxt "number of countries" msgid "{number} Countries" -msgstr "" +msgstr "{number} Pays" #. [src.plugins.components.PluginsDetailsPage.3352026836] - header #. defaultMessage is: diff --git a/locale/hi.json b/locale/hi.json index 028f139d8..ab58ee448 100644 --- a/locale/hi.json +++ b/locale/hi.json @@ -1 +1 @@ -{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.350498821":"","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.2519239682":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"नाम","src.categories.components.CategoryProducts.636461959":"नाम","src.collections.components.CollectionProducts.636461959":"नाम","src.products.components.ProductDetailsForm.636461959":"नाम","src.collections.components.CollectionDetails.636461959":"नाम","src.components.ProductList.636461959":"नाम","src.discounts.components.SaleInfo.636461959":"नाम","src.discounts.components.SaleList.636461959":"नाम","src.discounts.components.SaleSummary.636461959":"नाम","menuItemDialogNameLabel":"नाम","src.products.components.ProductVariants.636461959":"नाम","src.shipping.components.ShippingZoneRates.636461959":"नाम","src.shipping.components.ShippingZonesList.636461959":"नाम","src.staff.components.StaffList.636461959":"नाम","src.translations.components.TranslationsEntitiesList.636461959":"नाम","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.254756045":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.3182284913":"","src.auth.components.LoginPage.109182747":"","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"","src.categories.views.2004894945":"","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.3229914152":"","src.categories.components.CategoryList.435697837":"","src.categories.components.CategoryList.2159874182":"","src.categories.components.CategoryUpdatePage.2159874182":"","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.228151782":"","src.categories.components.CategoryProducts.2968663655":"","src.categories.components.CategoryUpdatePage.2968663655":"","src.discounts.components.DiscountCategories.2968663655":"","src.discounts.components.DiscountCollections.2968663655":"","src.products":"","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryProducts.3554578821":"","src.categories.components.CategoryProductsCard.3554578821":"","src.categories.components.CategoryProducts.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProducts.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.categories.components.CategoryProductsCard.4164156574":"","src.categories.views.1754466114":"","src.categories.views.1140231710":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.712767046":"","src.categories.views.299584400":"","src.categories.views.844574071":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.collections.components.CollectionCreatePage.3958681866":"","src.collections.components.CollectionListPage.3958681866":"","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"","src.availability":"","src.collections.components.CollectionList.3640454975":"","src.collections.components.CollectionProducts.3640454975":"","src.discounts.components.DiscountProducts.3640454975":"","src.components.ProductList.3640454975":"","src.products.components.ProductListPage.3640454975":"","src.pages.components.PageList.3640454975":"","src.products.views.ProductList.published":"","src.collections.components.CollectionList.2341910657":"","src.collections.components.CollectionProducts.2341910657":"","src.discounts.components.DiscountProducts.2341910657":"","src.components.ProductList.2341910657":"","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.686910896":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"","src.collections.views.2402899582":"","src.collections.views.2237014112":"","src.pages.views.2237014112":"","src.products.views.ProductList.2237014112":"","src.collections.views.1547167026":"","src.pages.views.1547167026":"","src.products.views.ProductList.1547167026":"","src.collections.views.2823425739":"","src.collections.views.1348793822":"","src.collections.views.2637364047":"","src.collections.views.3944356444":"","src.collections.views.3817188998":"","src.collections.views.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.4057224233":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"","src.components.ErrorMessageCard.2845142593":"","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.FilterBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.ProductList.1134347598":"","src.orders.components.OrderDraftDetailsProducts.1134347598":"","src.orders.components.OrderFulfillment.1134347598":"","src.products.components.ProductListPage.1134347598":"","src.products.components.ProductPricing.1134347598":"","src.orders.components.OrderUnfulfilledItems.1134347598":"","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"","src.shipping.components.ShippingZoneRates.1134347598":"","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"","src.pages.components.PageList.1459686496":"","src.products.components.ProductListFilter.1459686496":"","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"","src.products.views.ProductList.hidden":"","src.components.VisibilityCard.1815688500":"","src.components.VisibilityCard.2001551496":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","configurationMenuStaff":"","configurationMenuShipping":"","configurationMenuTaxes":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","src.customers.components.CustomerAddress.1320082647":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"","src.customers.components.CustomerAddresses.3517722732":"","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"टिप्पणियाँ","src.orders.components.OrderCustomerNote.1520756907":"टिप्पणियाँ","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"टिप्पणी","src.customers.components.CustomerDetails.577013340":"टिप्पणी","src.customers.components.CustomerCreatePage.1934221653":"","src.customers.components.CustomerListPage.1934221653":"","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerOrders.3878642352":"","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"","src.orders.components.OrderDraftList.4205493358":"","src.orders.components.OrderList.4205493358":"","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"","src.orders.components.OrderListFilter.1756106276":"","src.products.components.ProductListFilter.1756106276":"","src.products.components.ProductVariants.1756106276":"","src.customers.components.CustomerOrders.878013594":"","src.orders.components.OrderDraftDetailsProducts.878013594":"","src.orders.components.OrderDraftDetailsSummary.878013594":"","src.orders.components.OrderDraftList.878013594":"","src.orders.components.OrderFulfillment.878013594":"","src.orders.components.OrderUnfulfilledItems.878013594":"","src.orders.components.OrderList.878013594":"","src.orders.components.OrderPayment.878013594":"","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.1946482599":"","src.customers.views.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"","src.discounts.components.SaleSummary.1148029984":"","src.discounts.components.VoucherList.1148029984":"","src.discounts.components.VoucherSummary.1148029984":"","src.discounts.components.VoucherValue.1148029984":"","src.products.components.ProductAttributes.1148029984":"","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.1742771332":"","src.discounts.components.SalePricing.1099355007":"","src.products.components.ProductPricing.1099355007":"","src.products.components.ProductVariantPrice.1099355007":"","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"","src.discounts.components.VoucherSummary.78726751":"","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.1536809153":"","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"","src.discounts.shipment":"","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.2809303671":"","src.discounts.views.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.367317371":"","src.discounts.views.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"","src.orders.views.OrderList.3528672691":"","src.confirm":"","src.delete":"","src.edit":"","src.manage":"","src.remove":"","src.save":"","src.show":"","src.undo":"","src.attributes":"","src.products.components.ProductAttributes.4153345096":"","src.categories":"वर्ग","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"संग्रह","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"","src.customers":"","src.draftOrders":"","src.home":"","src.navigation":"","src.orders":"","src.pages":"","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"","src.taxes.components.CountryListPage.3955023266":"","src.translations":"","src.vouchers":"","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"","src.partiallyPaid":"","src.partiallyRefunded":"","src.refunded":"","src.unpaid":"","src.cancelled":"","src.draft":"","src.fulfilled":"","src.orders.views.OrderList.fulfilled":"","src.orders.components.OrderListFilter.1712863026":"","src.partiallyFulfilled":"","src.unfulfilled":"","src.orders.views.OrderList.unfulfilled":"","src.orders.components.OrderListFilter.1751787272":"","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","src.1395232177":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"","src.orders.components.OrderDetailsPage.1854613983":"","src.orders.components.OrderDraftPage.1854613983":"","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"","src.orders.components.OrderCustomerEditDialog.1411666943":"","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.500287069":"","src.orders.components.OrderDraftCancelDialog.3199827590":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"","src.orders.components.OrderUnfulfilledItems.1895667608":"","src.orders.components.OrderDraftDetailsProducts.2796503714":"मात्रा","src.orders.components.OrderFulfillment.2796503714":"मात्रा","src.orders.components.OrderFulfillmentDialog.2796503714":"मात्रा","src.orders.components.OrderUnfulfilledItems.2796503714":"मात्रा","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"","src.orders.components.OrderPayment.781550514":"","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"","src.orders.components.OrderListPage.2826235371":"","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"","src.orders.components.OrderFulfillmentCancelDialog.732594284":"","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.2574162126":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2943502192":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"","src.productTypes.components.ProductTypeShipping.1325966144":"","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"","src.orders.components.OrderPayment.3768782744":"","src.orders.components.OrderPayment.2320183694":"","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"","src.orders.components.OrderPayment.2845258362":"","src.orders.components.OrderPayment.2444197639":"","src.orders.components.OrderPayment.3500506678":"","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.2775402904":"","src.products.components.ProductListPage.2775402904":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.3880993240":"","src.orders.views.1161115149":"","src.orders.views.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.755314116":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"","src.pages.components.PageList.1124600214":"","src.pages.components.PageInfo.1116746286":"","src.translations.components.TranslationsPagesPage.1116746286":"","src.pages.components.PageList.3478065224":"","src.pages.components.PageSlug.3478065224":"","src.productTypes.components.ProductTypeAttributes.3478065224":"","src.pages.components.PageList.3767550649":"","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.1767905232":"","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.3785394515":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"","src.products.components.ProductVariantImages.3240888698":"","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"","src.products.components.ProductVariantStock.3841616483":"","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListPage.821159718":"","src.products.components.ProductListPage.1421689426":"","src.products.components.ProductListPage.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"","prodictStockInventoryLabel":"","src.products.components.ProductVariantStock.3490038570":"","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"","src.products.components.ProductVariants.2153006789":"","src.products.components.ProductVariantNavigation.2845381934":"","src.products.components.ProductVariants.2845381934":"","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1542417144":"","src.products.views.1591632382":"","src.products.views.490753666":"","src.products.views.672103788":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.1694086800":"","src.products.views.ProductList.224127438":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.products.views.2178905289":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1756957616":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.889729490":"","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.4080551769":"","src.productTypes.views.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.352297149":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2474410767":"","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.254167659":"","src.shipping.views.ShippingZoneDetails.1790261672":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"","src.siteSettings.components.SiteSettingsKeys.2446088470":"","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.3490059488":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.3247064221":"","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.802625341":"","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"","src.staff.views.2240444792":"","src.staff.views.2728048444":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file +{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.3824684885":"","src.attributes.components.AttributeListPage.2417065806":"","src.attributes.components.AttributeListPage.3916653510":"","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.4048785456":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"नाम","src.categories.components.CategoryProductList.636461959":"नाम","src.components.ProductList.636461959":"नाम","src.products.components.ProductList.636461959":"नाम","src.collections.components.CollectionDetails.636461959":"नाम","src.collections.components.CollectionProducts.636461959":"नाम","src.products.components.ProductDetailsForm.636461959":"नाम","src.discounts.components.SaleInfo.636461959":"नाम","src.discounts.components.SaleList.636461959":"नाम","src.discounts.components.SaleSummary.636461959":"नाम","menuItemDialogNameLabel":"नाम","src.plugins.components.PluginsList.636461959":"नाम","src.products.components.ProductVariants.636461959":"नाम","src.shipping.components.ShippingZoneRates.636461959":"नाम","src.shipping.components.ShippingZonesList.636461959":"नाम","src.staff.components.StaffList.636461959":"नाम","src.translations.components.TranslationsEntitiesList.636461959":"नाम","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.351422234":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.109182747":"","src.auth.components.LoginPage.4028609483":"","src.auth.components.NewPasswordPage.1915811227":"","src.auth.components.NewPasswordPage.1254879564":"","src.auth.components.NewPasswordPage.2799926859":"","src.auth.components.NewPasswordPage.4253911811":"","src.auth.components.NewPasswordPage.2342634351":"","src.auth.components.ResetPasswordPage.2370700732":"","src.auth.components.ResetPasswordPage.3663311080":"","src.auth.components.ResetPasswordSuccessPage.4066297200":"","src.auth.components.ResetPasswordSuccessPage.2245157344":"","src.auth.views.2388238158":"","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"","src.categories.views.2004894945":"","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.2159874182":"","src.categories.components.CategoryUpdatePage.2159874182":"","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.1140231710":"","src.categories.views.1140231710":"","src.categories.components.CategoryListPage.4294878092":"","src.categories.components.CategoryListPage.3841025483":"","src.translations.components.TranslationsEntitiesListPage.3841025483":"","src.categories.components.CategoryProductList.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductList.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProductList.3640454975":"","src.components.ProductList.3640454975":"","src.products.components.ProductList.3640454975":"","src.products.components.ProductListPage.3640454975":"","productStatusLabel":"","src.collections.components.CollectionList.3640454975":"","src.collections.components.CollectionProducts.3640454975":"","src.discounts.components.DiscountProducts.3640454975":"","src.pages.components.PageList.3640454975":"","src.products.views.ProductList.published":"","src.categories.components.CategoryProductList.1134347598":"","src.orders.components.OrderFulfillment.1134347598":"","src.products.components.ProductList.1134347598":"","src.products.components.ProductListPage.1134347598":"","src.products.components.ProductPricing.1134347598":"","src.components.ProductList.1134347598":"","src.orders.components.OrderDraftDetailsProducts.1134347598":"","src.orders.components.OrderUnfulfilledItems.1134347598":"","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"","src.shipping.components.ShippingZoneRates.1134347598":"","src.categories.components.CategoryProductList.2341910657":"","src.products.components.ProductList.2341910657":"","src.collections.components.CollectionList.2341910657":"","src.collections.components.CollectionProducts.2341910657":"","src.discounts.components.DiscountProducts.2341910657":"","src.components.ProductList.2341910657":"","src.categories.components.CategoryProductList.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.products.components.ProductList.1657559629":"","src.categories.components.CategoryProducts.4164156574":"","src.categories.components.CategoryProducts.3554578821":"","src.categories.components.CategoryUpdatePage.2968663655":"","src.discounts.components.DiscountCategories.2968663655":"","src.discounts.components.DiscountCollections.2968663655":"","src.products":"","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryUpdatePage.3229914152":"","src.categories.components.CategoryUpdatePage.770296100":"","src.categories.views.1754466114":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.CategoryList.3488150607":"","src.categories.views.712767046":"","src.categories.views.CategoryList.712767046":"","src.categories.views.299584400":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.categories.views.CategoryList.2144707585":"","src.collections.components.CollectionCreatePage.3958681866":"","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionCreatePage.2001551496":"","src.collections.components.CollectionDetailsPage.2001551496":"","src.pages.components.PageDetailsPage.2001551496":"","src.products.components.ProductCreatePage.2001551496":"","src.products.components.ProductUpdatePage.2001551496":"","src.collections.components.CollectionCreatePage.1815688500":"","src.collections.components.CollectionDetailsPage.1815688500":"","src.pages.components.PageDetailsPage.1815688500":"","src.products.components.ProductCreatePage.1815688500":"","src.products.components.ProductUpdatePage.1815688500":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"","src.availability":"","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionListPage.686910896":"","src.collections.views.686910896":"","src.collections.components.CollectionListPage.1631917001":"","src.collections.components.CollectionListPage.4057224233":"","src.components.AssignCollectionDialog.4057224233":"","src.translations.components.TranslationsEntitiesListPage.4057224233":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"","src.collections.views.2402899582":"","src.collections.views.CollectionList.2237014112":"","src.pages.views.2237014112":"","src.products.views.ProductList.2237014112":"","src.collections.views.CollectionList.1547167026":"","src.pages.views.1547167026":"","src.products.views.ProductList.1547167026":"","src.collections.views.CollectionList.2823425739":"","src.collections.views.CollectionList.1348793822":"","src.collections.views.CollectionList.2637364047":"","src.collections.views.CollectionList.3944356444":"","src.collections.views.CollectionList.3817188998":"","src.collections.views.CollectionList.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"","src.components.ErrorMessageCard.2845142593":"","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.Filter.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.Filter.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.FilterBar.2340527467":"","src.components.SearchBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"","src.pages.components.PageList.1459686496":"","src.products.components.ProductListFilter.1459686496":"","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"","src.products.views.ProductList.hidden":"","src.components.VisibilityCard.292404896":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","src.configuration.2326418019":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","src.configuration.3655543906":"","configurationMenuShipping":"","configurationMenuTaxes":"","src.configuration.3140151600":"","configurationMenuStaff":"","src.configuration.1233229030":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","configurationPluginsPages":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"","src.customers.components.CustomerAddresses.3517722732":"","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"टिप्पणियाँ","src.orders.components.OrderCustomerNote.1520756907":"टिप्पणियाँ","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"टिप्पणी","src.customers.components.CustomerDetails.577013340":"टिप्पणी","src.customers.components.CustomerCreatePage.1934221653":"","src.customers.components.CustomerListPage.1934221653":"","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerListPage.477293306":"","src.customers.components.CustomerListPage.1643417013":"","src.customers.components.CustomerOrders.3878642352":"","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"","src.orders.components.OrderDraftList.4205493358":"","src.orders.components.OrderList.4205493358":"","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"","src.orders.components.OrderListFilter.1756106276":"","src.plugins.components.PluginInfo.1756106276":"","src.products.components.ProductListFilter.1756106276":"","src.products.components.ProductVariants.1756106276":"","src.customers.components.CustomerOrders.878013594":"","src.orders.components.OrderDraftDetailsProducts.878013594":"","src.orders.components.OrderDraftDetailsSummary.878013594":"","src.orders.components.OrderDraftList.878013594":"","src.orders.components.OrderFulfillment.878013594":"","src.orders.components.OrderUnfulfilledItems.878013594":"","src.orders.components.OrderList.878013594":"","src.orders.components.OrderPayment.878013594":"","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.CustomerList.1946482599":"","src.customers.views.CustomerList.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","src.discounts.components.SaleListPage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"","src.discounts.components.SaleSummary.1148029984":"","src.discounts.components.VoucherList.1148029984":"","src.discounts.components.VoucherSummary.1148029984":"","src.discounts.components.VoucherValue.1148029984":"","src.products.components.ProductAttributes.1148029984":"","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.3907768880":"","src.discounts.components.SaleListPage.1866913828":"","src.translations.components.TranslationsEntitiesListPage.1866913828":"","src.discounts.components.SalePricing.1099355007":"","src.products.components.ProductPricing.1099355007":"","src.products.components.ProductVariantPrice.1099355007":"","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"","src.discounts.components.VoucherSummary.78726751":"","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.614836274":"","src.discounts.components.VoucherListPage.1112241061":"","src.discounts.components.VoucherListPage.1930485532":"","src.translations.components.TranslationsEntitiesListPage.1930485532":"","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"","src.discounts.shipment":"","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.SaleList.2809303671":"","src.discounts.views.SaleList.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.VoucherList.367317371":"","src.discounts.views.VoucherList.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.somethingWentWrong":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"","src.orders.views.OrderList.3528672691":"","src.confirm":"","src.delete":"","src.edit":"","src.manage":"","src.remove":"","src.save":"","src.show":"","src.undo":"","src.attributes":"","src.products.components.ProductAttributes.4153345096":"","src.categories":"वर्ग","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"संग्रह","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"","src.customers":"","src.draftOrders":"","src.home":"","src.navigation":"","src.orders":"","src.pages":"","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.plugins":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"","src.taxes.components.CountryListPage.3955023266":"","src.translations":"","src.vouchers":"","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"","src.partiallyPaid":"","src.partiallyRefunded":"","src.refunded":"","src.unpaid":"","src.cancelled":"","src.draft":"","src.fulfilled":"","src.orders.views.OrderList.fulfilled":"","src.orders.components.OrderListFilter.1712863026":"","src.partiallyFulfilled":"","src.unfulfilled":"","src.orders.views.OrderList.unfulfilled":"","src.orders.components.OrderListFilter.1751787272":"","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"","src.orders.components.OrderDetailsPage.1854613983":"","src.orders.components.OrderDraftPage.1854613983":"","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"","src.orders.components.OrderCustomerEditDialog.1411666943":"","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.632633254":"","src.orders.components.OrderDraftCancelDialog.36681973":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"","src.orders.components.OrderUnfulfilledItems.1895667608":"","src.orders.components.OrderDraftDetailsProducts.2796503714":"मात्रा","src.orders.components.OrderFulfillment.2796503714":"मात्रा","src.orders.components.OrderFulfillmentDialog.2796503714":"मात्रा","src.orders.components.OrderUnfulfilledItems.2796503714":"मात्रा","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"","src.orders.components.OrderPayment.781550514":"","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"","src.orders.components.OrderListPage.2826235371":"","src.orders.components.OrderDraftListPage.551325728":"","src.orders.components.OrderDraftListPage.77765281":"","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"","src.orders.components.OrderFulfillmentCancelDialog.732594284":"","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.4067959693":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2415661583":"","src.orders.views.OrderList.readyToCapture":"","src.orders.components.OrderListFilter.2222765704":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"","src.productTypes.components.ProductTypeShipping.1325966144":"","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"","src.orders.components.OrderPayment.3768782744":"","src.orders.components.OrderPayment.2320183694":"","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"","src.orders.components.OrderPayment.2845258362":"","src.orders.components.OrderPayment.2444197639":"","src.orders.components.OrderPayment.3500506678":"","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.1542417144":"","src.products.components.ProductListPage.1542417144":"","src.products.views.1542417144":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.OrderDraftList.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.OrderDraftList.1648805446":"","src.orders.views.OrderDraftList.1161115149":"","src.orders.views.OrderDraftList.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.1068617485":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"","src.pages.components.PageList.1124600214":"","src.pages.components.PageInfo.1116746286":"","src.translations.components.TranslationsPagesPage.1116746286":"","src.pages.components.PageList.3478065224":"","src.pages.components.PageSlug.3478065224":"","src.productTypes.components.ProductTypeAttributes.3478065224":"","src.pages.components.PageList.3767550649":"","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.3785394515":"","src.pages.views.3785394515":"","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.plugins.components.PluginInfo.3425535100":"","src.plugins.components.PluginsDetailsPage.3425535100":"","src.plugins.components.PluginInfo.1049131348":"","src.plugins.components.PluginInfo.4013064767":"","src.plugins.components.PluginsDetailsPage.3352026836":"","src.plugins.components.PluginsDetailsPage.2277745418":"","src.plugins.components.PluginsDetailsPage.1970881031":"","src.plugins.components.PluginSettings.1970881031":"","src.plugins.components.PluginsDetailsPage.4241018152":"","src.plugins.components.PluginsList.3247064221":"","src.staff.components.StaffList.3247064221":"","src.plugins.components.PluginsList.4120604650":"","src.plugins.components.PluginsList.666641390":"","src.plugins.views.100549097":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"","src.products.components.ProductVariantImages.3240888698":"","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"","src.products.components.ProductVariantStock.3841616483":"","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListFilter.821159718":"","src.products.components.ProductListFilter.1421689426":"","src.products.components.ProductListFilter.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"","prodictStockInventoryLabel":"","src.products.components.ProductVariantStock.3490038570":"","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"","src.products.components.ProductVariants.2153006789":"","src.products.components.ProductVariantNavigation.2845381934":"","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.3989383405":"","src.products.views.3989383405":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1591632382":"","src.products.views.1731766393":"","src.products.views.2880386427":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1217376589":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.3479705616":"","src.productTypes.components.ProductTypeListPage.1776073799":"","src.productTypes.components.ProductTypeListPage.3420445375":"","src.translations.components.TranslationsEntitiesListPage.3420445375":"","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.ProductTypeList.4080551769":"","src.productTypes.views.ProductTypeList.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRates.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2673544109":"","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.1947090060":"","src.shipping.views.ShippingZoneDetails.131963671":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"","src.siteSettings.components.SiteSettingsKeys.2446088470":"","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.1481503299":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.797461521":"","src.staff.components.StaffListPage.2852350932":"","src.staff.components.StaffListPage.61043583":"","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"","src.staff.views.1308770978":"","src.staff.views.8878988":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.2105464697":"","src.translations.components.TranslationsEntitiesListPage.2559018090":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file diff --git a/locale/hi.po b/locale/hi.po index 29c3a23f1..4d52777f6 100644 --- a/locale/hi.po +++ b/locale/hi.po @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"POT-Creation-Date: 2019-09-06T13:56:36.897Z\n" +"POT-Creation-Date: 2019-09-16T15:25:09.340Z\n" "Last-Translator: Hari Nadar , 2019\n" "Language-Team: Hindi (https://www.transifex.com/mirumee/teams/34782/hi/)\n" "MIME-Version: 1.0\n" @@ -142,22 +142,6 @@ msgctxt "create new menu item, header" msgid "Add Item" msgstr "" -#. [menuCreateDialogHeader] - dialog header -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json -msgctxt "dialog header" -msgid "Add Menu" -msgstr "" - -#. [menuListPageAddMenu] - button -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json -msgctxt "button" -msgid "Add Menu" -msgstr "" - #. [src.siteSettings.components.SiteSettingsKeyDialog.1238948746] - dialog #. header #. defaultMessage is: @@ -167,14 +151,6 @@ msgctxt "dialog header" msgid "Add New Authorization Key" msgstr "" -#. [src.pages.components.PageDetailsPage.755314116] - page header -#. defaultMessage is: -#. Add Page -#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json -msgctxt "page header" -msgid "Add Page" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.2892088870] - dialog header #. defaultMessage is: #. Add Price Rate @@ -183,38 +159,6 @@ msgctxt "dialog header" msgid "Add Price Rate" msgstr "" -#. [src.orders.components.OrderProductAddDialog.2775402904] - dialog header -#. defaultMessage is: -#. Add Product -#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json -msgctxt "dialog header" -msgid "Add Product" -msgstr "" - -#. [src.products.components.ProductListPage.2775402904] - button -#. defaultMessage is: -#. Add Product -#: build/locale/src/products/components/ProductListPage/ProductListPage.json -msgctxt "button" -msgid "Add Product" -msgstr "" - -#. [src.discounts.components.SaleListPage.1742771332] - button -#. defaultMessage is: -#. Add Sale -#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json -msgctxt "button" -msgid "Add Sale" -msgstr "" - -#. [src.staff.components.StaffAddMemberDialog.3490059488] - dialog header -#. defaultMessage is: -#. Add Staff Member -#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json -msgctxt "dialog header" -msgid "Add Staff Member" -msgstr "" - #. [src.attributes.components.AttributeValueEditDialog.1841790893] - add #. attribute value #. defaultMessage is: @@ -224,14 +168,6 @@ msgctxt "add attribute value" msgid "Add Value" msgstr "" -#. [src.products.views.2178905289] - header -#. defaultMessage is: -#. Add Variant -#: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "header" -msgid "Add Variant" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.1397795758] - add weight #. based shipping method, dialog header #. defaultMessage is: @@ -249,14 +185,6 @@ msgctxt "button" msgid "Add address" msgstr "" -#. [src.attributes.components.AttributeListPage.350498821] - button -#. defaultMessage is: -#. Add attribute -#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json -msgctxt "button" -msgid "Add attribute" -msgstr "" - #. [src.siteSettings.components.SiteSettingsKeyDialog.50561933] - button #. defaultMessage is: #. Add authentication @@ -265,14 +193,6 @@ msgctxt "button" msgid "Add authentication" msgstr "" -#. [src.categories.components.CategoryListPage.228151782] - button -#. defaultMessage is: -#. Add category -#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json -msgctxt "button" -msgid "Add category" -msgstr "" - #. [src.collections.components.CollectionCreatePage.3958681866] - page header #. defaultMessage is: #. Add collection @@ -281,14 +201,6 @@ msgctxt "page header" msgid "Add collection" msgstr "" -#. [src.collections.components.CollectionListPage.3958681866] - button -#. defaultMessage is: -#. Add collection -#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json -msgctxt "button" -msgid "Add collection" -msgstr "" - #. [src.customers.components.CustomerCreatePage.1934221653] - page header #. defaultMessage is: #. Add customer @@ -321,14 +233,6 @@ msgctxt "button" msgid "Add key" msgstr "" -#. [menuItemsAddItem] - add new menu item -#. defaultMessage is: -#. Add new item -#: build/locale/src/navigation/components/MenuItems/MenuItems.json -msgctxt "add new menu item" -msgid "Add new item" -msgstr "" - #. [menuItemsPlaceholder] #. defaultMessage is: #. Add new menu item to begin creating menu @@ -363,14 +267,6 @@ msgctxt "button" msgid "Add or Edit Link" msgstr "" -#. [src.pages.components.PageListPage.1767905232] - button -#. defaultMessage is: -#. Add page -#: build/locale/src/pages/components/PageListPage/PageListPage.json -msgctxt "button" -msgid "Add page" -msgstr "" - #. [src.categories.components.CategoryProducts.3554578821] - button #. defaultMessage is: #. Add product @@ -379,14 +275,6 @@ msgctxt "button" msgid "Add product" msgstr "" -#. [src.productTypes.components.ProductTypeListPage.889729490] - button -#. defaultMessage is: -#. Add product type -#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json -msgctxt "button" -msgid "Add product type" -msgstr "" - #. [src.orders.components.OrderDraftDetails.2528459381] - button #. defaultMessage is: #. Add products @@ -395,14 +283,6 @@ msgctxt "button" msgid "Add products" msgstr "" -#. [src.shipping.components.ShippingZoneRates.352297149] - button -#. defaultMessage is: -#. Add rate -#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json -msgctxt "button" -msgid "Add rate" -msgstr "" - #. [src.categories.components.CategoryCreatePage.2563994280] #. defaultMessage is: #. Add search engine title and description to make this category easier to @@ -464,30 +344,6 @@ msgctxt "button" msgid "Add shipping carrier" msgstr "" -#. [src.shipping.components.ShippingZonesList.2474410767] - button -#. defaultMessage is: -#. Add shipping zone -#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json -msgctxt "button" -msgid "Add shipping zone" -msgstr "" - -#. [src.staff.components.StaffListPage.802625341] - button -#. defaultMessage is: -#. Add staff member -#: build/locale/src/staff/components/StaffListPage/StaffListPage.json -msgctxt "button" -msgid "Add staff member" -msgstr "" - -#. [src.categories.components.CategoryList.435697837] - button -#. defaultMessage is: -#. Add subcategory -#: build/locale/src/categories/components/CategoryList/CategoryList.json -msgctxt "button" -msgid "Add subcategory" -msgstr "" - #. [src.attributes.components.AttributeProperties.673770329] - add attribute #. as column in product list table #. defaultMessage is: @@ -515,35 +371,14 @@ msgctxt "dialog header" msgid "Add tracking code" msgstr "" -#. [src.attributes.components.AttributeValues.254756045] - add attribute value -#. button -#. defaultMessage is: -#. Add value -#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json -msgctxt "add attribute value button" -msgid "Add value" -msgstr "" - #. [src.products.components.ProductVariantNavigation.2845381934] - button #. defaultMessage is: #. Add variant -#. [src.products.components.ProductVariants.2845381934] - button -#. defaultMessage is: -#. Add variant #: build/locale/src/products/components/ProductVariantNavigation/ProductVariantNavigation.json -#: build/locale/src/products/components/ProductVariants/ProductVariants.json msgctxt "button" msgid "Add variant" msgstr "" -#. [src.discounts.components.VoucherListPage.1536809153] - button -#. defaultMessage is: -#. Add voucher -#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json -msgctxt "button" -msgid "Add voucher" -msgstr "" - #. [src.attributes.views.AttributeDetails.634268988] - added new attribute #. value #. defaultMessage is: @@ -601,14 +436,6 @@ msgctxt "description" msgid "Address line 2" msgstr "" -#. [src.customers.components.CustomerAddress.1320082647] - addres card header -#. defaultMessage is: -#. Address {addressNumber} -#: build/locale/src/customers/components/CustomerAddress/CustomerAddress.json -msgctxt "addres card header" -msgid "Address {addressNumber}" -msgstr "" - #. [src.attributes.components.AttributeValues.1565474525] - attribute values #. list: slug column header #. defaultMessage is: @@ -658,6 +485,46 @@ msgctxt "tax rate" msgid "Agricultural supplies" msgstr "" +#. [src.attributes.components.AttributeListPage.2417065806] - tab name +#. defaultMessage is: +#. All Attributes +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "tab name" +msgid "All Attributes" +msgstr "" + +#. [src.categories.components.CategoryListPage.4294878092] - tab name +#. defaultMessage is: +#. All Categories +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "tab name" +msgid "All Categories" +msgstr "" + +#. [src.collections.components.CollectionListPage.1631917001] - tab name +#. defaultMessage is: +#. All Collections +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "tab name" +msgid "All Collections" +msgstr "" + +#. [src.customers.components.CustomerListPage.477293306] - tab name +#. defaultMessage is: +#. All Customers +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "tab name" +msgid "All Customers" +msgstr "" + +#. [src.orders.components.OrderDraftListPage.551325728] - tab name +#. defaultMessage is: +#. All Drafts +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "tab name" +msgid "All Drafts" +msgstr "" + #. [src.orders.components.OrderListPage.875489544] - tab name #. defaultMessage is: #. All Orders @@ -675,22 +542,54 @@ msgctxt "section header" msgid "All Photos" msgstr "" -#. [src.products.components.ProductListPage.821159718] - tab name +#. [src.productTypes.components.ProductTypeListPage.1776073799] - tab name +#. defaultMessage is: +#. All Product Types +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "tab name" +msgid "All Product Types" +msgstr "" + +#. [src.products.components.ProductListFilter.821159718] - tab name #. defaultMessage is: #. All Products -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "tab name" msgid "All Products" msgstr "" -#. [src.categories.components.CategoryList.3229914152] - section header +#. [src.discounts.components.SaleListPage.3907768880] - tab name +#. defaultMessage is: +#. All Sales +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "tab name" +msgid "All Sales" +msgstr "" + +#. [src.staff.components.StaffListPage.2852350932] - tab name +#. defaultMessage is: +#. All Staff Members +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "tab name" +msgid "All Staff Members" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.3229914152] - section header #. defaultMessage is: #. All Subcategories -#: build/locale/src/categories/components/CategoryList/CategoryList.json +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json msgctxt "section header" msgid "All Subcategories" msgstr "" +#. [src.discounts.components.VoucherListPage.1112241061] - tab name +#. defaultMessage is: +#. All Vouchers +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "tab name" +msgid "All Vouchers" +msgstr "" + #. [src.taxes.components.TaxConfiguration.142803418] #. defaultMessage is: #. All products prices are entered with tax included @@ -798,6 +697,14 @@ msgctxt "description" msgid "Are you sure you want to delete collection's image?" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.36681973] +#. defaultMessage is: +#. Are you sure you want to delete draft #{number}? +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "description" +msgid "Are you sure you want to delete draft #{number}?" +msgstr "" + #. [menuDetailsDeleteMenuContent] #. defaultMessage is: #. Are you sure you want to delete menu {menuName}? @@ -814,6 +721,14 @@ msgctxt "description" msgid "Are you sure you want to delete this address from users address book?" msgstr "" +#. [src.products.views.2880386427] +#. defaultMessage is: +#. Are you sure you want to delete this image? +#: build/locale/src/products/views/ProductImage.json +msgctxt "description" +msgid "Are you sure you want to delete this image?" +msgstr "" + #. [src.attributes.components.AttributeDeleteDialog.3738429348] - dialog #. content #. defaultMessage is: @@ -864,12 +779,7 @@ msgstr "" #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this attribute} #. other{{displayQuantity} categories}}? -#. [src.categories.views.844574071] -#. defaultMessage is: -#. Are you sure you want to delete {counter,plural,one{this attribute} -#. other{{displayQuantity} categories}}? #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this attribute} " @@ -887,22 +797,33 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.2497542455] +#. [src.categories.views.CategoryList.2144707585] +#. defaultMessage is: +#. Are you sure you want to delete {counter,plural,one{this category} +#. other{{displayQuantity} categories}}? +#: build/locale/src/categories/views/CategoryList/CategoryList.json +msgctxt "description" +msgid "" +"Are you sure you want to delete {counter,plural,one{this category} " +"other{{displayQuantity} categories}}?" +msgstr "" + +#. [src.collections.views.CollectionList.2497542455] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this collection} " "other{{displayQuantity} collections}}?" msgstr "" -#. [src.customers.views.409347866] +#. [src.customers.views.CustomerList.409347866] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this customer} #. other{{displayQuantity} customers}}? -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this customer} " @@ -920,11 +841,11 @@ msgid "" "other{{displayQuantity} menus}}?" msgstr "" -#. [src.orders.views.1389231130] - dialog content +#. [src.orders.views.OrderDraftList.1389231130] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this order draft} #. other{{displayQuantity} orderDrafts}}? -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this order draft} " @@ -942,11 +863,11 @@ msgid "" "other{{displayQuantity} pages}}?" msgstr "" -#. [src.productTypes.views.2294091098] - dialog content +#. [src.productTypes.views.ProductTypeList.2294091098] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this product type} #. other{{displayQuantity} product types}}? -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this product type} " @@ -964,11 +885,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.discounts.views.2516361175] - dialog content +#. [src.discounts.views.SaleList.2516361175] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this sale} #. other{{displayQuantity} sales}}? -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this sale} " @@ -997,17 +918,33 @@ msgid "" "other{{displayQuantity} variants}}?" msgstr "" -#. [src.discounts.views.1791926983] - dialog content +#. [src.discounts.views.VoucherList.1791926983] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this voucher} #. other{{displayQuantity} vouchers}}? -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this voucher} " "other{{displayQuantity} vouchers}}?" msgstr "" +#. [src.shipping.views.ShippingZoneDetails.131963671] - unassign country +#. defaultMessage is: +#. Are you sure you want to delete {countryName} from this shipping zone? +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country" +msgid "Are you sure you want to delete {countryName} from this shipping zone?" +msgstr "" + +#. [src.staff.views.8878988] +#. defaultMessage is: +#. Are you sure you want to delete {email} from staff members? +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "description" +msgid "Are you sure you want to delete {email} from staff members?" +msgstr "" + #. [src.customers.views.1927691511] - delete customer, dialog content #. defaultMessage is: #. Are you sure you want to delete {email}? @@ -1122,11 +1059,11 @@ msgctxt "description" msgid "Are you sure you want to mark this order as paid?" msgstr "" -#. [src.collections.views.1348793822] +#. [src.collections.views.CollectionList.1348793822] #. defaultMessage is: #. Are you sure you want to publish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to publish {counter,plural,one{this collection} " @@ -1155,30 +1092,6 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.orders.components.OrderDraftCancelDialog.3199827590] -#. defaultMessage is: -#. Are you sure you want to remove draft #{number}? -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "description" -msgid "Are you sure you want to remove draft #{number}?" -msgstr "" - -#. [src.products.views.672103788] -#. defaultMessage is: -#. Are you sure you want to remove this image? -#: build/locale/src/products/views/ProductImage.json -msgctxt "description" -msgid "Are you sure you want to remove this image?" -msgstr "" - -#. [src.shipping.views.ShippingZoneDetails.1790261672] - unassign country -#. defaultMessage is: -#. Are you sure you want to remove {countryName} from this shipping zone? -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country" -msgid "Are you sure you want to remove {countryName} from this shipping zone?" -msgstr "" - #. [src.staff.views.3945766678] #. defaultMessage is: #. Are you sure you want to remove {email} avatar? @@ -1187,14 +1100,6 @@ msgctxt "description" msgid "Are you sure you want to remove {email} avatar?" msgstr "" -#. [src.staff.views.2728048444] -#. defaultMessage is: -#. Are you sure you want to remove {email} from staff members? -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "description" -msgid "Are you sure you want to remove {email} from staff members?" -msgstr "" - #. [src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450] #. defaultMessage is: #. Are you sure you want to unassign {attributeName} from {productTypeName}? @@ -1275,11 +1180,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.3944356444] +#. [src.collections.views.CollectionList.3944356444] #. defaultMessage is: #. Are you sure you want to unpublish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to unpublish {counter,plural,one{this collection} " @@ -1440,6 +1345,15 @@ msgctxt "button" msgid "Assign products" msgstr "" +#. [src.attributes.components.AttributeValues.351422234] - assign attribute +#. value button +#. defaultMessage is: +#. Assign value +#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json +msgctxt "assign attribute value button" +msgid "Assign value" +msgstr "" + #. [src.attributes.components.AttributeDetails.3605174225] - attribute's slug #. short code label #. defaultMessage is: @@ -1518,6 +1432,14 @@ msgctxt "product attributes, section header" msgid "Attributes" msgstr "" +#. [src.configuration.2326418019] +#. defaultMessage is: +#. Attributes and Product Typess +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Attributes and Product Typess" +msgstr "" + #. [src.attributes.views.AttributeList.3218248395] - deleted multiple #. attributes #. defaultMessage is: @@ -2301,6 +2223,22 @@ msgctxt "description" msgid "Country area" msgstr "" +#. [menuCreateDialogHeader] - dialog header +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json +msgctxt "dialog header" +msgid "Create Menu" +msgstr "" + +#. [menuListPageAddMenu] - button +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json +msgctxt "button" +msgid "Create Menu" +msgstr "" + #. [src.attributes.components.AttributePage.2855501559] - page title #. defaultMessage is: #. Create New Attribute @@ -2325,6 +2263,30 @@ msgctxt "header" msgid "Create New Shipping Zone" msgstr "" +#. [src.pages.components.PageDetailsPage.1068617485] - page header +#. defaultMessage is: +#. Create Page +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page header" +msgid "Create Page" +msgstr "" + +#. [src.orders.components.OrderProductAddDialog.1542417144] - dialog header +#. defaultMessage is: +#. Create Product +#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json +msgctxt "dialog header" +msgid "Create Product" +msgstr "" + +#. [src.products.components.ProductListPage.1542417144] - button +#. defaultMessage is: +#. Create Product +#: build/locale/src/products/components/ProductListPage/ProductListPage.json +msgctxt "button" +msgid "Create Product" +msgstr "" + #. [src.products.views.1542417144] - window title #. defaultMessage is: #. Create Product @@ -2357,11 +2319,19 @@ msgctxt "page header" msgid "Create Sale" msgstr "" -#. [src.products.views.2362587265] - window title +#. [src.discounts.components.SaleListPage.3866518732] - button +#. defaultMessage is: +#. Create Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "button" +msgid "Create Sale" +msgstr "" + +#. [src.products.views.2362587265] - header #. defaultMessage is: #. Create Variant #: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "window title" +msgctxt "header" msgid "Create Variant" msgstr "" @@ -2373,6 +2343,22 @@ msgctxt "page header" msgid "Create Voucher" msgstr "" +#. [src.attributes.components.AttributeListPage.3824684885] - button +#. defaultMessage is: +#. Create attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "button" +msgid "Create attribute" +msgstr "" + +#. [src.categories.components.CategoryListPage.1140231710] - button +#. defaultMessage is: +#. Create category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "button" +msgid "Create category" +msgstr "" + #. [src.categories.views.1140231710] - window title #. defaultMessage is: #. Create category @@ -2381,6 +2367,14 @@ msgctxt "window title" msgid "Create category" msgstr "" +#. [src.collections.components.CollectionListPage.686910896] - button +#. defaultMessage is: +#. Create collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "button" +msgid "Create collection" +msgstr "" + #. [src.collections.views.686910896] - window title #. defaultMessage is: #. Create collection @@ -2397,6 +2391,14 @@ msgctxt "window title" msgid "Create customer" msgstr "" +#. [menuItemsAddItem] - add new menu item +#. defaultMessage is: +#. Create new item +#: build/locale/src/navigation/components/MenuItems/MenuItems.json +msgctxt "add new menu item" +msgid "Create new item" +msgstr "" + #. [src.orders.components.OrderDraftListPage.2826235371] - button #. defaultMessage is: #. Create order @@ -2409,6 +2411,14 @@ msgctxt "button" msgid "Create order" msgstr "" +#. [src.pages.components.PageListPage.3785394515] - button +#. defaultMessage is: +#. Create page +#: build/locale/src/pages/components/PageListPage/PageListPage.json +msgctxt "button" +msgid "Create page" +msgstr "" + #. [src.pages.views.3785394515] - header #. defaultMessage is: #. Create page @@ -2420,11 +2430,55 @@ msgstr "" #. [src.shipping.components.ShippingZoneRateDialog.16061680] - button #. defaultMessage is: #. Create rate +#. [src.shipping.components.ShippingZoneRates.16061680] - button +#. defaultMessage is: +#. Create rate #: build/locale/src/shipping/components/ShippingZoneRateDialog/ShippingZoneRateDialog.json +#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json msgctxt "button" msgid "Create rate" msgstr "" +#. [src.shipping.components.ShippingZonesList.2673544109] - button +#. defaultMessage is: +#. Create shipping zone +#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json +msgctxt "button" +msgid "Create shipping zone" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.770296100] - button +#. defaultMessage is: +#. Create subcategory +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json +msgctxt "button" +msgid "Create subcategory" +msgstr "" + +#. [src.products.components.ProductVariants.3989383405] - button +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/components/ProductVariants/ProductVariants.json +msgctxt "button" +msgid "Create variant" +msgstr "" + +#. [src.products.views.3989383405] - window title +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/views/ProductVariantCreate.json +msgctxt "window title" +msgid "Create variant" +msgstr "" + +#. [src.discounts.components.VoucherListPage.614836274] - button +#. defaultMessage is: +#. Create voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "button" +msgid "Create voucher" +msgstr "" + #. [src.collections.views.1597339737] #. defaultMessage is: #. Created collection @@ -2471,7 +2525,11 @@ msgstr "" #. [src.components.FilterBar.2340527467] #. defaultMessage is: #. Custom Filter +#. [src.components.SearchBar.2340527467] +#. defaultMessage is: +#. Custom Filter #: build/locale/src/components/FilterBar/FilterBar.json +#: build/locale/src/components/SearchBar/SearchBar.json msgctxt "description" msgid "Custom Filter" msgstr "" @@ -2727,10 +2785,18 @@ msgctxt "dialog title" msgid "Delete Collection" msgstr "" -#. [src.orders.views.1161115149] - dialog header +#. [src.products.views.1731766393] - dialog header +#. defaultMessage is: +#. Delete Image +#: build/locale/src/products/views/ProductImage.json +msgctxt "dialog header" +msgid "Delete Image" +msgstr "" + +#. [src.orders.views.OrderDraftList.1161115149] - dialog header #. defaultMessage is: #. Delete Order Drafts -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog header" msgid "Delete Order Drafts" msgstr "" @@ -2768,10 +2834,10 @@ msgctxt "dialog header" msgid "Delete Product Type" msgstr "" -#. [src.productTypes.views.4080551769] - dialog header +#. [src.productTypes.views.ProductTypeList.4080551769] - dialog header #. defaultMessage is: #. Delete Product Types -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog header" msgid "Delete Product Types" msgstr "" @@ -2800,10 +2866,10 @@ msgctxt "dialog header" msgid "Delete Sale" msgstr "" -#. [src.discounts.views.2809303671] - dialog header +#. [src.discounts.views.SaleList.2809303671] - dialog header #. defaultMessage is: #. Delete Sales -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog header" msgid "Delete Sales" msgstr "" @@ -2817,9 +2883,13 @@ msgctxt "custom search delete, dialog header" msgid "Delete Search" msgstr "" +#. [src.components.Filter.2173195312] - button +#. defaultMessage is: +#. Delete Search #. [src.components.TableFilter.2173195312] - button #. defaultMessage is: #. Delete Search +#: build/locale/src/components/Filter/FilterSearch.json #: build/locale/src/components/TableFilter/FilterChips.json msgctxt "button" msgid "Delete Search" @@ -2886,10 +2956,10 @@ msgctxt "dialog header" msgid "Delete Voucher" msgstr "" -#. [src.discounts.views.367317371] - dialog header +#. [src.discounts.views.VoucherList.367317371] - dialog header #. defaultMessage is: #. Delete Vouchers -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog header" msgid "Delete Vouchers" msgstr "" @@ -2923,11 +2993,11 @@ msgstr "" #. [src.categories.views.712767046] - dialog title #. defaultMessage is: #. Delete categories -#. [src.categories.views.712767046] - dialog title +#. [src.categories.views.CategoryList.712767046] - dialog title #. defaultMessage is: #. Delete categories #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "dialog title" msgid "Delete categories" msgstr "" @@ -2944,10 +3014,10 @@ msgctxt "dialog title" msgid "Delete category" msgstr "" -#. [src.collections.views.3817188998] - dialog title +#. [src.collections.views.CollectionList.3817188998] - dialog title #. defaultMessage is: #. Delete collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Delete collections" msgstr "" @@ -2960,14 +3030,31 @@ msgctxt "dialog header" msgid "Delete customer" msgstr "" -#. [src.customers.views.1946482599] - dialog header +#. [src.customers.views.CustomerList.1946482599] - dialog header #. defaultMessage is: #. Delete customers -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "dialog header" msgid "Delete customers" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.632633254] - dialog header +#. defaultMessage is: +#. Delete draft order +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "dialog header" +msgid "Delete draft order" +msgstr "" + +#. [src.shipping.views.ShippingZoneDetails.1947090060] - unassign country, +#. dialog header +#. defaultMessage is: +#. Delete from shipping zone +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country, dialog header" +msgid "Delete from shipping zone" +msgstr "" + #. [src.collections.views.942133001] - dialog title #. defaultMessage is: #. Delete image @@ -3028,6 +3115,14 @@ msgctxt "description" msgid "Deleted collection" msgstr "" +#. [src.orders.views.OrderDraftList.1648805446] +#. defaultMessage is: +#. Deleted draft orders +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json +msgctxt "description" +msgid "Deleted draft orders" +msgstr "" + #. [menuListDeletedMenu] #. defaultMessage is: #. Deleted menu @@ -3627,14 +3722,6 @@ msgctxt "order history message" msgid "Fulfilled {quantity} items" msgstr "" -#. [src.orders.components.OrderListFilter.2943502192] - order -#. defaultMessage is: -#. Fulfillment Status -#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json -msgctxt "order" -msgid "Fulfillment Status" -msgstr "" - #. [src.orders.components.OrderHistory.3081292385] - order history message #. defaultMessage is: #. Fulfillment confirmation was sent to customer @@ -3791,12 +3878,12 @@ msgctxt "description" msgid "If empty, the preview shows what will be autogenerated." msgstr "" -#. [src.attributes.components.AttributeProperties.2519239682] +#. [src.attributes.components.AttributeProperties.4048785456] #. defaultMessage is: -#. If enable this attribute can be used as a column in product table. +#. If enabled this attribute can be used as a column in product table. #: build/locale/src/attributes/components/AttributeProperties/AttributeProperties.json msgctxt "description" -msgid "If enable this attribute can be used as a column in product table." +msgid "If enabled this attribute can be used as a column in product table." msgstr "" #. [src.attributes.components.AttributeProperties.787251583] @@ -3902,6 +3989,22 @@ msgctxt "product variant stock" msgid "Inventory" msgstr "" +#. [src.staff.components.StaffAddMemberDialog.1481503299] - dialog header +#. defaultMessage is: +#. Invite Staff Member +#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json +msgctxt "dialog header" +msgid "Invite Staff Member" +msgstr "" + +#. [src.staff.components.StaffListPage.797461521] - button +#. defaultMessage is: +#. Invite staff member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "button" +msgid "Invite staff member" +msgstr "" + #. [src.productTypes.components.ProductTypeShipping.2143413921] - switch #. button #. defaultMessage is: @@ -4254,6 +4357,14 @@ msgctxt "voucher requirement" msgid "Minimum quantity of items" msgstr "" +#. [src.configuration.1233229030] +#. defaultMessage is: +#. Miscellaneous +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Miscellaneous" +msgstr "" + #. [src.attributes.components.AttributeDetails.3334509011] - product attribute #. type #. defaultMessage is: @@ -5086,6 +5197,14 @@ msgctxt "description" msgid "Order History" msgstr "" +#. [src.orders.components.OrderListFilter.2222765704] +#. defaultMessage is: +#. Order Status +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +msgctxt "description" +msgid "Order Status" +msgstr "" + #. [src.orders.components.OrderHistory.1230178536] - order history message #. defaultMessage is: #. Order address was updated @@ -5102,13 +5221,13 @@ msgctxt "order history message" msgid "Order confirmation was sent to customer" msgstr "" -#. [src.orders.views.1872939752] +#. [src.orders.views.OrderDraftList.1872939752] #. defaultMessage is: #. Order draft succesfully created #. [src.orders.views.OrderList.1872939752] #. defaultMessage is: #. Order draft succesfully created -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json #: build/locale/src/orders/views/OrderList/OrderList.json msgctxt "description" msgid "Order draft succesfully created" @@ -5773,6 +5892,14 @@ msgctxt "description" msgid "Product Name" msgstr "" +#. [src.configuration.3655543906] +#. defaultMessage is: +#. Product Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Product Settings" +msgstr "" + #. [src.discounts.components.DiscountProducts.4257289053] #. defaultMessage is: #. Product Type @@ -5931,12 +6058,12 @@ msgctxt "order history message" msgid "Products were added to draft order" msgstr "" -#. [src.orders.components.OrderHistory.2574162126] - order history message +#. [src.orders.components.OrderHistory.4067959693] - order history message #. defaultMessage is: -#. Products were removed from draft order +#. Products were deleted from draft order #: build/locale/src/orders/components/OrderHistory/OrderHistory.json msgctxt "order history message" -msgid "Products were removed from draft order" +msgid "Products were deleted from draft order" msgstr "" #. [src.properties] @@ -5963,10 +6090,10 @@ msgctxt "description" msgid "Provided email address does not exist in our database." msgstr "" -#. [src.collections.views.1547167026] - publish collections +#. [src.collections.views.CollectionList.1547167026] - publish collections #. defaultMessage is: #. Publish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "publish collections" msgid "Publish" msgstr "" @@ -6003,10 +6130,10 @@ msgctxt "dialog header" msgid "Publish Products" msgstr "" -#. [src.collections.views.2823425739] - dialog title +#. [src.collections.views.CollectionList.2823425739] - dialog title #. defaultMessage is: #. Publish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Publish collections" msgstr "" @@ -6180,6 +6307,18 @@ msgctxt "shipping method price" msgid "Rate Price" msgstr "" +#. [src.orders.components.OrderListFilter.2415661583] - order status +#. defaultMessage is: +#. Ready to Capture +#. [src.orders.views.OrderList.readyToCapture] - order status +#. defaultMessage is: +#. Ready to Capture +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +#: build/locale/src/orders/views/OrderList/filters.json +msgctxt "order status" +msgid "Ready to Capture" +msgstr "" + #. [src.customers.components.CustomerOrders.3878642352] - section header #. defaultMessage is: #. Recent orders @@ -6228,22 +6367,14 @@ msgctxt "switch button" msgid "Release all stock allocated to this order" msgstr "" -#. [src.auth.components.LoginPage.3182284913] - login -#. defaultMessage is: -#. Remember me -#: build/locale/src/auth/components/LoginPage/LoginPage.json -msgctxt "login" -msgid "Remember me" -msgstr "" - #. [src.categories.views.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. -#. [src.categories.views.3488150607] +#. [src.categories.views.CategoryList.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "description" msgid "Remember this will also delete all products assigned to this category." msgstr "" @@ -6256,39 +6387,6 @@ msgctxt "button" msgid "Remove" msgstr "" -#. [src.products.views.490753666] - dialog header -#. defaultMessage is: -#. Remove Image -#: build/locale/src/products/views/ProductImage.json -msgctxt "dialog header" -msgid "Remove Image" -msgstr "" - -#. [src.orders.components.OrderDraftCancelDialog.500287069] - dialog header -#. defaultMessage is: -#. Remove draft order -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "dialog header" -msgid "Remove draft order" -msgstr "" - -#. [src.shipping.views.ShippingZoneDetails.254167659] - unassign country, -#. dialog header -#. defaultMessage is: -#. Remove from shipping zone -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country, dialog header" -msgid "Remove from shipping zone" -msgstr "" - -#. [src.orders.views.3880993240] -#. defaultMessage is: -#. Removed draft orders -#: build/locale/src/orders/views/OrderDraftList.json -msgctxt "description" -msgid "Removed draft orders" -msgstr "" - #. [src.pages.views.1457312643] #. defaultMessage is: #. Removed page @@ -6454,6 +6552,18 @@ msgctxt "button" msgid "Save" msgstr "" +#. [src.components.Filter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#. [src.components.TableFilter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#: build/locale/src/components/Filter/FilterSearch.json +#: build/locale/src/components/TableFilter/FilterChips.json +msgctxt "button" +msgid "Save Custom Search" +msgstr "" + #. [src.components.SaveFilterTabDialog.1514415736] - save filter tab, header #. defaultMessage is: #. Save Custom Search @@ -6462,14 +6572,6 @@ msgctxt "save filter tab, header" msgid "Save Custom Search" msgstr "" -#. [src.components.TableFilter.1514415736] - button -#. defaultMessage is: -#. Save Custom Search -#: build/locale/src/components/TableFilter/FilterChips.json -msgctxt "button" -msgid "Save Custom Search" -msgstr "" - #. [src.products.components.ProductVariantCreatePage.2853608829] - button #. defaultMessage is: #. Save variant @@ -6486,6 +6588,14 @@ msgctxt "description" msgid "Saved changes" msgstr "" +#. [src.attributes.components.AttributeListPage.3916653510] +#. defaultMessage is: +#. Search Attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "description" +msgid "Search Attribute" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.902296540] #. defaultMessage is: #. Search Attributes @@ -6502,10 +6612,30 @@ msgctxt "description" msgid "Search Categories" msgstr "" +#. [src.categories.components.CategoryListPage.3841025483] +#. defaultMessage is: +#. Search Category +#. [src.translations.components.TranslationsEntitiesListPage.3841025483] +#. defaultMessage is: +#. Search Category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Category" +msgstr "" + +#. [src.collections.components.CollectionListPage.4057224233] +#. defaultMessage is: +#. Search Collection #. [src.components.AssignCollectionDialog.4057224233] #. defaultMessage is: #. Search Collection +#. [src.translations.components.TranslationsEntitiesListPage.4057224233] +#. defaultMessage is: +#. Search Collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json #: build/locale/src/components/AssignCollectionDialog/AssignCollectionDialog.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json msgctxt "description" msgid "Search Collection" msgstr "" @@ -6518,6 +6648,14 @@ msgctxt "description" msgid "Search Countries" msgstr "" +#. [src.customers.components.CustomerListPage.1643417013] +#. defaultMessage is: +#. Search Customer +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "description" +msgid "Search Customer" +msgstr "" + #. [src.orders.components.OrderCustomer.2433460203] #. defaultMessage is: #. Search Customers @@ -6526,6 +6664,14 @@ msgctxt "description" msgid "Search Customers" msgstr "" +#. [src.orders.components.OrderDraftListPage.77765281] +#. defaultMessage is: +#. Search Draft +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "description" +msgid "Search Draft" +msgstr "" + #. [src.translations.components.TranslationsCategoriesPage.1406947243] #. defaultMessage is: #. Search Engine Description @@ -6606,6 +6752,34 @@ msgctxt "description" msgid "Search Orders..." msgstr "" +#. [src.translations.components.TranslationsEntitiesListPage.2559018090] +#. defaultMessage is: +#. Search Page +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Page" +msgstr "" + +#. [src.translations.components.TranslationsEntitiesListPage.2105464697] +#. defaultMessage is: +#. Search Product +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product" +msgstr "" + +#. [src.productTypes.components.ProductTypeListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#. [src.translations.components.TranslationsEntitiesListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product Type" +msgstr "" + #. [src.components.AssignProductDialog.2850255786] #. defaultMessage is: #. Search Products @@ -6618,14 +6792,46 @@ msgctxt "description" msgid "Search Products" msgstr "" -#. [src.products.components.ProductListPage.3550330425] +#. [src.products.components.ProductListFilter.3550330425] #. defaultMessage is: #. Search Products... -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Search Products..." msgstr "" +#. [src.discounts.components.SaleListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#. [src.translations.components.TranslationsEntitiesListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Sale" +msgstr "" + +#. [src.staff.components.StaffListPage.61043583] +#. defaultMessage is: +#. Search Staff Member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "description" +msgid "Search Staff Member" +msgstr "" + +#. [src.discounts.components.VoucherListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#. [src.translations.components.TranslationsEntitiesListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Voucher" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.524117994] #. defaultMessage is: #. Search by attribute name @@ -6732,10 +6938,10 @@ msgctxt "description" msgid "Select all orders where:" msgstr "" -#. [src.products.components.ProductListPage.1421689426] +#. [src.products.components.ProductListFilter.1421689426] #. defaultMessage is: #. Select all products where: -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Select all products where:" msgstr "" @@ -6821,6 +7027,14 @@ msgctxt "description" msgid "Set plugin as Active" msgstr "" +#. [src.components.VisibilityCard.292404896] +#. defaultMessage is: +#. Set publication date +#: build/locale/src/components/VisibilityCard/VisibilityCard.json +msgctxt "description" +msgid "Set publication date" +msgstr "" + #. [src.discounts.shipment] - voucher discount #. defaultMessage is: #. Shipment @@ -7086,6 +7300,14 @@ msgctxt "staff section name" msgid "Staff Members" msgstr "" +#. [src.configuration.3140151600] +#. defaultMessage is: +#. Staff Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Staff Settings" +msgstr "" + #. [src.standard] - tax rate #. defaultMessage is: #. Standard @@ -8070,10 +8292,10 @@ msgctxt "payment status" msgid "Unpaid" msgstr "" -#. [src.collections.views.2237014112] - unpublish collections +#. [src.collections.views.CollectionList.2237014112] - unpublish collections #. defaultMessage is: #. Unpublish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "unpublish collections" msgid "Unpublish" msgstr "" @@ -8110,10 +8332,10 @@ msgctxt "dialog header" msgid "Unpublish Products" msgstr "" -#. [src.collections.views.2637364047] - dialog title +#. [src.collections.views.CollectionList.2637364047] - dialog title #. defaultMessage is: #. Unpublish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Unpublish collections" msgstr "" @@ -8613,6 +8835,22 @@ msgctxt "description" msgid "ZIP / Postal code" msgstr "" +#. [src.productTypes.components.ProductTypeListPage.3479705616] - button +#. defaultMessage is: +#. create product type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "button" +msgid "create product type" +msgstr "" + +#. [src.staff.views.1308770978] - dialog header +#. defaultMessage is: +#. delete Staff User +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "dialog header" +msgid "delete Staff User" +msgstr "" + #. [orderPaymentVATDoesNotApply] - vat not included in order price #. defaultMessage is: #. does not apply @@ -8686,19 +8924,35 @@ msgctxt "product status is set as" msgid "is set as" msgstr "" -#. [src.staff.views.2240444792] - dialog header -#. defaultMessage is: -#. remove Staff User -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "dialog header" -msgid "remove Staff User" -msgstr "" - -#. [src.components.VisibilityCard.1815688500] +#. [src.collections.components.CollectionCreatePage.1815688500] - collection #. defaultMessage is: #. since {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.1815688500] - collection +#. defaultMessage is: +#. since {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "since {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.1815688500] - page +#. defaultMessage is: +#. since {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "since {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#. [src.products.components.ProductUpdatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "since {date}" msgstr "" @@ -8726,11 +8980,35 @@ msgctxt "weight" msgid "to {value} {unit}" msgstr "" -#. [src.components.VisibilityCard.2001551496] +#. [src.collections.components.CollectionCreatePage.2001551496] - collection #. defaultMessage is: #. will be visible from {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.2001551496] - collection +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "will be visible from {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.2001551496] - page +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "will be visible from {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#. [src.products.components.ProductUpdatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "will be visible from {date}" msgstr "" diff --git a/locale/hu.json b/locale/hu.json index f6872f1a3..a511f816d 100644 --- a/locale/hu.json +++ b/locale/hu.json @@ -1 +1 @@ -{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.350498821":"tulajdonsáh hozzáadása","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.2519239682":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"Név","src.categories.components.CategoryProducts.636461959":"Név","src.collections.components.CollectionProducts.636461959":"Név","src.products.components.ProductDetailsForm.636461959":"Név","src.collections.components.CollectionDetails.636461959":"Név","src.components.ProductList.636461959":"Név","src.discounts.components.SaleInfo.636461959":"Név","src.discounts.components.SaleList.636461959":"Név","src.discounts.components.SaleSummary.636461959":"Név","menuItemDialogNameLabel":"Név","src.products.components.ProductVariants.636461959":"Név","src.shipping.components.ShippingZoneRates.636461959":"Név","src.shipping.components.ShippingZonesList.636461959":"Név","src.staff.components.StaffList.636461959":"Név","src.translations.components.TranslationsEntitiesList.636461959":"Név","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.254756045":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.3182284913":"","src.auth.components.LoginPage.109182747":"","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"","src.categories.views.2004894945":"","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.3229914152":"","src.categories.components.CategoryList.435697837":"","src.categories.components.CategoryList.2159874182":"","src.categories.components.CategoryUpdatePage.2159874182":"","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.228151782":"","src.categories.components.CategoryProducts.2968663655":"Termékek","src.categories.components.CategoryUpdatePage.2968663655":"Termékek","src.discounts.components.DiscountCategories.2968663655":"Termékek","src.discounts.components.DiscountCollections.2968663655":"Termékek","src.products":"Termékek","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryProducts.3554578821":"Termék hozzáadás","src.categories.components.CategoryProductsCard.3554578821":"Termék hozzáadás","src.categories.components.CategoryProducts.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProducts.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.categories.components.CategoryProductsCard.4164156574":"","src.categories.views.1754466114":"","src.categories.views.1140231710":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.712767046":"","src.categories.views.299584400":"","src.categories.views.844574071":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.collections.components.CollectionCreatePage.3958681866":"","src.collections.components.CollectionListPage.3958681866":"","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"","src.availability":"","src.collections.components.CollectionList.3640454975":"Közétett","src.collections.components.CollectionProducts.3640454975":"Közétett","src.discounts.components.DiscountProducts.3640454975":"Közétett","src.components.ProductList.3640454975":"Közétett","src.products.components.ProductListPage.3640454975":"Közétett","src.pages.components.PageList.3640454975":"Közétett","src.products.views.ProductList.published":"Közétett","src.collections.components.CollectionList.2341910657":"Nem közétett","src.collections.components.CollectionProducts.2341910657":"Nem közétett","src.discounts.components.DiscountProducts.2341910657":"Nem közétett","src.components.ProductList.2341910657":"Nem közétett","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.686910896":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"","src.collections.views.2402899582":"","src.collections.views.2237014112":"","src.pages.views.2237014112":"","src.products.views.ProductList.2237014112":"","src.collections.views.1547167026":"","src.pages.views.1547167026":"","src.products.views.ProductList.1547167026":"","src.collections.views.2823425739":"","src.collections.views.1348793822":"","src.collections.views.2637364047":"","src.collections.views.3944356444":"","src.collections.views.3817188998":"","src.collections.views.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"kijelentkezés","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.4057224233":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"","src.components.ErrorMessageCard.2845142593":"","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.FilterBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"Hozzáad","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.ProductList.1134347598":"Ár","src.orders.components.OrderDraftDetailsProducts.1134347598":"Ár","src.orders.components.OrderFulfillment.1134347598":"Ár","src.products.components.ProductListPage.1134347598":"Ár","src.products.components.ProductPricing.1134347598":"Ár","src.orders.components.OrderUnfulfilledItems.1134347598":"Ár","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"Ár","src.shipping.components.ShippingZoneRates.1134347598":"Ár","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"Láthatóság","src.pages.components.PageList.1459686496":"Láthatóság","src.products.components.ProductListFilter.1459686496":"Láthatóság","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"","src.products.views.ProductList.hidden":"","src.components.VisibilityCard.1815688500":"","src.components.VisibilityCard.2001551496":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","configurationMenuStaff":"","configurationMenuShipping":"","configurationMenuTaxes":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","src.customers.components.CustomerAddress.1320082647":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"Számlázási cím","src.customers.components.CustomerAddresses.3517722732":"","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"Cím","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"Megjegyzések","src.orders.components.OrderCustomerNote.1520756907":"Megjegyzések","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"Megjegyzés","src.customers.components.CustomerDetails.577013340":"Megjegyzés","src.customers.components.CustomerCreatePage.1934221653":"","src.customers.components.CustomerListPage.1934221653":"","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerOrders.3878642352":"","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"","src.orders.components.OrderDraftList.4205493358":"","src.orders.components.OrderList.4205493358":"","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"","src.orders.components.OrderListFilter.1756106276":"","src.products.components.ProductListFilter.1756106276":"","src.products.components.ProductVariants.1756106276":"","src.customers.components.CustomerOrders.878013594":"Összesen","src.orders.components.OrderDraftDetailsProducts.878013594":"Összesen","src.orders.components.OrderDraftDetailsSummary.878013594":"Összesen","src.orders.components.OrderDraftList.878013594":"Összesen","src.orders.components.OrderFulfillment.878013594":"Összesen","src.orders.components.OrderUnfulfilledItems.878013594":"Összesen","src.orders.components.OrderList.878013594":"Összesen","src.orders.components.OrderPayment.878013594":"Összesen","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.1946482599":"","src.customers.views.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"Érték","src.discounts.components.SaleSummary.1148029984":"Érték","src.discounts.components.VoucherList.1148029984":"Érték","src.discounts.components.VoucherSummary.1148029984":"Érték","src.discounts.components.VoucherValue.1148029984":"Érték","src.products.components.ProductAttributes.1148029984":"Érték","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.1742771332":"","src.discounts.components.SalePricing.1099355007":"","src.products.components.ProductPricing.1099355007":"","src.products.components.ProductVariantPrice.1099355007":"","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"Kód","src.discounts.components.VoucherSummary.78726751":"Kód","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.1536809153":"","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"","src.discounts.shipment":"","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.2809303671":"","src.discounts.views.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.367317371":"","src.discounts.views.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"Mégse","src.orders.views.OrderList.3528672691":"Mégse","src.confirm":"","src.delete":"","src.edit":"Szerkesztés","src.manage":"","src.remove":"","src.save":"","src.show":"","src.undo":"","src.attributes":"","src.products.components.ProductAttributes.4153345096":"","src.categories":"Kategóriák","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"Kollekciók","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"","src.customers":"","src.draftOrders":"","src.home":"Főoldal","src.navigation":"","src.orders":"Rendelések","src.pages":"","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"","src.taxes.components.CountryListPage.3955023266":"","src.translations":"","src.vouchers":"","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"Fizetve","src.partiallyPaid":"","src.partiallyRefunded":"","src.refunded":"","src.unpaid":"","src.cancelled":"Lemondva","src.draft":"","src.fulfilled":"","src.orders.views.OrderList.fulfilled":"","src.orders.components.OrderListFilter.1712863026":"","src.partiallyFulfilled":"","src.unfulfilled":"","src.orders.views.OrderList.unfulfilled":"","src.orders.components.OrderListFilter.1751787272":"","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","src.1395232177":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"","src.orders.components.OrderDetailsPage.1854613983":"","src.orders.components.OrderDraftPage.1854613983":"","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"Vásárló","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"Vásárló","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"","src.orders.components.OrderCustomerEditDialog.1411666943":"","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.500287069":"","src.orders.components.OrderDraftCancelDialog.3199827590":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"Termék","src.orders.components.OrderUnfulfilledItems.1895667608":"Termék","src.orders.components.OrderDraftDetailsProducts.2796503714":"Mennyiség","src.orders.components.OrderFulfillment.2796503714":"Mennyiség","src.orders.components.OrderFulfillmentDialog.2796503714":"Mennyiség","src.orders.components.OrderUnfulfilledItems.2796503714":"Mennyiség","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"","src.orders.components.OrderPayment.781550514":"","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"Rendelés felvitel","src.orders.components.OrderListPage.2826235371":"Rendelés felvitel","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"","src.orders.components.OrderFulfillmentCancelDialog.732594284":"","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.2574162126":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"Rendelés leadva","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"Fizetés","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2943502192":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"Szállításra","src.productTypes.components.ProductTypeShipping.1325966144":"Szállításra","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"Szállításra","src.orders.components.OrderPayment.3768782744":"","src.orders.components.OrderPayment.2320183694":"","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"","src.orders.components.OrderPayment.2845258362":"Visszatérítés","src.orders.components.OrderPayment.2444197639":"","src.orders.components.OrderPayment.3500506678":"Megjelölve fizetettként","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"Mennyiség","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.2775402904":"","src.products.components.ProductListPage.2775402904":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.3880993240":"","src.orders.views.1161115149":"","src.orders.views.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.755314116":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"Cím","src.pages.components.PageList.1124600214":"Cím","src.pages.components.PageInfo.1116746286":"","src.translations.components.TranslationsPagesPage.1116746286":"","src.pages.components.PageList.3478065224":"","src.pages.components.PageSlug.3478065224":"","src.productTypes.components.ProductTypeAttributes.3478065224":"","src.pages.components.PageList.3767550649":"","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.1767905232":"","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.3785394515":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"","src.products.components.ProductVariantImages.3240888698":"","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"","src.products.components.ProductVariantStock.3841616483":"","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListPage.821159718":"","src.products.components.ProductListPage.1421689426":"","src.products.components.ProductListPage.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"","prodictStockInventoryLabel":"","src.products.components.ProductVariantStock.3490038570":"","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"","src.products.components.ProductVariants.2153006789":"","src.products.components.ProductVariantNavigation.2845381934":"","src.products.components.ProductVariants.2845381934":"","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1542417144":"","src.products.views.1591632382":"","src.products.views.490753666":"","src.products.views.672103788":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.1694086800":"","src.products.views.ProductList.224127438":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.products.views.2178905289":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1756957616":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.889729490":"","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.4080551769":"","src.productTypes.views.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.352297149":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2474410767":"","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.254167659":"","src.shipping.views.ShippingZoneDetails.1790261672":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"","src.siteSettings.components.SiteSettingsKeys.2446088470":"","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.3490059488":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.3247064221":"Aktív","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.802625341":"","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"Felhasználó aktív","src.staff.views.2240444792":"","src.staff.views.2728048444":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file +{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.3824684885":"","src.attributes.components.AttributeListPage.2417065806":"","src.attributes.components.AttributeListPage.3916653510":"","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.4048785456":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"Név","src.categories.components.CategoryProductList.636461959":"Név","src.components.ProductList.636461959":"Név","src.products.components.ProductList.636461959":"Név","src.collections.components.CollectionDetails.636461959":"Név","src.collections.components.CollectionProducts.636461959":"Név","src.products.components.ProductDetailsForm.636461959":"Név","src.discounts.components.SaleInfo.636461959":"Név","src.discounts.components.SaleList.636461959":"Név","src.discounts.components.SaleSummary.636461959":"Név","menuItemDialogNameLabel":"Név","src.plugins.components.PluginsList.636461959":"Név","src.products.components.ProductVariants.636461959":"Név","src.shipping.components.ShippingZoneRates.636461959":"Név","src.shipping.components.ShippingZonesList.636461959":"Név","src.staff.components.StaffList.636461959":"Név","src.translations.components.TranslationsEntitiesList.636461959":"Név","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.351422234":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.109182747":"","src.auth.components.LoginPage.4028609483":"","src.auth.components.NewPasswordPage.1915811227":"","src.auth.components.NewPasswordPage.1254879564":"","src.auth.components.NewPasswordPage.2799926859":"","src.auth.components.NewPasswordPage.4253911811":"","src.auth.components.NewPasswordPage.2342634351":"","src.auth.components.ResetPasswordPage.2370700732":"","src.auth.components.ResetPasswordPage.3663311080":"","src.auth.components.ResetPasswordSuccessPage.4066297200":"","src.auth.components.ResetPasswordSuccessPage.2245157344":"","src.auth.views.2388238158":"","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"","src.categories.views.2004894945":"","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.2159874182":"","src.categories.components.CategoryUpdatePage.2159874182":"","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.1140231710":"","src.categories.views.1140231710":"","src.categories.components.CategoryListPage.4294878092":"","src.categories.components.CategoryListPage.3841025483":"","src.translations.components.TranslationsEntitiesListPage.3841025483":"","src.categories.components.CategoryProductList.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductList.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProductList.3640454975":"Közétett","src.components.ProductList.3640454975":"Közétett","src.products.components.ProductList.3640454975":"Közétett","src.products.components.ProductListPage.3640454975":"Közétett","productStatusLabel":"Közétett","src.collections.components.CollectionList.3640454975":"Közétett","src.collections.components.CollectionProducts.3640454975":"Közétett","src.discounts.components.DiscountProducts.3640454975":"Közétett","src.pages.components.PageList.3640454975":"Közétett","src.products.views.ProductList.published":"Közétett","src.categories.components.CategoryProductList.1134347598":"Ár","src.orders.components.OrderFulfillment.1134347598":"Ár","src.products.components.ProductList.1134347598":"Ár","src.products.components.ProductListPage.1134347598":"Ár","src.products.components.ProductPricing.1134347598":"Ár","src.components.ProductList.1134347598":"Ár","src.orders.components.OrderDraftDetailsProducts.1134347598":"Ár","src.orders.components.OrderUnfulfilledItems.1134347598":"Ár","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"Ár","src.shipping.components.ShippingZoneRates.1134347598":"Ár","src.categories.components.CategoryProductList.2341910657":"Nem közétett","src.products.components.ProductList.2341910657":"Nem közétett","src.collections.components.CollectionList.2341910657":"Nem közétett","src.collections.components.CollectionProducts.2341910657":"Nem közétett","src.discounts.components.DiscountProducts.2341910657":"Nem közétett","src.components.ProductList.2341910657":"Nem közétett","src.categories.components.CategoryProductList.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.products.components.ProductList.1657559629":"","src.categories.components.CategoryProducts.4164156574":"","src.categories.components.CategoryProducts.3554578821":"Termék hozzáadás","src.categories.components.CategoryUpdatePage.2968663655":"Termékek","src.discounts.components.DiscountCategories.2968663655":"Termékek","src.discounts.components.DiscountCollections.2968663655":"Termékek","src.products":"Termékek","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryUpdatePage.3229914152":"","src.categories.components.CategoryUpdatePage.770296100":"","src.categories.views.1754466114":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.CategoryList.3488150607":"","src.categories.views.712767046":"","src.categories.views.CategoryList.712767046":"","src.categories.views.299584400":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.categories.views.CategoryList.2144707585":"","src.collections.components.CollectionCreatePage.3958681866":"","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionCreatePage.2001551496":"","src.collections.components.CollectionDetailsPage.2001551496":"","src.pages.components.PageDetailsPage.2001551496":"","src.products.components.ProductCreatePage.2001551496":"","src.products.components.ProductUpdatePage.2001551496":"","src.collections.components.CollectionCreatePage.1815688500":"","src.collections.components.CollectionDetailsPage.1815688500":"","src.pages.components.PageDetailsPage.1815688500":"","src.products.components.ProductCreatePage.1815688500":"","src.products.components.ProductUpdatePage.1815688500":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"","src.availability":"","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionListPage.686910896":"","src.collections.views.686910896":"","src.collections.components.CollectionListPage.1631917001":"","src.collections.components.CollectionListPage.4057224233":"","src.components.AssignCollectionDialog.4057224233":"","src.translations.components.TranslationsEntitiesListPage.4057224233":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"","src.collections.views.2402899582":"","src.collections.views.CollectionList.2237014112":"","src.pages.views.2237014112":"","src.products.views.ProductList.2237014112":"","src.collections.views.CollectionList.1547167026":"","src.pages.views.1547167026":"","src.products.views.ProductList.1547167026":"","src.collections.views.CollectionList.2823425739":"","src.collections.views.CollectionList.1348793822":"","src.collections.views.CollectionList.2637364047":"","src.collections.views.CollectionList.3944356444":"","src.collections.views.CollectionList.3817188998":"","src.collections.views.CollectionList.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"kijelentkezés","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"","src.components.ErrorMessageCard.2845142593":"","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.Filter.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.Filter.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.FilterBar.2340527467":"","src.components.SearchBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"Hozzáad","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"Láthatóság","src.pages.components.PageList.1459686496":"Láthatóság","src.products.components.ProductListFilter.1459686496":"Láthatóság","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"","src.products.views.ProductList.hidden":"","src.components.VisibilityCard.292404896":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","src.configuration.2326418019":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","src.configuration.3655543906":"","configurationMenuShipping":"","configurationMenuTaxes":"","src.configuration.3140151600":"","configurationMenuStaff":"","src.configuration.1233229030":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","configurationPluginsPages":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"Számlázási cím","src.customers.components.CustomerAddresses.3517722732":"","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"Cím","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"Megjegyzések","src.orders.components.OrderCustomerNote.1520756907":"Megjegyzések","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"Megjegyzés","src.customers.components.CustomerDetails.577013340":"Megjegyzés","src.customers.components.CustomerCreatePage.1934221653":"","src.customers.components.CustomerListPage.1934221653":"","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerListPage.477293306":"","src.customers.components.CustomerListPage.1643417013":"","src.customers.components.CustomerOrders.3878642352":"","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"","src.orders.components.OrderDraftList.4205493358":"","src.orders.components.OrderList.4205493358":"","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"","src.orders.components.OrderListFilter.1756106276":"","src.plugins.components.PluginInfo.1756106276":"","src.products.components.ProductListFilter.1756106276":"","src.products.components.ProductVariants.1756106276":"","src.customers.components.CustomerOrders.878013594":"Összesen","src.orders.components.OrderDraftDetailsProducts.878013594":"Összesen","src.orders.components.OrderDraftDetailsSummary.878013594":"Összesen","src.orders.components.OrderDraftList.878013594":"Összesen","src.orders.components.OrderFulfillment.878013594":"Összesen","src.orders.components.OrderUnfulfilledItems.878013594":"Összesen","src.orders.components.OrderList.878013594":"Összesen","src.orders.components.OrderPayment.878013594":"Összesen","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.CustomerList.1946482599":"","src.customers.views.CustomerList.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","src.discounts.components.SaleListPage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"Érték","src.discounts.components.SaleSummary.1148029984":"Érték","src.discounts.components.VoucherList.1148029984":"Érték","src.discounts.components.VoucherSummary.1148029984":"Érték","src.discounts.components.VoucherValue.1148029984":"Érték","src.products.components.ProductAttributes.1148029984":"Érték","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.3907768880":"","src.discounts.components.SaleListPage.1866913828":"","src.translations.components.TranslationsEntitiesListPage.1866913828":"","src.discounts.components.SalePricing.1099355007":"","src.products.components.ProductPricing.1099355007":"","src.products.components.ProductVariantPrice.1099355007":"","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"Kód","src.discounts.components.VoucherSummary.78726751":"Kód","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.614836274":"","src.discounts.components.VoucherListPage.1112241061":"","src.discounts.components.VoucherListPage.1930485532":"","src.translations.components.TranslationsEntitiesListPage.1930485532":"","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"","src.discounts.shipment":"","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.SaleList.2809303671":"","src.discounts.views.SaleList.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.VoucherList.367317371":"","src.discounts.views.VoucherList.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.somethingWentWrong":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"Mégse","src.orders.views.OrderList.3528672691":"Mégse","src.confirm":"","src.delete":"","src.edit":"Szerkesztés","src.manage":"","src.remove":"","src.save":"","src.show":"","src.undo":"","src.attributes":"","src.products.components.ProductAttributes.4153345096":"","src.categories":"Kategóriák","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"Kollekciók","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"","src.customers":"","src.draftOrders":"","src.home":"Főoldal","src.navigation":"","src.orders":"Rendelések","src.pages":"","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.plugins":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"","src.taxes.components.CountryListPage.3955023266":"","src.translations":"","src.vouchers":"","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"Fizetve","src.partiallyPaid":"","src.partiallyRefunded":"","src.refunded":"","src.unpaid":"","src.cancelled":"Lemondva","src.draft":"","src.fulfilled":"","src.orders.views.OrderList.fulfilled":"","src.orders.components.OrderListFilter.1712863026":"","src.partiallyFulfilled":"","src.unfulfilled":"","src.orders.views.OrderList.unfulfilled":"","src.orders.components.OrderListFilter.1751787272":"","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"","src.orders.components.OrderDetailsPage.1854613983":"","src.orders.components.OrderDraftPage.1854613983":"","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"Vásárló","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"Vásárló","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"","src.orders.components.OrderCustomerEditDialog.1411666943":"","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.632633254":"","src.orders.components.OrderDraftCancelDialog.36681973":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"Termék","src.orders.components.OrderUnfulfilledItems.1895667608":"Termék","src.orders.components.OrderDraftDetailsProducts.2796503714":"Mennyiség","src.orders.components.OrderFulfillment.2796503714":"Mennyiség","src.orders.components.OrderFulfillmentDialog.2796503714":"Mennyiség","src.orders.components.OrderUnfulfilledItems.2796503714":"Mennyiség","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"","src.orders.components.OrderPayment.781550514":"","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"Rendelés felvitel","src.orders.components.OrderListPage.2826235371":"Rendelés felvitel","src.orders.components.OrderDraftListPage.551325728":"","src.orders.components.OrderDraftListPage.77765281":"","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"","src.orders.components.OrderFulfillmentCancelDialog.732594284":"","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.4067959693":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"Rendelés leadva","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"Fizetés","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2415661583":"","src.orders.views.OrderList.readyToCapture":"","src.orders.components.OrderListFilter.2222765704":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"Szállításra","src.productTypes.components.ProductTypeShipping.1325966144":"Szállításra","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"Szállításra","src.orders.components.OrderPayment.3768782744":"","src.orders.components.OrderPayment.2320183694":"","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"","src.orders.components.OrderPayment.2845258362":"Visszatérítés","src.orders.components.OrderPayment.2444197639":"","src.orders.components.OrderPayment.3500506678":"Megjelölve fizetettként","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"Mennyiség","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.1542417144":"","src.products.components.ProductListPage.1542417144":"","src.products.views.1542417144":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.OrderDraftList.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.OrderDraftList.1648805446":"","src.orders.views.OrderDraftList.1161115149":"","src.orders.views.OrderDraftList.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.1068617485":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"Cím","src.pages.components.PageList.1124600214":"Cím","src.pages.components.PageInfo.1116746286":"","src.translations.components.TranslationsPagesPage.1116746286":"","src.pages.components.PageList.3478065224":"","src.pages.components.PageSlug.3478065224":"","src.productTypes.components.ProductTypeAttributes.3478065224":"","src.pages.components.PageList.3767550649":"","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.3785394515":"","src.pages.views.3785394515":"","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.plugins.components.PluginInfo.3425535100":"","src.plugins.components.PluginsDetailsPage.3425535100":"","src.plugins.components.PluginInfo.1049131348":"","src.plugins.components.PluginInfo.4013064767":"","src.plugins.components.PluginsDetailsPage.3352026836":"","src.plugins.components.PluginsDetailsPage.2277745418":"","src.plugins.components.PluginsDetailsPage.1970881031":"","src.plugins.components.PluginSettings.1970881031":"","src.plugins.components.PluginsDetailsPage.4241018152":"","src.plugins.components.PluginsList.3247064221":"Aktív","src.staff.components.StaffList.3247064221":"Aktív","src.plugins.components.PluginsList.4120604650":"","src.plugins.components.PluginsList.666641390":"","src.plugins.views.100549097":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"","src.products.components.ProductVariantImages.3240888698":"","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"","src.products.components.ProductVariantStock.3841616483":"","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListFilter.821159718":"","src.products.components.ProductListFilter.1421689426":"","src.products.components.ProductListFilter.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"","prodictStockInventoryLabel":"","src.products.components.ProductVariantStock.3490038570":"","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"","src.products.components.ProductVariants.2153006789":"","src.products.components.ProductVariantNavigation.2845381934":"","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.3989383405":"","src.products.views.3989383405":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1591632382":"","src.products.views.1731766393":"","src.products.views.2880386427":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1217376589":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.3479705616":"","src.productTypes.components.ProductTypeListPage.1776073799":"","src.productTypes.components.ProductTypeListPage.3420445375":"","src.translations.components.TranslationsEntitiesListPage.3420445375":"","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.ProductTypeList.4080551769":"","src.productTypes.views.ProductTypeList.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRates.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2673544109":"","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.1947090060":"","src.shipping.views.ShippingZoneDetails.131963671":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"","src.siteSettings.components.SiteSettingsKeys.2446088470":"","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.1481503299":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.797461521":"","src.staff.components.StaffListPage.2852350932":"","src.staff.components.StaffListPage.61043583":"","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"Felhasználó aktív","src.staff.views.1308770978":"","src.staff.views.8878988":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.2105464697":"","src.translations.components.TranslationsEntitiesListPage.2559018090":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file diff --git a/locale/hu.po b/locale/hu.po index b29433bcf..a144f7fff 100644 --- a/locale/hu.po +++ b/locale/hu.po @@ -5,7 +5,7 @@ # msgid "" msgstr "" -"POT-Creation-Date: 2019-09-06T13:56:36.897Z\n" +"POT-Creation-Date: 2019-09-16T15:25:09.340Z\n" "Last-Translator: Tóth Péter , 2019\n" "Language-Team: Hungarian (https://www.transifex.com/mirumee/teams/34782/hu/)\n" "MIME-Version: 1.0\n" @@ -143,22 +143,6 @@ msgctxt "create new menu item, header" msgid "Add Item" msgstr "" -#. [menuCreateDialogHeader] - dialog header -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json -msgctxt "dialog header" -msgid "Add Menu" -msgstr "" - -#. [menuListPageAddMenu] - button -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json -msgctxt "button" -msgid "Add Menu" -msgstr "" - #. [src.siteSettings.components.SiteSettingsKeyDialog.1238948746] - dialog #. header #. defaultMessage is: @@ -168,14 +152,6 @@ msgctxt "dialog header" msgid "Add New Authorization Key" msgstr "" -#. [src.pages.components.PageDetailsPage.755314116] - page header -#. defaultMessage is: -#. Add Page -#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json -msgctxt "page header" -msgid "Add Page" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.2892088870] - dialog header #. defaultMessage is: #. Add Price Rate @@ -184,38 +160,6 @@ msgctxt "dialog header" msgid "Add Price Rate" msgstr "" -#. [src.orders.components.OrderProductAddDialog.2775402904] - dialog header -#. defaultMessage is: -#. Add Product -#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json -msgctxt "dialog header" -msgid "Add Product" -msgstr "" - -#. [src.products.components.ProductListPage.2775402904] - button -#. defaultMessage is: -#. Add Product -#: build/locale/src/products/components/ProductListPage/ProductListPage.json -msgctxt "button" -msgid "Add Product" -msgstr "" - -#. [src.discounts.components.SaleListPage.1742771332] - button -#. defaultMessage is: -#. Add Sale -#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json -msgctxt "button" -msgid "Add Sale" -msgstr "" - -#. [src.staff.components.StaffAddMemberDialog.3490059488] - dialog header -#. defaultMessage is: -#. Add Staff Member -#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json -msgctxt "dialog header" -msgid "Add Staff Member" -msgstr "" - #. [src.attributes.components.AttributeValueEditDialog.1841790893] - add #. attribute value #. defaultMessage is: @@ -225,14 +169,6 @@ msgctxt "add attribute value" msgid "Add Value" msgstr "" -#. [src.products.views.2178905289] - header -#. defaultMessage is: -#. Add Variant -#: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "header" -msgid "Add Variant" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.1397795758] - add weight #. based shipping method, dialog header #. defaultMessage is: @@ -250,14 +186,6 @@ msgctxt "button" msgid "Add address" msgstr "" -#. [src.attributes.components.AttributeListPage.350498821] - button -#. defaultMessage is: -#. Add attribute -#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json -msgctxt "button" -msgid "Add attribute" -msgstr "tulajdonsáh hozzáadása" - #. [src.siteSettings.components.SiteSettingsKeyDialog.50561933] - button #. defaultMessage is: #. Add authentication @@ -266,14 +194,6 @@ msgctxt "button" msgid "Add authentication" msgstr "" -#. [src.categories.components.CategoryListPage.228151782] - button -#. defaultMessage is: -#. Add category -#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json -msgctxt "button" -msgid "Add category" -msgstr "" - #. [src.collections.components.CollectionCreatePage.3958681866] - page header #. defaultMessage is: #. Add collection @@ -282,14 +202,6 @@ msgctxt "page header" msgid "Add collection" msgstr "" -#. [src.collections.components.CollectionListPage.3958681866] - button -#. defaultMessage is: -#. Add collection -#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json -msgctxt "button" -msgid "Add collection" -msgstr "" - #. [src.customers.components.CustomerCreatePage.1934221653] - page header #. defaultMessage is: #. Add customer @@ -322,14 +234,6 @@ msgctxt "button" msgid "Add key" msgstr "" -#. [menuItemsAddItem] - add new menu item -#. defaultMessage is: -#. Add new item -#: build/locale/src/navigation/components/MenuItems/MenuItems.json -msgctxt "add new menu item" -msgid "Add new item" -msgstr "" - #. [menuItemsPlaceholder] #. defaultMessage is: #. Add new menu item to begin creating menu @@ -364,14 +268,6 @@ msgctxt "button" msgid "Add or Edit Link" msgstr "" -#. [src.pages.components.PageListPage.1767905232] - button -#. defaultMessage is: -#. Add page -#: build/locale/src/pages/components/PageListPage/PageListPage.json -msgctxt "button" -msgid "Add page" -msgstr "" - #. [src.categories.components.CategoryProducts.3554578821] - button #. defaultMessage is: #. Add product @@ -380,14 +276,6 @@ msgctxt "button" msgid "Add product" msgstr "Termék hozzáadás" -#. [src.productTypes.components.ProductTypeListPage.889729490] - button -#. defaultMessage is: -#. Add product type -#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json -msgctxt "button" -msgid "Add product type" -msgstr "" - #. [src.orders.components.OrderDraftDetails.2528459381] - button #. defaultMessage is: #. Add products @@ -396,14 +284,6 @@ msgctxt "button" msgid "Add products" msgstr "" -#. [src.shipping.components.ShippingZoneRates.352297149] - button -#. defaultMessage is: -#. Add rate -#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json -msgctxt "button" -msgid "Add rate" -msgstr "" - #. [src.categories.components.CategoryCreatePage.2563994280] #. defaultMessage is: #. Add search engine title and description to make this category easier to @@ -465,30 +345,6 @@ msgctxt "button" msgid "Add shipping carrier" msgstr "" -#. [src.shipping.components.ShippingZonesList.2474410767] - button -#. defaultMessage is: -#. Add shipping zone -#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json -msgctxt "button" -msgid "Add shipping zone" -msgstr "" - -#. [src.staff.components.StaffListPage.802625341] - button -#. defaultMessage is: -#. Add staff member -#: build/locale/src/staff/components/StaffListPage/StaffListPage.json -msgctxt "button" -msgid "Add staff member" -msgstr "" - -#. [src.categories.components.CategoryList.435697837] - button -#. defaultMessage is: -#. Add subcategory -#: build/locale/src/categories/components/CategoryList/CategoryList.json -msgctxt "button" -msgid "Add subcategory" -msgstr "" - #. [src.attributes.components.AttributeProperties.673770329] - add attribute #. as column in product list table #. defaultMessage is: @@ -516,35 +372,14 @@ msgctxt "dialog header" msgid "Add tracking code" msgstr "" -#. [src.attributes.components.AttributeValues.254756045] - add attribute value -#. button -#. defaultMessage is: -#. Add value -#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json -msgctxt "add attribute value button" -msgid "Add value" -msgstr "" - #. [src.products.components.ProductVariantNavigation.2845381934] - button #. defaultMessage is: #. Add variant -#. [src.products.components.ProductVariants.2845381934] - button -#. defaultMessage is: -#. Add variant #: build/locale/src/products/components/ProductVariantNavigation/ProductVariantNavigation.json -#: build/locale/src/products/components/ProductVariants/ProductVariants.json msgctxt "button" msgid "Add variant" msgstr "" -#. [src.discounts.components.VoucherListPage.1536809153] - button -#. defaultMessage is: -#. Add voucher -#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json -msgctxt "button" -msgid "Add voucher" -msgstr "" - #. [src.attributes.views.AttributeDetails.634268988] - added new attribute #. value #. defaultMessage is: @@ -602,14 +437,6 @@ msgctxt "description" msgid "Address line 2" msgstr "" -#. [src.customers.components.CustomerAddress.1320082647] - addres card header -#. defaultMessage is: -#. Address {addressNumber} -#: build/locale/src/customers/components/CustomerAddress/CustomerAddress.json -msgctxt "addres card header" -msgid "Address {addressNumber}" -msgstr "" - #. [src.attributes.components.AttributeValues.1565474525] - attribute values #. list: slug column header #. defaultMessage is: @@ -659,6 +486,46 @@ msgctxt "tax rate" msgid "Agricultural supplies" msgstr "" +#. [src.attributes.components.AttributeListPage.2417065806] - tab name +#. defaultMessage is: +#. All Attributes +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "tab name" +msgid "All Attributes" +msgstr "" + +#. [src.categories.components.CategoryListPage.4294878092] - tab name +#. defaultMessage is: +#. All Categories +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "tab name" +msgid "All Categories" +msgstr "" + +#. [src.collections.components.CollectionListPage.1631917001] - tab name +#. defaultMessage is: +#. All Collections +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "tab name" +msgid "All Collections" +msgstr "" + +#. [src.customers.components.CustomerListPage.477293306] - tab name +#. defaultMessage is: +#. All Customers +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "tab name" +msgid "All Customers" +msgstr "" + +#. [src.orders.components.OrderDraftListPage.551325728] - tab name +#. defaultMessage is: +#. All Drafts +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "tab name" +msgid "All Drafts" +msgstr "" + #. [src.orders.components.OrderListPage.875489544] - tab name #. defaultMessage is: #. All Orders @@ -676,22 +543,54 @@ msgctxt "section header" msgid "All Photos" msgstr "" -#. [src.products.components.ProductListPage.821159718] - tab name +#. [src.productTypes.components.ProductTypeListPage.1776073799] - tab name +#. defaultMessage is: +#. All Product Types +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "tab name" +msgid "All Product Types" +msgstr "" + +#. [src.products.components.ProductListFilter.821159718] - tab name #. defaultMessage is: #. All Products -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "tab name" msgid "All Products" msgstr "" -#. [src.categories.components.CategoryList.3229914152] - section header +#. [src.discounts.components.SaleListPage.3907768880] - tab name +#. defaultMessage is: +#. All Sales +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "tab name" +msgid "All Sales" +msgstr "" + +#. [src.staff.components.StaffListPage.2852350932] - tab name +#. defaultMessage is: +#. All Staff Members +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "tab name" +msgid "All Staff Members" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.3229914152] - section header #. defaultMessage is: #. All Subcategories -#: build/locale/src/categories/components/CategoryList/CategoryList.json +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json msgctxt "section header" msgid "All Subcategories" msgstr "" +#. [src.discounts.components.VoucherListPage.1112241061] - tab name +#. defaultMessage is: +#. All Vouchers +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "tab name" +msgid "All Vouchers" +msgstr "" + #. [src.taxes.components.TaxConfiguration.142803418] #. defaultMessage is: #. All products prices are entered with tax included @@ -799,6 +698,14 @@ msgctxt "description" msgid "Are you sure you want to delete collection's image?" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.36681973] +#. defaultMessage is: +#. Are you sure you want to delete draft #{number}? +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "description" +msgid "Are you sure you want to delete draft #{number}?" +msgstr "" + #. [menuDetailsDeleteMenuContent] #. defaultMessage is: #. Are you sure you want to delete menu {menuName}? @@ -815,6 +722,14 @@ msgctxt "description" msgid "Are you sure you want to delete this address from users address book?" msgstr "" +#. [src.products.views.2880386427] +#. defaultMessage is: +#. Are you sure you want to delete this image? +#: build/locale/src/products/views/ProductImage.json +msgctxt "description" +msgid "Are you sure you want to delete this image?" +msgstr "" + #. [src.attributes.components.AttributeDeleteDialog.3738429348] - dialog #. content #. defaultMessage is: @@ -865,12 +780,7 @@ msgstr "" #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this attribute} #. other{{displayQuantity} categories}}? -#. [src.categories.views.844574071] -#. defaultMessage is: -#. Are you sure you want to delete {counter,plural,one{this attribute} -#. other{{displayQuantity} categories}}? #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this attribute} " @@ -888,22 +798,33 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.2497542455] +#. [src.categories.views.CategoryList.2144707585] +#. defaultMessage is: +#. Are you sure you want to delete {counter,plural,one{this category} +#. other{{displayQuantity} categories}}? +#: build/locale/src/categories/views/CategoryList/CategoryList.json +msgctxt "description" +msgid "" +"Are you sure you want to delete {counter,plural,one{this category} " +"other{{displayQuantity} categories}}?" +msgstr "" + +#. [src.collections.views.CollectionList.2497542455] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this collection} " "other{{displayQuantity} collections}}?" msgstr "" -#. [src.customers.views.409347866] +#. [src.customers.views.CustomerList.409347866] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this customer} #. other{{displayQuantity} customers}}? -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this customer} " @@ -921,11 +842,11 @@ msgid "" "other{{displayQuantity} menus}}?" msgstr "" -#. [src.orders.views.1389231130] - dialog content +#. [src.orders.views.OrderDraftList.1389231130] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this order draft} #. other{{displayQuantity} orderDrafts}}? -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this order draft} " @@ -943,11 +864,11 @@ msgid "" "other{{displayQuantity} pages}}?" msgstr "" -#. [src.productTypes.views.2294091098] - dialog content +#. [src.productTypes.views.ProductTypeList.2294091098] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this product type} #. other{{displayQuantity} product types}}? -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this product type} " @@ -965,11 +886,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.discounts.views.2516361175] - dialog content +#. [src.discounts.views.SaleList.2516361175] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this sale} #. other{{displayQuantity} sales}}? -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this sale} " @@ -998,17 +919,33 @@ msgid "" "other{{displayQuantity} variants}}?" msgstr "" -#. [src.discounts.views.1791926983] - dialog content +#. [src.discounts.views.VoucherList.1791926983] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this voucher} #. other{{displayQuantity} vouchers}}? -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this voucher} " "other{{displayQuantity} vouchers}}?" msgstr "" +#. [src.shipping.views.ShippingZoneDetails.131963671] - unassign country +#. defaultMessage is: +#. Are you sure you want to delete {countryName} from this shipping zone? +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country" +msgid "Are you sure you want to delete {countryName} from this shipping zone?" +msgstr "" + +#. [src.staff.views.8878988] +#. defaultMessage is: +#. Are you sure you want to delete {email} from staff members? +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "description" +msgid "Are you sure you want to delete {email} from staff members?" +msgstr "" + #. [src.customers.views.1927691511] - delete customer, dialog content #. defaultMessage is: #. Are you sure you want to delete {email}? @@ -1123,11 +1060,11 @@ msgctxt "description" msgid "Are you sure you want to mark this order as paid?" msgstr "" -#. [src.collections.views.1348793822] +#. [src.collections.views.CollectionList.1348793822] #. defaultMessage is: #. Are you sure you want to publish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to publish {counter,plural,one{this collection} " @@ -1156,30 +1093,6 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.orders.components.OrderDraftCancelDialog.3199827590] -#. defaultMessage is: -#. Are you sure you want to remove draft #{number}? -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "description" -msgid "Are you sure you want to remove draft #{number}?" -msgstr "" - -#. [src.products.views.672103788] -#. defaultMessage is: -#. Are you sure you want to remove this image? -#: build/locale/src/products/views/ProductImage.json -msgctxt "description" -msgid "Are you sure you want to remove this image?" -msgstr "" - -#. [src.shipping.views.ShippingZoneDetails.1790261672] - unassign country -#. defaultMessage is: -#. Are you sure you want to remove {countryName} from this shipping zone? -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country" -msgid "Are you sure you want to remove {countryName} from this shipping zone?" -msgstr "" - #. [src.staff.views.3945766678] #. defaultMessage is: #. Are you sure you want to remove {email} avatar? @@ -1188,14 +1101,6 @@ msgctxt "description" msgid "Are you sure you want to remove {email} avatar?" msgstr "" -#. [src.staff.views.2728048444] -#. defaultMessage is: -#. Are you sure you want to remove {email} from staff members? -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "description" -msgid "Are you sure you want to remove {email} from staff members?" -msgstr "" - #. [src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450] #. defaultMessage is: #. Are you sure you want to unassign {attributeName} from {productTypeName}? @@ -1276,11 +1181,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.3944356444] +#. [src.collections.views.CollectionList.3944356444] #. defaultMessage is: #. Are you sure you want to unpublish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to unpublish {counter,plural,one{this collection} " @@ -1441,6 +1346,15 @@ msgctxt "button" msgid "Assign products" msgstr "" +#. [src.attributes.components.AttributeValues.351422234] - assign attribute +#. value button +#. defaultMessage is: +#. Assign value +#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json +msgctxt "assign attribute value button" +msgid "Assign value" +msgstr "" + #. [src.attributes.components.AttributeDetails.3605174225] - attribute's slug #. short code label #. defaultMessage is: @@ -1519,6 +1433,14 @@ msgctxt "product attributes, section header" msgid "Attributes" msgstr "" +#. [src.configuration.2326418019] +#. defaultMessage is: +#. Attributes and Product Typess +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Attributes and Product Typess" +msgstr "" + #. [src.attributes.views.AttributeList.3218248395] - deleted multiple #. attributes #. defaultMessage is: @@ -2302,6 +2224,22 @@ msgctxt "description" msgid "Country area" msgstr "" +#. [menuCreateDialogHeader] - dialog header +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json +msgctxt "dialog header" +msgid "Create Menu" +msgstr "" + +#. [menuListPageAddMenu] - button +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json +msgctxt "button" +msgid "Create Menu" +msgstr "" + #. [src.attributes.components.AttributePage.2855501559] - page title #. defaultMessage is: #. Create New Attribute @@ -2326,6 +2264,30 @@ msgctxt "header" msgid "Create New Shipping Zone" msgstr "" +#. [src.pages.components.PageDetailsPage.1068617485] - page header +#. defaultMessage is: +#. Create Page +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page header" +msgid "Create Page" +msgstr "" + +#. [src.orders.components.OrderProductAddDialog.1542417144] - dialog header +#. defaultMessage is: +#. Create Product +#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json +msgctxt "dialog header" +msgid "Create Product" +msgstr "" + +#. [src.products.components.ProductListPage.1542417144] - button +#. defaultMessage is: +#. Create Product +#: build/locale/src/products/components/ProductListPage/ProductListPage.json +msgctxt "button" +msgid "Create Product" +msgstr "" + #. [src.products.views.1542417144] - window title #. defaultMessage is: #. Create Product @@ -2358,11 +2320,19 @@ msgctxt "page header" msgid "Create Sale" msgstr "" -#. [src.products.views.2362587265] - window title +#. [src.discounts.components.SaleListPage.3866518732] - button +#. defaultMessage is: +#. Create Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "button" +msgid "Create Sale" +msgstr "" + +#. [src.products.views.2362587265] - header #. defaultMessage is: #. Create Variant #: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "window title" +msgctxt "header" msgid "Create Variant" msgstr "" @@ -2374,6 +2344,22 @@ msgctxt "page header" msgid "Create Voucher" msgstr "" +#. [src.attributes.components.AttributeListPage.3824684885] - button +#. defaultMessage is: +#. Create attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "button" +msgid "Create attribute" +msgstr "" + +#. [src.categories.components.CategoryListPage.1140231710] - button +#. defaultMessage is: +#. Create category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "button" +msgid "Create category" +msgstr "" + #. [src.categories.views.1140231710] - window title #. defaultMessage is: #. Create category @@ -2382,6 +2368,14 @@ msgctxt "window title" msgid "Create category" msgstr "" +#. [src.collections.components.CollectionListPage.686910896] - button +#. defaultMessage is: +#. Create collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "button" +msgid "Create collection" +msgstr "" + #. [src.collections.views.686910896] - window title #. defaultMessage is: #. Create collection @@ -2398,6 +2392,14 @@ msgctxt "window title" msgid "Create customer" msgstr "" +#. [menuItemsAddItem] - add new menu item +#. defaultMessage is: +#. Create new item +#: build/locale/src/navigation/components/MenuItems/MenuItems.json +msgctxt "add new menu item" +msgid "Create new item" +msgstr "" + #. [src.orders.components.OrderDraftListPage.2826235371] - button #. defaultMessage is: #. Create order @@ -2410,6 +2412,14 @@ msgctxt "button" msgid "Create order" msgstr "Rendelés felvitel" +#. [src.pages.components.PageListPage.3785394515] - button +#. defaultMessage is: +#. Create page +#: build/locale/src/pages/components/PageListPage/PageListPage.json +msgctxt "button" +msgid "Create page" +msgstr "" + #. [src.pages.views.3785394515] - header #. defaultMessage is: #. Create page @@ -2421,11 +2431,55 @@ msgstr "" #. [src.shipping.components.ShippingZoneRateDialog.16061680] - button #. defaultMessage is: #. Create rate +#. [src.shipping.components.ShippingZoneRates.16061680] - button +#. defaultMessage is: +#. Create rate #: build/locale/src/shipping/components/ShippingZoneRateDialog/ShippingZoneRateDialog.json +#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json msgctxt "button" msgid "Create rate" msgstr "" +#. [src.shipping.components.ShippingZonesList.2673544109] - button +#. defaultMessage is: +#. Create shipping zone +#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json +msgctxt "button" +msgid "Create shipping zone" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.770296100] - button +#. defaultMessage is: +#. Create subcategory +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json +msgctxt "button" +msgid "Create subcategory" +msgstr "" + +#. [src.products.components.ProductVariants.3989383405] - button +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/components/ProductVariants/ProductVariants.json +msgctxt "button" +msgid "Create variant" +msgstr "" + +#. [src.products.views.3989383405] - window title +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/views/ProductVariantCreate.json +msgctxt "window title" +msgid "Create variant" +msgstr "" + +#. [src.discounts.components.VoucherListPage.614836274] - button +#. defaultMessage is: +#. Create voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "button" +msgid "Create voucher" +msgstr "" + #. [src.collections.views.1597339737] #. defaultMessage is: #. Created collection @@ -2472,7 +2526,11 @@ msgstr "" #. [src.components.FilterBar.2340527467] #. defaultMessage is: #. Custom Filter +#. [src.components.SearchBar.2340527467] +#. defaultMessage is: +#. Custom Filter #: build/locale/src/components/FilterBar/FilterBar.json +#: build/locale/src/components/SearchBar/SearchBar.json msgctxt "description" msgid "Custom Filter" msgstr "" @@ -2728,10 +2786,18 @@ msgctxt "dialog title" msgid "Delete Collection" msgstr "" -#. [src.orders.views.1161115149] - dialog header +#. [src.products.views.1731766393] - dialog header +#. defaultMessage is: +#. Delete Image +#: build/locale/src/products/views/ProductImage.json +msgctxt "dialog header" +msgid "Delete Image" +msgstr "" + +#. [src.orders.views.OrderDraftList.1161115149] - dialog header #. defaultMessage is: #. Delete Order Drafts -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog header" msgid "Delete Order Drafts" msgstr "" @@ -2769,10 +2835,10 @@ msgctxt "dialog header" msgid "Delete Product Type" msgstr "" -#. [src.productTypes.views.4080551769] - dialog header +#. [src.productTypes.views.ProductTypeList.4080551769] - dialog header #. defaultMessage is: #. Delete Product Types -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog header" msgid "Delete Product Types" msgstr "" @@ -2801,10 +2867,10 @@ msgctxt "dialog header" msgid "Delete Sale" msgstr "" -#. [src.discounts.views.2809303671] - dialog header +#. [src.discounts.views.SaleList.2809303671] - dialog header #. defaultMessage is: #. Delete Sales -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog header" msgid "Delete Sales" msgstr "" @@ -2818,9 +2884,13 @@ msgctxt "custom search delete, dialog header" msgid "Delete Search" msgstr "" +#. [src.components.Filter.2173195312] - button +#. defaultMessage is: +#. Delete Search #. [src.components.TableFilter.2173195312] - button #. defaultMessage is: #. Delete Search +#: build/locale/src/components/Filter/FilterSearch.json #: build/locale/src/components/TableFilter/FilterChips.json msgctxt "button" msgid "Delete Search" @@ -2887,10 +2957,10 @@ msgctxt "dialog header" msgid "Delete Voucher" msgstr "" -#. [src.discounts.views.367317371] - dialog header +#. [src.discounts.views.VoucherList.367317371] - dialog header #. defaultMessage is: #. Delete Vouchers -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog header" msgid "Delete Vouchers" msgstr "" @@ -2924,11 +2994,11 @@ msgstr "" #. [src.categories.views.712767046] - dialog title #. defaultMessage is: #. Delete categories -#. [src.categories.views.712767046] - dialog title +#. [src.categories.views.CategoryList.712767046] - dialog title #. defaultMessage is: #. Delete categories #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "dialog title" msgid "Delete categories" msgstr "" @@ -2945,10 +3015,10 @@ msgctxt "dialog title" msgid "Delete category" msgstr "" -#. [src.collections.views.3817188998] - dialog title +#. [src.collections.views.CollectionList.3817188998] - dialog title #. defaultMessage is: #. Delete collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Delete collections" msgstr "" @@ -2961,14 +3031,31 @@ msgctxt "dialog header" msgid "Delete customer" msgstr "" -#. [src.customers.views.1946482599] - dialog header +#. [src.customers.views.CustomerList.1946482599] - dialog header #. defaultMessage is: #. Delete customers -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "dialog header" msgid "Delete customers" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.632633254] - dialog header +#. defaultMessage is: +#. Delete draft order +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "dialog header" +msgid "Delete draft order" +msgstr "" + +#. [src.shipping.views.ShippingZoneDetails.1947090060] - unassign country, +#. dialog header +#. defaultMessage is: +#. Delete from shipping zone +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country, dialog header" +msgid "Delete from shipping zone" +msgstr "" + #. [src.collections.views.942133001] - dialog title #. defaultMessage is: #. Delete image @@ -3029,6 +3116,14 @@ msgctxt "description" msgid "Deleted collection" msgstr "Kollekció törölve" +#. [src.orders.views.OrderDraftList.1648805446] +#. defaultMessage is: +#. Deleted draft orders +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json +msgctxt "description" +msgid "Deleted draft orders" +msgstr "" + #. [menuListDeletedMenu] #. defaultMessage is: #. Deleted menu @@ -3628,14 +3723,6 @@ msgctxt "order history message" msgid "Fulfilled {quantity} items" msgstr "" -#. [src.orders.components.OrderListFilter.2943502192] - order -#. defaultMessage is: -#. Fulfillment Status -#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json -msgctxt "order" -msgid "Fulfillment Status" -msgstr "" - #. [src.orders.components.OrderHistory.3081292385] - order history message #. defaultMessage is: #. Fulfillment confirmation was sent to customer @@ -3792,12 +3879,12 @@ msgctxt "description" msgid "If empty, the preview shows what will be autogenerated." msgstr "" -#. [src.attributes.components.AttributeProperties.2519239682] +#. [src.attributes.components.AttributeProperties.4048785456] #. defaultMessage is: -#. If enable this attribute can be used as a column in product table. +#. If enabled this attribute can be used as a column in product table. #: build/locale/src/attributes/components/AttributeProperties/AttributeProperties.json msgctxt "description" -msgid "If enable this attribute can be used as a column in product table." +msgid "If enabled this attribute can be used as a column in product table." msgstr "" #. [src.attributes.components.AttributeProperties.787251583] @@ -3903,6 +3990,22 @@ msgctxt "product variant stock" msgid "Inventory" msgstr "" +#. [src.staff.components.StaffAddMemberDialog.1481503299] - dialog header +#. defaultMessage is: +#. Invite Staff Member +#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json +msgctxt "dialog header" +msgid "Invite Staff Member" +msgstr "" + +#. [src.staff.components.StaffListPage.797461521] - button +#. defaultMessage is: +#. Invite staff member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "button" +msgid "Invite staff member" +msgstr "" + #. [src.productTypes.components.ProductTypeShipping.2143413921] - switch #. button #. defaultMessage is: @@ -4255,6 +4358,14 @@ msgctxt "voucher requirement" msgid "Minimum quantity of items" msgstr "" +#. [src.configuration.1233229030] +#. defaultMessage is: +#. Miscellaneous +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Miscellaneous" +msgstr "" + #. [src.attributes.components.AttributeDetails.3334509011] - product attribute #. type #. defaultMessage is: @@ -5087,6 +5198,14 @@ msgctxt "description" msgid "Order History" msgstr "" +#. [src.orders.components.OrderListFilter.2222765704] +#. defaultMessage is: +#. Order Status +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +msgctxt "description" +msgid "Order Status" +msgstr "" + #. [src.orders.components.OrderHistory.1230178536] - order history message #. defaultMessage is: #. Order address was updated @@ -5103,13 +5222,13 @@ msgctxt "order history message" msgid "Order confirmation was sent to customer" msgstr "" -#. [src.orders.views.1872939752] +#. [src.orders.views.OrderDraftList.1872939752] #. defaultMessage is: #. Order draft succesfully created #. [src.orders.views.OrderList.1872939752] #. defaultMessage is: #. Order draft succesfully created -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json #: build/locale/src/orders/views/OrderList/OrderList.json msgctxt "description" msgid "Order draft succesfully created" @@ -5774,6 +5893,14 @@ msgctxt "description" msgid "Product Name" msgstr "" +#. [src.configuration.3655543906] +#. defaultMessage is: +#. Product Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Product Settings" +msgstr "" + #. [src.discounts.components.DiscountProducts.4257289053] #. defaultMessage is: #. Product Type @@ -5932,12 +6059,12 @@ msgctxt "order history message" msgid "Products were added to draft order" msgstr "" -#. [src.orders.components.OrderHistory.2574162126] - order history message +#. [src.orders.components.OrderHistory.4067959693] - order history message #. defaultMessage is: -#. Products were removed from draft order +#. Products were deleted from draft order #: build/locale/src/orders/components/OrderHistory/OrderHistory.json msgctxt "order history message" -msgid "Products were removed from draft order" +msgid "Products were deleted from draft order" msgstr "" #. [src.properties] @@ -5964,10 +6091,10 @@ msgctxt "description" msgid "Provided email address does not exist in our database." msgstr "" -#. [src.collections.views.1547167026] - publish collections +#. [src.collections.views.CollectionList.1547167026] - publish collections #. defaultMessage is: #. Publish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "publish collections" msgid "Publish" msgstr "" @@ -6004,10 +6131,10 @@ msgctxt "dialog header" msgid "Publish Products" msgstr "" -#. [src.collections.views.2823425739] - dialog title +#. [src.collections.views.CollectionList.2823425739] - dialog title #. defaultMessage is: #. Publish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Publish collections" msgstr "" @@ -6181,6 +6308,18 @@ msgctxt "shipping method price" msgid "Rate Price" msgstr "" +#. [src.orders.components.OrderListFilter.2415661583] - order status +#. defaultMessage is: +#. Ready to Capture +#. [src.orders.views.OrderList.readyToCapture] - order status +#. defaultMessage is: +#. Ready to Capture +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +#: build/locale/src/orders/views/OrderList/filters.json +msgctxt "order status" +msgid "Ready to Capture" +msgstr "" + #. [src.customers.components.CustomerOrders.3878642352] - section header #. defaultMessage is: #. Recent orders @@ -6229,22 +6368,14 @@ msgctxt "switch button" msgid "Release all stock allocated to this order" msgstr "" -#. [src.auth.components.LoginPage.3182284913] - login -#. defaultMessage is: -#. Remember me -#: build/locale/src/auth/components/LoginPage/LoginPage.json -msgctxt "login" -msgid "Remember me" -msgstr "" - #. [src.categories.views.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. -#. [src.categories.views.3488150607] +#. [src.categories.views.CategoryList.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "description" msgid "Remember this will also delete all products assigned to this category." msgstr "" @@ -6257,39 +6388,6 @@ msgctxt "button" msgid "Remove" msgstr "" -#. [src.products.views.490753666] - dialog header -#. defaultMessage is: -#. Remove Image -#: build/locale/src/products/views/ProductImage.json -msgctxt "dialog header" -msgid "Remove Image" -msgstr "" - -#. [src.orders.components.OrderDraftCancelDialog.500287069] - dialog header -#. defaultMessage is: -#. Remove draft order -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "dialog header" -msgid "Remove draft order" -msgstr "" - -#. [src.shipping.views.ShippingZoneDetails.254167659] - unassign country, -#. dialog header -#. defaultMessage is: -#. Remove from shipping zone -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country, dialog header" -msgid "Remove from shipping zone" -msgstr "" - -#. [src.orders.views.3880993240] -#. defaultMessage is: -#. Removed draft orders -#: build/locale/src/orders/views/OrderDraftList.json -msgctxt "description" -msgid "Removed draft orders" -msgstr "" - #. [src.pages.views.1457312643] #. defaultMessage is: #. Removed page @@ -6455,6 +6553,18 @@ msgctxt "button" msgid "Save" msgstr "" +#. [src.components.Filter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#. [src.components.TableFilter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#: build/locale/src/components/Filter/FilterSearch.json +#: build/locale/src/components/TableFilter/FilterChips.json +msgctxt "button" +msgid "Save Custom Search" +msgstr "" + #. [src.components.SaveFilterTabDialog.1514415736] - save filter tab, header #. defaultMessage is: #. Save Custom Search @@ -6463,14 +6573,6 @@ msgctxt "save filter tab, header" msgid "Save Custom Search" msgstr "" -#. [src.components.TableFilter.1514415736] - button -#. defaultMessage is: -#. Save Custom Search -#: build/locale/src/components/TableFilter/FilterChips.json -msgctxt "button" -msgid "Save Custom Search" -msgstr "" - #. [src.products.components.ProductVariantCreatePage.2853608829] - button #. defaultMessage is: #. Save variant @@ -6487,6 +6589,14 @@ msgctxt "description" msgid "Saved changes" msgstr "" +#. [src.attributes.components.AttributeListPage.3916653510] +#. defaultMessage is: +#. Search Attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "description" +msgid "Search Attribute" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.902296540] #. defaultMessage is: #. Search Attributes @@ -6503,10 +6613,30 @@ msgctxt "description" msgid "Search Categories" msgstr "" +#. [src.categories.components.CategoryListPage.3841025483] +#. defaultMessage is: +#. Search Category +#. [src.translations.components.TranslationsEntitiesListPage.3841025483] +#. defaultMessage is: +#. Search Category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Category" +msgstr "" + +#. [src.collections.components.CollectionListPage.4057224233] +#. defaultMessage is: +#. Search Collection #. [src.components.AssignCollectionDialog.4057224233] #. defaultMessage is: #. Search Collection +#. [src.translations.components.TranslationsEntitiesListPage.4057224233] +#. defaultMessage is: +#. Search Collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json #: build/locale/src/components/AssignCollectionDialog/AssignCollectionDialog.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json msgctxt "description" msgid "Search Collection" msgstr "" @@ -6519,6 +6649,14 @@ msgctxt "description" msgid "Search Countries" msgstr "" +#. [src.customers.components.CustomerListPage.1643417013] +#. defaultMessage is: +#. Search Customer +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "description" +msgid "Search Customer" +msgstr "" + #. [src.orders.components.OrderCustomer.2433460203] #. defaultMessage is: #. Search Customers @@ -6527,6 +6665,14 @@ msgctxt "description" msgid "Search Customers" msgstr "" +#. [src.orders.components.OrderDraftListPage.77765281] +#. defaultMessage is: +#. Search Draft +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "description" +msgid "Search Draft" +msgstr "" + #. [src.translations.components.TranslationsCategoriesPage.1406947243] #. defaultMessage is: #. Search Engine Description @@ -6607,6 +6753,34 @@ msgctxt "description" msgid "Search Orders..." msgstr "" +#. [src.translations.components.TranslationsEntitiesListPage.2559018090] +#. defaultMessage is: +#. Search Page +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Page" +msgstr "" + +#. [src.translations.components.TranslationsEntitiesListPage.2105464697] +#. defaultMessage is: +#. Search Product +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product" +msgstr "" + +#. [src.productTypes.components.ProductTypeListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#. [src.translations.components.TranslationsEntitiesListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product Type" +msgstr "" + #. [src.components.AssignProductDialog.2850255786] #. defaultMessage is: #. Search Products @@ -6619,14 +6793,46 @@ msgctxt "description" msgid "Search Products" msgstr "" -#. [src.products.components.ProductListPage.3550330425] +#. [src.products.components.ProductListFilter.3550330425] #. defaultMessage is: #. Search Products... -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Search Products..." msgstr "" +#. [src.discounts.components.SaleListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#. [src.translations.components.TranslationsEntitiesListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Sale" +msgstr "" + +#. [src.staff.components.StaffListPage.61043583] +#. defaultMessage is: +#. Search Staff Member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "description" +msgid "Search Staff Member" +msgstr "" + +#. [src.discounts.components.VoucherListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#. [src.translations.components.TranslationsEntitiesListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Voucher" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.524117994] #. defaultMessage is: #. Search by attribute name @@ -6733,10 +6939,10 @@ msgctxt "description" msgid "Select all orders where:" msgstr "" -#. [src.products.components.ProductListPage.1421689426] +#. [src.products.components.ProductListFilter.1421689426] #. defaultMessage is: #. Select all products where: -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Select all products where:" msgstr "" @@ -6822,6 +7028,14 @@ msgctxt "description" msgid "Set plugin as Active" msgstr "" +#. [src.components.VisibilityCard.292404896] +#. defaultMessage is: +#. Set publication date +#: build/locale/src/components/VisibilityCard/VisibilityCard.json +msgctxt "description" +msgid "Set publication date" +msgstr "" + #. [src.discounts.shipment] - voucher discount #. defaultMessage is: #. Shipment @@ -7087,6 +7301,14 @@ msgctxt "staff section name" msgid "Staff Members" msgstr "" +#. [src.configuration.3140151600] +#. defaultMessage is: +#. Staff Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Staff Settings" +msgstr "" + #. [src.standard] - tax rate #. defaultMessage is: #. Standard @@ -8071,10 +8293,10 @@ msgctxt "payment status" msgid "Unpaid" msgstr "" -#. [src.collections.views.2237014112] - unpublish collections +#. [src.collections.views.CollectionList.2237014112] - unpublish collections #. defaultMessage is: #. Unpublish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "unpublish collections" msgid "Unpublish" msgstr "" @@ -8111,10 +8333,10 @@ msgctxt "dialog header" msgid "Unpublish Products" msgstr "" -#. [src.collections.views.2637364047] - dialog title +#. [src.collections.views.CollectionList.2637364047] - dialog title #. defaultMessage is: #. Unpublish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Unpublish collections" msgstr "" @@ -8614,6 +8836,22 @@ msgctxt "description" msgid "ZIP / Postal code" msgstr "" +#. [src.productTypes.components.ProductTypeListPage.3479705616] - button +#. defaultMessage is: +#. create product type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "button" +msgid "create product type" +msgstr "" + +#. [src.staff.views.1308770978] - dialog header +#. defaultMessage is: +#. delete Staff User +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "dialog header" +msgid "delete Staff User" +msgstr "" + #. [orderPaymentVATDoesNotApply] - vat not included in order price #. defaultMessage is: #. does not apply @@ -8687,19 +8925,35 @@ msgctxt "product status is set as" msgid "is set as" msgstr "" -#. [src.staff.views.2240444792] - dialog header -#. defaultMessage is: -#. remove Staff User -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "dialog header" -msgid "remove Staff User" -msgstr "" - -#. [src.components.VisibilityCard.1815688500] +#. [src.collections.components.CollectionCreatePage.1815688500] - collection #. defaultMessage is: #. since {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.1815688500] - collection +#. defaultMessage is: +#. since {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "since {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.1815688500] - page +#. defaultMessage is: +#. since {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "since {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#. [src.products.components.ProductUpdatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "since {date}" msgstr "" @@ -8727,11 +8981,35 @@ msgctxt "weight" msgid "to {value} {unit}" msgstr "" -#. [src.components.VisibilityCard.2001551496] +#. [src.collections.components.CollectionCreatePage.2001551496] - collection #. defaultMessage is: #. will be visible from {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.2001551496] - collection +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "will be visible from {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.2001551496] - page +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "will be visible from {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#. [src.products.components.ProductUpdatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "will be visible from {date}" msgstr "" diff --git a/locale/hy.json b/locale/hy.json index 546bea0ee..238cf6353 100644 --- a/locale/hy.json +++ b/locale/hy.json @@ -1 +1 @@ -{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.350498821":"","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.2519239682":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"Անուն","src.categories.components.CategoryProducts.636461959":"Անուն","src.collections.components.CollectionProducts.636461959":"Անուն","src.products.components.ProductDetailsForm.636461959":"Անուն","src.collections.components.CollectionDetails.636461959":"Անուն","src.components.ProductList.636461959":"Անուն","src.discounts.components.SaleInfo.636461959":"Անուն","src.discounts.components.SaleList.636461959":"Անուն","src.discounts.components.SaleSummary.636461959":"Անուն","menuItemDialogNameLabel":"Անուն","src.products.components.ProductVariants.636461959":"Անուն","src.shipping.components.ShippingZoneRates.636461959":"Անուն","src.shipping.components.ShippingZonesList.636461959":"Անուն","src.staff.components.StaffList.636461959":"Անուն","src.translations.components.TranslationsEntitiesList.636461959":"Անուն","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.254756045":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.3182284913":"","src.auth.components.LoginPage.109182747":"","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"","src.categories.views.2004894945":"","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.3229914152":"","src.categories.components.CategoryList.435697837":"","src.categories.components.CategoryList.2159874182":"","src.categories.components.CategoryUpdatePage.2159874182":"","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.228151782":"","src.categories.components.CategoryProducts.2968663655":"Ապրանքներ","src.categories.components.CategoryUpdatePage.2968663655":"Ապրանքներ","src.discounts.components.DiscountCategories.2968663655":"Ապրանքներ","src.discounts.components.DiscountCollections.2968663655":"Ապրանքներ","src.products":"Ապրանքներ","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryProducts.3554578821":"","src.categories.components.CategoryProductsCard.3554578821":"","src.categories.components.CategoryProducts.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProducts.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.categories.components.CategoryProductsCard.4164156574":"","src.categories.views.1754466114":"","src.categories.views.1140231710":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.712767046":"","src.categories.views.299584400":"","src.categories.views.844574071":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.collections.components.CollectionCreatePage.3958681866":"","src.collections.components.CollectionListPage.3958681866":"","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"","src.availability":"","src.collections.components.CollectionList.3640454975":"Հրապարակված","src.collections.components.CollectionProducts.3640454975":"Հրապարակված","src.discounts.components.DiscountProducts.3640454975":"Հրապարակված","src.components.ProductList.3640454975":"Հրապարակված","src.products.components.ProductListPage.3640454975":"Հրապարակված","src.pages.components.PageList.3640454975":"Հրապարակված","src.products.views.ProductList.published":"Հրապարակված","src.collections.components.CollectionList.2341910657":"Չհրապարակված","src.collections.components.CollectionProducts.2341910657":"Չհրապարակված","src.discounts.components.DiscountProducts.2341910657":"Չհրապարակված","src.components.ProductList.2341910657":"Չհրապարակված","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.686910896":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"","src.collections.views.2402899582":"","src.collections.views.2237014112":"Չհրապարակել","src.pages.views.2237014112":"Չհրապարակել","src.products.views.ProductList.2237014112":"Չհրապարակել","src.collections.views.1547167026":"Հրապարակել","src.pages.views.1547167026":"Հրապարակել","src.products.views.ProductList.1547167026":"Հրապարակել","src.collections.views.2823425739":"","src.collections.views.1348793822":"","src.collections.views.2637364047":"","src.collections.views.3944356444":"","src.collections.views.3817188998":"","src.collections.views.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.4057224233":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"","src.components.ErrorMessageCard.2845142593":"","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.FilterBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.ProductList.1134347598":"Արժեք","src.orders.components.OrderDraftDetailsProducts.1134347598":"Արժեք","src.orders.components.OrderFulfillment.1134347598":"Արժեք","src.products.components.ProductListPage.1134347598":"Արժեք","src.products.components.ProductPricing.1134347598":"Արժեք","src.orders.components.OrderUnfulfilledItems.1134347598":"Արժեք","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"Արժեք","src.shipping.components.ShippingZoneRates.1134347598":"Արժեք","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"","src.pages.components.PageList.1459686496":"","src.products.components.ProductListFilter.1459686496":"","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"","src.products.views.ProductList.hidden":"","src.components.VisibilityCard.1815688500":"","src.components.VisibilityCard.2001551496":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","configurationMenuStaff":"","configurationMenuShipping":"","configurationMenuTaxes":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","src.customers.components.CustomerAddress.1320082647":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"","src.customers.components.CustomerAddresses.3517722732":"","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"Հասցե","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"Նշումներ","src.orders.components.OrderCustomerNote.1520756907":"Նշումներ","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"Նշում","src.customers.components.CustomerDetails.577013340":"Նշում","src.customers.components.CustomerCreatePage.1934221653":"","src.customers.components.CustomerListPage.1934221653":"","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerOrders.3878642352":"","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"","src.orders.components.OrderDraftList.4205493358":"","src.orders.components.OrderList.4205493358":"","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"","src.orders.components.OrderListFilter.1756106276":"","src.products.components.ProductListFilter.1756106276":"","src.products.components.ProductVariants.1756106276":"","src.customers.components.CustomerOrders.878013594":"Ընդհանուր","src.orders.components.OrderDraftDetailsProducts.878013594":"Ընդհանուր","src.orders.components.OrderDraftDetailsSummary.878013594":"Ընդհանուր","src.orders.components.OrderDraftList.878013594":"Ընդհանուր","src.orders.components.OrderFulfillment.878013594":"Ընդհանուր","src.orders.components.OrderUnfulfilledItems.878013594":"Ընդհանուր","src.orders.components.OrderList.878013594":"Ընդհանուր","src.orders.components.OrderPayment.878013594":"Ընդհանուր","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.1946482599":"","src.customers.views.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"Արժեք","src.discounts.components.SaleSummary.1148029984":"Արժեք","src.discounts.components.VoucherList.1148029984":"Արժեք","src.discounts.components.VoucherSummary.1148029984":"Արժեք","src.discounts.components.VoucherValue.1148029984":"Արժեք","src.products.components.ProductAttributes.1148029984":"Արժեք","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.1742771332":"","src.discounts.components.SalePricing.1099355007":"","src.products.components.ProductPricing.1099355007":"","src.products.components.ProductVariantPrice.1099355007":"","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"Կոդ","src.discounts.components.VoucherSummary.78726751":"Կոդ","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.1536809153":"","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"","src.discounts.shipment":"","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.2809303671":"","src.discounts.views.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.367317371":"","src.discounts.views.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"","src.orders.views.OrderList.3528672691":"","src.confirm":"","src.delete":"","src.edit":"","src.manage":"","src.remove":"","src.save":"","src.show":"","src.undo":"","src.attributes":"","src.products.components.ProductAttributes.4153345096":"","src.categories":"Տեսականի","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"Հավաքածուներ","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"","src.customers":"","src.draftOrders":"","src.home":"","src.navigation":"","src.orders":"","src.pages":"","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"","src.taxes.components.CountryListPage.3955023266":"","src.translations":"","src.vouchers":"","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"","src.partiallyPaid":"","src.partiallyRefunded":"","src.refunded":"","src.unpaid":"","src.cancelled":"","src.draft":"","src.fulfilled":"","src.orders.views.OrderList.fulfilled":"","src.orders.components.OrderListFilter.1712863026":"","src.partiallyFulfilled":"","src.unfulfilled":"","src.orders.views.OrderList.unfulfilled":"","src.orders.components.OrderListFilter.1751787272":"","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","src.1395232177":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"Հղում","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"","src.orders.components.OrderDetailsPage.1854613983":"","src.orders.components.OrderDraftPage.1854613983":"","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"Հաճախորդ","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"Հաճախորդ","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"","src.orders.components.OrderCustomerEditDialog.1411666943":"","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.500287069":"","src.orders.components.OrderDraftCancelDialog.3199827590":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"","src.orders.components.OrderUnfulfilledItems.1895667608":"","src.orders.components.OrderDraftDetailsProducts.2796503714":"Քանակ","src.orders.components.OrderFulfillment.2796503714":"Քանակ","src.orders.components.OrderFulfillmentDialog.2796503714":"Քանակ","src.orders.components.OrderUnfulfilledItems.2796503714":"Քանակ","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"","src.orders.components.OrderPayment.781550514":"","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"","src.orders.components.OrderListPage.2826235371":"","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"","src.orders.components.OrderFulfillmentCancelDialog.732594284":"","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"Հետևելու համարը","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.2574162126":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2943502192":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"","src.productTypes.components.ProductTypeShipping.1325966144":"","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"","src.orders.components.OrderPayment.3768782744":"","src.orders.components.OrderPayment.2320183694":"","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"","src.orders.components.OrderPayment.2845258362":"","src.orders.components.OrderPayment.2444197639":"","src.orders.components.OrderPayment.3500506678":"","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"Գումար","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.2775402904":"","src.products.components.ProductListPage.2775402904":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.3880993240":"","src.orders.views.1161115149":"","src.orders.views.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.755314116":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"Վերնագիր","src.pages.components.PageList.1124600214":"Վերնագիր","src.pages.components.PageInfo.1116746286":"Բովանդակություն","src.translations.components.TranslationsPagesPage.1116746286":"Բովանդակություն","src.pages.components.PageList.3478065224":"Նշան","src.pages.components.PageSlug.3478065224":"Նշան","src.productTypes.components.ProductTypeAttributes.3478065224":"Նշան","src.pages.components.PageList.3767550649":"","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.1767905232":"","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.3785394515":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"","src.products.components.ProductVariantImages.3240888698":"","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"","src.products.components.ProductVariantStock.3841616483":"","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListPage.821159718":"","src.products.components.ProductListPage.1421689426":"","src.products.components.ProductListPage.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"","prodictStockInventoryLabel":"","src.products.components.ProductVariantStock.3490038570":"","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"","src.products.components.ProductVariants.2153006789":"","src.products.components.ProductVariantNavigation.2845381934":"","src.products.components.ProductVariants.2845381934":"","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1542417144":"","src.products.views.1591632382":"","src.products.views.490753666":"","src.products.views.672103788":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.1694086800":"","src.products.views.ProductList.224127438":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.products.views.2178905289":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1756957616":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.889729490":"","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.4080551769":"","src.productTypes.views.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.352297149":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2474410767":"","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.254167659":"","src.shipping.views.ShippingZoneDetails.1790261672":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"","src.siteSettings.components.SiteSettingsKeys.2446088470":"","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.3490059488":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.3247064221":"Ակտիվ","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.802625341":"","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"Օգտագործողը ակտիվ է","src.staff.views.2240444792":"","src.staff.views.2728048444":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file +{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.3824684885":"","src.attributes.components.AttributeListPage.2417065806":"","src.attributes.components.AttributeListPage.3916653510":"","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.4048785456":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"Անուն","src.categories.components.CategoryProductList.636461959":"Անուն","src.components.ProductList.636461959":"Անուն","src.products.components.ProductList.636461959":"Անուն","src.collections.components.CollectionDetails.636461959":"Անուն","src.collections.components.CollectionProducts.636461959":"Անուն","src.products.components.ProductDetailsForm.636461959":"Անուն","src.discounts.components.SaleInfo.636461959":"Անուն","src.discounts.components.SaleList.636461959":"Անուն","src.discounts.components.SaleSummary.636461959":"Անուն","menuItemDialogNameLabel":"Անուն","src.plugins.components.PluginsList.636461959":"Անուն","src.products.components.ProductVariants.636461959":"Անուն","src.shipping.components.ShippingZoneRates.636461959":"Անուն","src.shipping.components.ShippingZonesList.636461959":"Անուն","src.staff.components.StaffList.636461959":"Անուն","src.translations.components.TranslationsEntitiesList.636461959":"Անուն","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.351422234":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.109182747":"","src.auth.components.LoginPage.4028609483":"","src.auth.components.NewPasswordPage.1915811227":"","src.auth.components.NewPasswordPage.1254879564":"","src.auth.components.NewPasswordPage.2799926859":"","src.auth.components.NewPasswordPage.4253911811":"","src.auth.components.NewPasswordPage.2342634351":"","src.auth.components.ResetPasswordPage.2370700732":"","src.auth.components.ResetPasswordPage.3663311080":"","src.auth.components.ResetPasswordSuccessPage.4066297200":"","src.auth.components.ResetPasswordSuccessPage.2245157344":"","src.auth.views.2388238158":"","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"","src.categories.views.2004894945":"","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.2159874182":"","src.categories.components.CategoryUpdatePage.2159874182":"","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.1140231710":"","src.categories.views.1140231710":"","src.categories.components.CategoryListPage.4294878092":"","src.categories.components.CategoryListPage.3841025483":"","src.translations.components.TranslationsEntitiesListPage.3841025483":"","src.categories.components.CategoryProductList.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductList.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProductList.3640454975":"Հրապարակված","src.components.ProductList.3640454975":"Հրապարակված","src.products.components.ProductList.3640454975":"Հրապարակված","src.products.components.ProductListPage.3640454975":"Հրապարակված","productStatusLabel":"Հրապարակված","src.collections.components.CollectionList.3640454975":"Հրապարակված","src.collections.components.CollectionProducts.3640454975":"Հրապարակված","src.discounts.components.DiscountProducts.3640454975":"Հրապարակված","src.pages.components.PageList.3640454975":"Հրապարակված","src.products.views.ProductList.published":"Հրապարակված","src.categories.components.CategoryProductList.1134347598":"Արժեք","src.orders.components.OrderFulfillment.1134347598":"Արժեք","src.products.components.ProductList.1134347598":"Արժեք","src.products.components.ProductListPage.1134347598":"Արժեք","src.products.components.ProductPricing.1134347598":"Արժեք","src.components.ProductList.1134347598":"Արժեք","src.orders.components.OrderDraftDetailsProducts.1134347598":"Արժեք","src.orders.components.OrderUnfulfilledItems.1134347598":"Արժեք","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"Արժեք","src.shipping.components.ShippingZoneRates.1134347598":"Արժեք","src.categories.components.CategoryProductList.2341910657":"Չհրապարակված","src.products.components.ProductList.2341910657":"Չհրապարակված","src.collections.components.CollectionList.2341910657":"Չհրապարակված","src.collections.components.CollectionProducts.2341910657":"Չհրապարակված","src.discounts.components.DiscountProducts.2341910657":"Չհրապարակված","src.components.ProductList.2341910657":"Չհրապարակված","src.categories.components.CategoryProductList.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.products.components.ProductList.1657559629":"","src.categories.components.CategoryProducts.4164156574":"","src.categories.components.CategoryProducts.3554578821":"","src.categories.components.CategoryUpdatePage.2968663655":"Ապրանքներ","src.discounts.components.DiscountCategories.2968663655":"Ապրանքներ","src.discounts.components.DiscountCollections.2968663655":"Ապրանքներ","src.products":"Ապրանքներ","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryUpdatePage.3229914152":"","src.categories.components.CategoryUpdatePage.770296100":"","src.categories.views.1754466114":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.CategoryList.3488150607":"","src.categories.views.712767046":"","src.categories.views.CategoryList.712767046":"","src.categories.views.299584400":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.categories.views.CategoryList.2144707585":"","src.collections.components.CollectionCreatePage.3958681866":"","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionCreatePage.2001551496":"","src.collections.components.CollectionDetailsPage.2001551496":"","src.pages.components.PageDetailsPage.2001551496":"","src.products.components.ProductCreatePage.2001551496":"","src.products.components.ProductUpdatePage.2001551496":"","src.collections.components.CollectionCreatePage.1815688500":"","src.collections.components.CollectionDetailsPage.1815688500":"","src.pages.components.PageDetailsPage.1815688500":"","src.products.components.ProductCreatePage.1815688500":"","src.products.components.ProductUpdatePage.1815688500":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"","src.availability":"","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionListPage.686910896":"","src.collections.views.686910896":"","src.collections.components.CollectionListPage.1631917001":"","src.collections.components.CollectionListPage.4057224233":"","src.components.AssignCollectionDialog.4057224233":"","src.translations.components.TranslationsEntitiesListPage.4057224233":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"","src.collections.views.2402899582":"","src.collections.views.CollectionList.2237014112":"Չհրապարակել","src.pages.views.2237014112":"Չհրապարակել","src.products.views.ProductList.2237014112":"Չհրապարակել","src.collections.views.CollectionList.1547167026":"Հրապարակել","src.pages.views.1547167026":"Հրապարակել","src.products.views.ProductList.1547167026":"Հրապարակել","src.collections.views.CollectionList.2823425739":"","src.collections.views.CollectionList.1348793822":"","src.collections.views.CollectionList.2637364047":"","src.collections.views.CollectionList.3944356444":"","src.collections.views.CollectionList.3817188998":"","src.collections.views.CollectionList.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"","src.components.ErrorMessageCard.2845142593":"","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.Filter.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.Filter.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.FilterBar.2340527467":"","src.components.SearchBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"","src.pages.components.PageList.1459686496":"","src.products.components.ProductListFilter.1459686496":"","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"","src.products.views.ProductList.hidden":"","src.components.VisibilityCard.292404896":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","src.configuration.2326418019":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","src.configuration.3655543906":"","configurationMenuShipping":"","configurationMenuTaxes":"","src.configuration.3140151600":"","configurationMenuStaff":"","src.configuration.1233229030":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","configurationPluginsPages":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"","src.customers.components.CustomerAddresses.3517722732":"","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"Հասցե","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"Նշումներ","src.orders.components.OrderCustomerNote.1520756907":"Նշումներ","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"Նշում","src.customers.components.CustomerDetails.577013340":"Նշում","src.customers.components.CustomerCreatePage.1934221653":"","src.customers.components.CustomerListPage.1934221653":"","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerListPage.477293306":"","src.customers.components.CustomerListPage.1643417013":"","src.customers.components.CustomerOrders.3878642352":"","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"","src.orders.components.OrderDraftList.4205493358":"","src.orders.components.OrderList.4205493358":"","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"","src.orders.components.OrderListFilter.1756106276":"","src.plugins.components.PluginInfo.1756106276":"","src.products.components.ProductListFilter.1756106276":"","src.products.components.ProductVariants.1756106276":"","src.customers.components.CustomerOrders.878013594":"Ընդհանուր","src.orders.components.OrderDraftDetailsProducts.878013594":"Ընդհանուր","src.orders.components.OrderDraftDetailsSummary.878013594":"Ընդհանուր","src.orders.components.OrderDraftList.878013594":"Ընդհանուր","src.orders.components.OrderFulfillment.878013594":"Ընդհանուր","src.orders.components.OrderUnfulfilledItems.878013594":"Ընդհանուր","src.orders.components.OrderList.878013594":"Ընդհանուր","src.orders.components.OrderPayment.878013594":"Ընդհանուր","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.CustomerList.1946482599":"","src.customers.views.CustomerList.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","src.discounts.components.SaleListPage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"Արժեք","src.discounts.components.SaleSummary.1148029984":"Արժեք","src.discounts.components.VoucherList.1148029984":"Արժեք","src.discounts.components.VoucherSummary.1148029984":"Արժեք","src.discounts.components.VoucherValue.1148029984":"Արժեք","src.products.components.ProductAttributes.1148029984":"Արժեք","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.3907768880":"","src.discounts.components.SaleListPage.1866913828":"","src.translations.components.TranslationsEntitiesListPage.1866913828":"","src.discounts.components.SalePricing.1099355007":"","src.products.components.ProductPricing.1099355007":"","src.products.components.ProductVariantPrice.1099355007":"","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"Կոդ","src.discounts.components.VoucherSummary.78726751":"Կոդ","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.614836274":"","src.discounts.components.VoucherListPage.1112241061":"","src.discounts.components.VoucherListPage.1930485532":"","src.translations.components.TranslationsEntitiesListPage.1930485532":"","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"","src.discounts.shipment":"","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.SaleList.2809303671":"","src.discounts.views.SaleList.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.VoucherList.367317371":"","src.discounts.views.VoucherList.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.somethingWentWrong":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"","src.orders.views.OrderList.3528672691":"","src.confirm":"","src.delete":"","src.edit":"","src.manage":"","src.remove":"","src.save":"","src.show":"","src.undo":"","src.attributes":"","src.products.components.ProductAttributes.4153345096":"","src.categories":"Տեսականի","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"Հավաքածուներ","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"","src.customers":"","src.draftOrders":"","src.home":"","src.navigation":"","src.orders":"","src.pages":"","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.plugins":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"","src.taxes.components.CountryListPage.3955023266":"","src.translations":"","src.vouchers":"","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"","src.partiallyPaid":"","src.partiallyRefunded":"","src.refunded":"","src.unpaid":"","src.cancelled":"","src.draft":"","src.fulfilled":"","src.orders.views.OrderList.fulfilled":"","src.orders.components.OrderListFilter.1712863026":"","src.partiallyFulfilled":"","src.unfulfilled":"","src.orders.views.OrderList.unfulfilled":"","src.orders.components.OrderListFilter.1751787272":"","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"Հղում","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"","src.orders.components.OrderDetailsPage.1854613983":"","src.orders.components.OrderDraftPage.1854613983":"","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"Հաճախորդ","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"Հաճախորդ","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"","src.orders.components.OrderCustomerEditDialog.1411666943":"","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.632633254":"","src.orders.components.OrderDraftCancelDialog.36681973":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"","src.orders.components.OrderUnfulfilledItems.1895667608":"","src.orders.components.OrderDraftDetailsProducts.2796503714":"Քանակ","src.orders.components.OrderFulfillment.2796503714":"Քանակ","src.orders.components.OrderFulfillmentDialog.2796503714":"Քանակ","src.orders.components.OrderUnfulfilledItems.2796503714":"Քանակ","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"","src.orders.components.OrderPayment.781550514":"","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"","src.orders.components.OrderListPage.2826235371":"","src.orders.components.OrderDraftListPage.551325728":"","src.orders.components.OrderDraftListPage.77765281":"","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"","src.orders.components.OrderFulfillmentCancelDialog.732594284":"","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"Հետևելու համարը","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.4067959693":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2415661583":"","src.orders.views.OrderList.readyToCapture":"","src.orders.components.OrderListFilter.2222765704":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"","src.productTypes.components.ProductTypeShipping.1325966144":"","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"","src.orders.components.OrderPayment.3768782744":"","src.orders.components.OrderPayment.2320183694":"","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"","src.orders.components.OrderPayment.2845258362":"","src.orders.components.OrderPayment.2444197639":"","src.orders.components.OrderPayment.3500506678":"","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"Գումար","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.1542417144":"","src.products.components.ProductListPage.1542417144":"","src.products.views.1542417144":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.OrderDraftList.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.OrderDraftList.1648805446":"","src.orders.views.OrderDraftList.1161115149":"","src.orders.views.OrderDraftList.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.1068617485":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"Վերնագիր","src.pages.components.PageList.1124600214":"Վերնագիր","src.pages.components.PageInfo.1116746286":"Բովանդակություն","src.translations.components.TranslationsPagesPage.1116746286":"Բովանդակություն","src.pages.components.PageList.3478065224":"Նշան","src.pages.components.PageSlug.3478065224":"Նշան","src.productTypes.components.ProductTypeAttributes.3478065224":"Նշան","src.pages.components.PageList.3767550649":"","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.3785394515":"","src.pages.views.3785394515":"","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.plugins.components.PluginInfo.3425535100":"","src.plugins.components.PluginsDetailsPage.3425535100":"","src.plugins.components.PluginInfo.1049131348":"","src.plugins.components.PluginInfo.4013064767":"","src.plugins.components.PluginsDetailsPage.3352026836":"","src.plugins.components.PluginsDetailsPage.2277745418":"","src.plugins.components.PluginsDetailsPage.1970881031":"","src.plugins.components.PluginSettings.1970881031":"","src.plugins.components.PluginsDetailsPage.4241018152":"","src.plugins.components.PluginsList.3247064221":"Ակտիվ","src.staff.components.StaffList.3247064221":"Ակտիվ","src.plugins.components.PluginsList.4120604650":"","src.plugins.components.PluginsList.666641390":"","src.plugins.views.100549097":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"","src.products.components.ProductVariantImages.3240888698":"","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"","src.products.components.ProductVariantStock.3841616483":"","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListFilter.821159718":"","src.products.components.ProductListFilter.1421689426":"","src.products.components.ProductListFilter.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"","prodictStockInventoryLabel":"","src.products.components.ProductVariantStock.3490038570":"","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"","src.products.components.ProductVariants.2153006789":"","src.products.components.ProductVariantNavigation.2845381934":"","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.3989383405":"","src.products.views.3989383405":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1591632382":"","src.products.views.1731766393":"","src.products.views.2880386427":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1217376589":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.3479705616":"","src.productTypes.components.ProductTypeListPage.1776073799":"","src.productTypes.components.ProductTypeListPage.3420445375":"","src.translations.components.TranslationsEntitiesListPage.3420445375":"","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.ProductTypeList.4080551769":"","src.productTypes.views.ProductTypeList.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRates.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2673544109":"","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.1947090060":"","src.shipping.views.ShippingZoneDetails.131963671":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"","src.siteSettings.components.SiteSettingsKeys.2446088470":"","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.1481503299":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.797461521":"","src.staff.components.StaffListPage.2852350932":"","src.staff.components.StaffListPage.61043583":"","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"Օգտագործողը ակտիվ է","src.staff.views.1308770978":"","src.staff.views.8878988":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.2105464697":"","src.translations.components.TranslationsEntitiesListPage.2559018090":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file diff --git a/locale/hy.po b/locale/hy.po index 9ad17df04..5f9eb681b 100644 --- a/locale/hy.po +++ b/locale/hy.po @@ -3,7 +3,7 @@ # msgid "" msgstr "" -"POT-Creation-Date: 2019-09-06T13:56:36.897Z\n" +"POT-Creation-Date: 2019-09-16T15:25:09.340Z\n" "Last-Translator: Vachagan , 2019\n" "Language-Team: Armenian (https://www.transifex.com/mirumee/teams/34782/hy/)\n" "MIME-Version: 1.0\n" @@ -141,22 +141,6 @@ msgctxt "create new menu item, header" msgid "Add Item" msgstr "" -#. [menuCreateDialogHeader] - dialog header -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json -msgctxt "dialog header" -msgid "Add Menu" -msgstr "" - -#. [menuListPageAddMenu] - button -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json -msgctxt "button" -msgid "Add Menu" -msgstr "" - #. [src.siteSettings.components.SiteSettingsKeyDialog.1238948746] - dialog #. header #. defaultMessage is: @@ -166,14 +150,6 @@ msgctxt "dialog header" msgid "Add New Authorization Key" msgstr "" -#. [src.pages.components.PageDetailsPage.755314116] - page header -#. defaultMessage is: -#. Add Page -#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json -msgctxt "page header" -msgid "Add Page" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.2892088870] - dialog header #. defaultMessage is: #. Add Price Rate @@ -182,38 +158,6 @@ msgctxt "dialog header" msgid "Add Price Rate" msgstr "" -#. [src.orders.components.OrderProductAddDialog.2775402904] - dialog header -#. defaultMessage is: -#. Add Product -#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json -msgctxt "dialog header" -msgid "Add Product" -msgstr "" - -#. [src.products.components.ProductListPage.2775402904] - button -#. defaultMessage is: -#. Add Product -#: build/locale/src/products/components/ProductListPage/ProductListPage.json -msgctxt "button" -msgid "Add Product" -msgstr "" - -#. [src.discounts.components.SaleListPage.1742771332] - button -#. defaultMessage is: -#. Add Sale -#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json -msgctxt "button" -msgid "Add Sale" -msgstr "" - -#. [src.staff.components.StaffAddMemberDialog.3490059488] - dialog header -#. defaultMessage is: -#. Add Staff Member -#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json -msgctxt "dialog header" -msgid "Add Staff Member" -msgstr "" - #. [src.attributes.components.AttributeValueEditDialog.1841790893] - add #. attribute value #. defaultMessage is: @@ -223,14 +167,6 @@ msgctxt "add attribute value" msgid "Add Value" msgstr "" -#. [src.products.views.2178905289] - header -#. defaultMessage is: -#. Add Variant -#: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "header" -msgid "Add Variant" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.1397795758] - add weight #. based shipping method, dialog header #. defaultMessage is: @@ -248,14 +184,6 @@ msgctxt "button" msgid "Add address" msgstr "" -#. [src.attributes.components.AttributeListPage.350498821] - button -#. defaultMessage is: -#. Add attribute -#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json -msgctxt "button" -msgid "Add attribute" -msgstr "" - #. [src.siteSettings.components.SiteSettingsKeyDialog.50561933] - button #. defaultMessage is: #. Add authentication @@ -264,14 +192,6 @@ msgctxt "button" msgid "Add authentication" msgstr "" -#. [src.categories.components.CategoryListPage.228151782] - button -#. defaultMessage is: -#. Add category -#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json -msgctxt "button" -msgid "Add category" -msgstr "" - #. [src.collections.components.CollectionCreatePage.3958681866] - page header #. defaultMessage is: #. Add collection @@ -280,14 +200,6 @@ msgctxt "page header" msgid "Add collection" msgstr "" -#. [src.collections.components.CollectionListPage.3958681866] - button -#. defaultMessage is: -#. Add collection -#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json -msgctxt "button" -msgid "Add collection" -msgstr "" - #. [src.customers.components.CustomerCreatePage.1934221653] - page header #. defaultMessage is: #. Add customer @@ -320,14 +232,6 @@ msgctxt "button" msgid "Add key" msgstr "" -#. [menuItemsAddItem] - add new menu item -#. defaultMessage is: -#. Add new item -#: build/locale/src/navigation/components/MenuItems/MenuItems.json -msgctxt "add new menu item" -msgid "Add new item" -msgstr "" - #. [menuItemsPlaceholder] #. defaultMessage is: #. Add new menu item to begin creating menu @@ -362,14 +266,6 @@ msgctxt "button" msgid "Add or Edit Link" msgstr "" -#. [src.pages.components.PageListPage.1767905232] - button -#. defaultMessage is: -#. Add page -#: build/locale/src/pages/components/PageListPage/PageListPage.json -msgctxt "button" -msgid "Add page" -msgstr "" - #. [src.categories.components.CategoryProducts.3554578821] - button #. defaultMessage is: #. Add product @@ -378,14 +274,6 @@ msgctxt "button" msgid "Add product" msgstr "" -#. [src.productTypes.components.ProductTypeListPage.889729490] - button -#. defaultMessage is: -#. Add product type -#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json -msgctxt "button" -msgid "Add product type" -msgstr "" - #. [src.orders.components.OrderDraftDetails.2528459381] - button #. defaultMessage is: #. Add products @@ -394,14 +282,6 @@ msgctxt "button" msgid "Add products" msgstr "" -#. [src.shipping.components.ShippingZoneRates.352297149] - button -#. defaultMessage is: -#. Add rate -#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json -msgctxt "button" -msgid "Add rate" -msgstr "" - #. [src.categories.components.CategoryCreatePage.2563994280] #. defaultMessage is: #. Add search engine title and description to make this category easier to @@ -463,30 +343,6 @@ msgctxt "button" msgid "Add shipping carrier" msgstr "" -#. [src.shipping.components.ShippingZonesList.2474410767] - button -#. defaultMessage is: -#. Add shipping zone -#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json -msgctxt "button" -msgid "Add shipping zone" -msgstr "" - -#. [src.staff.components.StaffListPage.802625341] - button -#. defaultMessage is: -#. Add staff member -#: build/locale/src/staff/components/StaffListPage/StaffListPage.json -msgctxt "button" -msgid "Add staff member" -msgstr "" - -#. [src.categories.components.CategoryList.435697837] - button -#. defaultMessage is: -#. Add subcategory -#: build/locale/src/categories/components/CategoryList/CategoryList.json -msgctxt "button" -msgid "Add subcategory" -msgstr "" - #. [src.attributes.components.AttributeProperties.673770329] - add attribute #. as column in product list table #. defaultMessage is: @@ -514,35 +370,14 @@ msgctxt "dialog header" msgid "Add tracking code" msgstr "" -#. [src.attributes.components.AttributeValues.254756045] - add attribute value -#. button -#. defaultMessage is: -#. Add value -#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json -msgctxt "add attribute value button" -msgid "Add value" -msgstr "" - #. [src.products.components.ProductVariantNavigation.2845381934] - button #. defaultMessage is: #. Add variant -#. [src.products.components.ProductVariants.2845381934] - button -#. defaultMessage is: -#. Add variant #: build/locale/src/products/components/ProductVariantNavigation/ProductVariantNavigation.json -#: build/locale/src/products/components/ProductVariants/ProductVariants.json msgctxt "button" msgid "Add variant" msgstr "" -#. [src.discounts.components.VoucherListPage.1536809153] - button -#. defaultMessage is: -#. Add voucher -#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json -msgctxt "button" -msgid "Add voucher" -msgstr "" - #. [src.attributes.views.AttributeDetails.634268988] - added new attribute #. value #. defaultMessage is: @@ -600,14 +435,6 @@ msgctxt "description" msgid "Address line 2" msgstr "" -#. [src.customers.components.CustomerAddress.1320082647] - addres card header -#. defaultMessage is: -#. Address {addressNumber} -#: build/locale/src/customers/components/CustomerAddress/CustomerAddress.json -msgctxt "addres card header" -msgid "Address {addressNumber}" -msgstr "" - #. [src.attributes.components.AttributeValues.1565474525] - attribute values #. list: slug column header #. defaultMessage is: @@ -657,6 +484,46 @@ msgctxt "tax rate" msgid "Agricultural supplies" msgstr "" +#. [src.attributes.components.AttributeListPage.2417065806] - tab name +#. defaultMessage is: +#. All Attributes +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "tab name" +msgid "All Attributes" +msgstr "" + +#. [src.categories.components.CategoryListPage.4294878092] - tab name +#. defaultMessage is: +#. All Categories +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "tab name" +msgid "All Categories" +msgstr "" + +#. [src.collections.components.CollectionListPage.1631917001] - tab name +#. defaultMessage is: +#. All Collections +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "tab name" +msgid "All Collections" +msgstr "" + +#. [src.customers.components.CustomerListPage.477293306] - tab name +#. defaultMessage is: +#. All Customers +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "tab name" +msgid "All Customers" +msgstr "" + +#. [src.orders.components.OrderDraftListPage.551325728] - tab name +#. defaultMessage is: +#. All Drafts +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "tab name" +msgid "All Drafts" +msgstr "" + #. [src.orders.components.OrderListPage.875489544] - tab name #. defaultMessage is: #. All Orders @@ -674,22 +541,54 @@ msgctxt "section header" msgid "All Photos" msgstr "" -#. [src.products.components.ProductListPage.821159718] - tab name +#. [src.productTypes.components.ProductTypeListPage.1776073799] - tab name +#. defaultMessage is: +#. All Product Types +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "tab name" +msgid "All Product Types" +msgstr "" + +#. [src.products.components.ProductListFilter.821159718] - tab name #. defaultMessage is: #. All Products -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "tab name" msgid "All Products" msgstr "" -#. [src.categories.components.CategoryList.3229914152] - section header +#. [src.discounts.components.SaleListPage.3907768880] - tab name +#. defaultMessage is: +#. All Sales +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "tab name" +msgid "All Sales" +msgstr "" + +#. [src.staff.components.StaffListPage.2852350932] - tab name +#. defaultMessage is: +#. All Staff Members +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "tab name" +msgid "All Staff Members" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.3229914152] - section header #. defaultMessage is: #. All Subcategories -#: build/locale/src/categories/components/CategoryList/CategoryList.json +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json msgctxt "section header" msgid "All Subcategories" msgstr "" +#. [src.discounts.components.VoucherListPage.1112241061] - tab name +#. defaultMessage is: +#. All Vouchers +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "tab name" +msgid "All Vouchers" +msgstr "" + #. [src.taxes.components.TaxConfiguration.142803418] #. defaultMessage is: #. All products prices are entered with tax included @@ -797,6 +696,14 @@ msgctxt "description" msgid "Are you sure you want to delete collection's image?" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.36681973] +#. defaultMessage is: +#. Are you sure you want to delete draft #{number}? +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "description" +msgid "Are you sure you want to delete draft #{number}?" +msgstr "" + #. [menuDetailsDeleteMenuContent] #. defaultMessage is: #. Are you sure you want to delete menu {menuName}? @@ -813,6 +720,14 @@ msgctxt "description" msgid "Are you sure you want to delete this address from users address book?" msgstr "" +#. [src.products.views.2880386427] +#. defaultMessage is: +#. Are you sure you want to delete this image? +#: build/locale/src/products/views/ProductImage.json +msgctxt "description" +msgid "Are you sure you want to delete this image?" +msgstr "" + #. [src.attributes.components.AttributeDeleteDialog.3738429348] - dialog #. content #. defaultMessage is: @@ -863,12 +778,7 @@ msgstr "" #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this attribute} #. other{{displayQuantity} categories}}? -#. [src.categories.views.844574071] -#. defaultMessage is: -#. Are you sure you want to delete {counter,plural,one{this attribute} -#. other{{displayQuantity} categories}}? #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this attribute} " @@ -886,22 +796,33 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.2497542455] +#. [src.categories.views.CategoryList.2144707585] +#. defaultMessage is: +#. Are you sure you want to delete {counter,plural,one{this category} +#. other{{displayQuantity} categories}}? +#: build/locale/src/categories/views/CategoryList/CategoryList.json +msgctxt "description" +msgid "" +"Are you sure you want to delete {counter,plural,one{this category} " +"other{{displayQuantity} categories}}?" +msgstr "" + +#. [src.collections.views.CollectionList.2497542455] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this collection} " "other{{displayQuantity} collections}}?" msgstr "" -#. [src.customers.views.409347866] +#. [src.customers.views.CustomerList.409347866] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this customer} #. other{{displayQuantity} customers}}? -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this customer} " @@ -919,11 +840,11 @@ msgid "" "other{{displayQuantity} menus}}?" msgstr "" -#. [src.orders.views.1389231130] - dialog content +#. [src.orders.views.OrderDraftList.1389231130] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this order draft} #. other{{displayQuantity} orderDrafts}}? -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this order draft} " @@ -941,11 +862,11 @@ msgid "" "other{{displayQuantity} pages}}?" msgstr "" -#. [src.productTypes.views.2294091098] - dialog content +#. [src.productTypes.views.ProductTypeList.2294091098] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this product type} #. other{{displayQuantity} product types}}? -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this product type} " @@ -963,11 +884,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.discounts.views.2516361175] - dialog content +#. [src.discounts.views.SaleList.2516361175] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this sale} #. other{{displayQuantity} sales}}? -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this sale} " @@ -996,17 +917,33 @@ msgid "" "other{{displayQuantity} variants}}?" msgstr "" -#. [src.discounts.views.1791926983] - dialog content +#. [src.discounts.views.VoucherList.1791926983] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this voucher} #. other{{displayQuantity} vouchers}}? -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this voucher} " "other{{displayQuantity} vouchers}}?" msgstr "" +#. [src.shipping.views.ShippingZoneDetails.131963671] - unassign country +#. defaultMessage is: +#. Are you sure you want to delete {countryName} from this shipping zone? +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country" +msgid "Are you sure you want to delete {countryName} from this shipping zone?" +msgstr "" + +#. [src.staff.views.8878988] +#. defaultMessage is: +#. Are you sure you want to delete {email} from staff members? +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "description" +msgid "Are you sure you want to delete {email} from staff members?" +msgstr "" + #. [src.customers.views.1927691511] - delete customer, dialog content #. defaultMessage is: #. Are you sure you want to delete {email}? @@ -1121,11 +1058,11 @@ msgctxt "description" msgid "Are you sure you want to mark this order as paid?" msgstr "" -#. [src.collections.views.1348793822] +#. [src.collections.views.CollectionList.1348793822] #. defaultMessage is: #. Are you sure you want to publish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to publish {counter,plural,one{this collection} " @@ -1154,30 +1091,6 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.orders.components.OrderDraftCancelDialog.3199827590] -#. defaultMessage is: -#. Are you sure you want to remove draft #{number}? -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "description" -msgid "Are you sure you want to remove draft #{number}?" -msgstr "" - -#. [src.products.views.672103788] -#. defaultMessage is: -#. Are you sure you want to remove this image? -#: build/locale/src/products/views/ProductImage.json -msgctxt "description" -msgid "Are you sure you want to remove this image?" -msgstr "" - -#. [src.shipping.views.ShippingZoneDetails.1790261672] - unassign country -#. defaultMessage is: -#. Are you sure you want to remove {countryName} from this shipping zone? -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country" -msgid "Are you sure you want to remove {countryName} from this shipping zone?" -msgstr "" - #. [src.staff.views.3945766678] #. defaultMessage is: #. Are you sure you want to remove {email} avatar? @@ -1186,14 +1099,6 @@ msgctxt "description" msgid "Are you sure you want to remove {email} avatar?" msgstr "" -#. [src.staff.views.2728048444] -#. defaultMessage is: -#. Are you sure you want to remove {email} from staff members? -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "description" -msgid "Are you sure you want to remove {email} from staff members?" -msgstr "" - #. [src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450] #. defaultMessage is: #. Are you sure you want to unassign {attributeName} from {productTypeName}? @@ -1274,11 +1179,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.3944356444] +#. [src.collections.views.CollectionList.3944356444] #. defaultMessage is: #. Are you sure you want to unpublish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to unpublish {counter,plural,one{this collection} " @@ -1439,6 +1344,15 @@ msgctxt "button" msgid "Assign products" msgstr "" +#. [src.attributes.components.AttributeValues.351422234] - assign attribute +#. value button +#. defaultMessage is: +#. Assign value +#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json +msgctxt "assign attribute value button" +msgid "Assign value" +msgstr "" + #. [src.attributes.components.AttributeDetails.3605174225] - attribute's slug #. short code label #. defaultMessage is: @@ -1517,6 +1431,14 @@ msgctxt "product attributes, section header" msgid "Attributes" msgstr "" +#. [src.configuration.2326418019] +#. defaultMessage is: +#. Attributes and Product Typess +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Attributes and Product Typess" +msgstr "" + #. [src.attributes.views.AttributeList.3218248395] - deleted multiple #. attributes #. defaultMessage is: @@ -2300,6 +2222,22 @@ msgctxt "description" msgid "Country area" msgstr "" +#. [menuCreateDialogHeader] - dialog header +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json +msgctxt "dialog header" +msgid "Create Menu" +msgstr "" + +#. [menuListPageAddMenu] - button +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json +msgctxt "button" +msgid "Create Menu" +msgstr "" + #. [src.attributes.components.AttributePage.2855501559] - page title #. defaultMessage is: #. Create New Attribute @@ -2324,6 +2262,30 @@ msgctxt "header" msgid "Create New Shipping Zone" msgstr "" +#. [src.pages.components.PageDetailsPage.1068617485] - page header +#. defaultMessage is: +#. Create Page +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page header" +msgid "Create Page" +msgstr "" + +#. [src.orders.components.OrderProductAddDialog.1542417144] - dialog header +#. defaultMessage is: +#. Create Product +#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json +msgctxt "dialog header" +msgid "Create Product" +msgstr "" + +#. [src.products.components.ProductListPage.1542417144] - button +#. defaultMessage is: +#. Create Product +#: build/locale/src/products/components/ProductListPage/ProductListPage.json +msgctxt "button" +msgid "Create Product" +msgstr "" + #. [src.products.views.1542417144] - window title #. defaultMessage is: #. Create Product @@ -2356,11 +2318,19 @@ msgctxt "page header" msgid "Create Sale" msgstr "" -#. [src.products.views.2362587265] - window title +#. [src.discounts.components.SaleListPage.3866518732] - button +#. defaultMessage is: +#. Create Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "button" +msgid "Create Sale" +msgstr "" + +#. [src.products.views.2362587265] - header #. defaultMessage is: #. Create Variant #: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "window title" +msgctxt "header" msgid "Create Variant" msgstr "" @@ -2372,6 +2342,22 @@ msgctxt "page header" msgid "Create Voucher" msgstr "" +#. [src.attributes.components.AttributeListPage.3824684885] - button +#. defaultMessage is: +#. Create attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "button" +msgid "Create attribute" +msgstr "" + +#. [src.categories.components.CategoryListPage.1140231710] - button +#. defaultMessage is: +#. Create category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "button" +msgid "Create category" +msgstr "" + #. [src.categories.views.1140231710] - window title #. defaultMessage is: #. Create category @@ -2380,6 +2366,14 @@ msgctxt "window title" msgid "Create category" msgstr "" +#. [src.collections.components.CollectionListPage.686910896] - button +#. defaultMessage is: +#. Create collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "button" +msgid "Create collection" +msgstr "" + #. [src.collections.views.686910896] - window title #. defaultMessage is: #. Create collection @@ -2396,6 +2390,14 @@ msgctxt "window title" msgid "Create customer" msgstr "" +#. [menuItemsAddItem] - add new menu item +#. defaultMessage is: +#. Create new item +#: build/locale/src/navigation/components/MenuItems/MenuItems.json +msgctxt "add new menu item" +msgid "Create new item" +msgstr "" + #. [src.orders.components.OrderDraftListPage.2826235371] - button #. defaultMessage is: #. Create order @@ -2408,6 +2410,14 @@ msgctxt "button" msgid "Create order" msgstr "" +#. [src.pages.components.PageListPage.3785394515] - button +#. defaultMessage is: +#. Create page +#: build/locale/src/pages/components/PageListPage/PageListPage.json +msgctxt "button" +msgid "Create page" +msgstr "" + #. [src.pages.views.3785394515] - header #. defaultMessage is: #. Create page @@ -2419,11 +2429,55 @@ msgstr "" #. [src.shipping.components.ShippingZoneRateDialog.16061680] - button #. defaultMessage is: #. Create rate +#. [src.shipping.components.ShippingZoneRates.16061680] - button +#. defaultMessage is: +#. Create rate #: build/locale/src/shipping/components/ShippingZoneRateDialog/ShippingZoneRateDialog.json +#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json msgctxt "button" msgid "Create rate" msgstr "" +#. [src.shipping.components.ShippingZonesList.2673544109] - button +#. defaultMessage is: +#. Create shipping zone +#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json +msgctxt "button" +msgid "Create shipping zone" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.770296100] - button +#. defaultMessage is: +#. Create subcategory +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json +msgctxt "button" +msgid "Create subcategory" +msgstr "" + +#. [src.products.components.ProductVariants.3989383405] - button +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/components/ProductVariants/ProductVariants.json +msgctxt "button" +msgid "Create variant" +msgstr "" + +#. [src.products.views.3989383405] - window title +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/views/ProductVariantCreate.json +msgctxt "window title" +msgid "Create variant" +msgstr "" + +#. [src.discounts.components.VoucherListPage.614836274] - button +#. defaultMessage is: +#. Create voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "button" +msgid "Create voucher" +msgstr "" + #. [src.collections.views.1597339737] #. defaultMessage is: #. Created collection @@ -2470,7 +2524,11 @@ msgstr "" #. [src.components.FilterBar.2340527467] #. defaultMessage is: #. Custom Filter +#. [src.components.SearchBar.2340527467] +#. defaultMessage is: +#. Custom Filter #: build/locale/src/components/FilterBar/FilterBar.json +#: build/locale/src/components/SearchBar/SearchBar.json msgctxt "description" msgid "Custom Filter" msgstr "" @@ -2726,10 +2784,18 @@ msgctxt "dialog title" msgid "Delete Collection" msgstr "" -#. [src.orders.views.1161115149] - dialog header +#. [src.products.views.1731766393] - dialog header +#. defaultMessage is: +#. Delete Image +#: build/locale/src/products/views/ProductImage.json +msgctxt "dialog header" +msgid "Delete Image" +msgstr "" + +#. [src.orders.views.OrderDraftList.1161115149] - dialog header #. defaultMessage is: #. Delete Order Drafts -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog header" msgid "Delete Order Drafts" msgstr "" @@ -2767,10 +2833,10 @@ msgctxt "dialog header" msgid "Delete Product Type" msgstr "" -#. [src.productTypes.views.4080551769] - dialog header +#. [src.productTypes.views.ProductTypeList.4080551769] - dialog header #. defaultMessage is: #. Delete Product Types -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog header" msgid "Delete Product Types" msgstr "" @@ -2799,10 +2865,10 @@ msgctxt "dialog header" msgid "Delete Sale" msgstr "" -#. [src.discounts.views.2809303671] - dialog header +#. [src.discounts.views.SaleList.2809303671] - dialog header #. defaultMessage is: #. Delete Sales -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog header" msgid "Delete Sales" msgstr "" @@ -2816,9 +2882,13 @@ msgctxt "custom search delete, dialog header" msgid "Delete Search" msgstr "" +#. [src.components.Filter.2173195312] - button +#. defaultMessage is: +#. Delete Search #. [src.components.TableFilter.2173195312] - button #. defaultMessage is: #. Delete Search +#: build/locale/src/components/Filter/FilterSearch.json #: build/locale/src/components/TableFilter/FilterChips.json msgctxt "button" msgid "Delete Search" @@ -2885,10 +2955,10 @@ msgctxt "dialog header" msgid "Delete Voucher" msgstr "" -#. [src.discounts.views.367317371] - dialog header +#. [src.discounts.views.VoucherList.367317371] - dialog header #. defaultMessage is: #. Delete Vouchers -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog header" msgid "Delete Vouchers" msgstr "" @@ -2922,11 +2992,11 @@ msgstr "" #. [src.categories.views.712767046] - dialog title #. defaultMessage is: #. Delete categories -#. [src.categories.views.712767046] - dialog title +#. [src.categories.views.CategoryList.712767046] - dialog title #. defaultMessage is: #. Delete categories #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "dialog title" msgid "Delete categories" msgstr "" @@ -2943,10 +3013,10 @@ msgctxt "dialog title" msgid "Delete category" msgstr "" -#. [src.collections.views.3817188998] - dialog title +#. [src.collections.views.CollectionList.3817188998] - dialog title #. defaultMessage is: #. Delete collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Delete collections" msgstr "" @@ -2959,14 +3029,31 @@ msgctxt "dialog header" msgid "Delete customer" msgstr "" -#. [src.customers.views.1946482599] - dialog header +#. [src.customers.views.CustomerList.1946482599] - dialog header #. defaultMessage is: #. Delete customers -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "dialog header" msgid "Delete customers" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.632633254] - dialog header +#. defaultMessage is: +#. Delete draft order +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "dialog header" +msgid "Delete draft order" +msgstr "" + +#. [src.shipping.views.ShippingZoneDetails.1947090060] - unassign country, +#. dialog header +#. defaultMessage is: +#. Delete from shipping zone +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country, dialog header" +msgid "Delete from shipping zone" +msgstr "" + #. [src.collections.views.942133001] - dialog title #. defaultMessage is: #. Delete image @@ -3027,6 +3114,14 @@ msgctxt "description" msgid "Deleted collection" msgstr "Ջնջվել է հավաքածուն" +#. [src.orders.views.OrderDraftList.1648805446] +#. defaultMessage is: +#. Deleted draft orders +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json +msgctxt "description" +msgid "Deleted draft orders" +msgstr "" + #. [menuListDeletedMenu] #. defaultMessage is: #. Deleted menu @@ -3626,14 +3721,6 @@ msgctxt "order history message" msgid "Fulfilled {quantity} items" msgstr "" -#. [src.orders.components.OrderListFilter.2943502192] - order -#. defaultMessage is: -#. Fulfillment Status -#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json -msgctxt "order" -msgid "Fulfillment Status" -msgstr "" - #. [src.orders.components.OrderHistory.3081292385] - order history message #. defaultMessage is: #. Fulfillment confirmation was sent to customer @@ -3790,12 +3877,12 @@ msgctxt "description" msgid "If empty, the preview shows what will be autogenerated." msgstr "" -#. [src.attributes.components.AttributeProperties.2519239682] +#. [src.attributes.components.AttributeProperties.4048785456] #. defaultMessage is: -#. If enable this attribute can be used as a column in product table. +#. If enabled this attribute can be used as a column in product table. #: build/locale/src/attributes/components/AttributeProperties/AttributeProperties.json msgctxt "description" -msgid "If enable this attribute can be used as a column in product table." +msgid "If enabled this attribute can be used as a column in product table." msgstr "" #. [src.attributes.components.AttributeProperties.787251583] @@ -3901,6 +3988,22 @@ msgctxt "product variant stock" msgid "Inventory" msgstr "" +#. [src.staff.components.StaffAddMemberDialog.1481503299] - dialog header +#. defaultMessage is: +#. Invite Staff Member +#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json +msgctxt "dialog header" +msgid "Invite Staff Member" +msgstr "" + +#. [src.staff.components.StaffListPage.797461521] - button +#. defaultMessage is: +#. Invite staff member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "button" +msgid "Invite staff member" +msgstr "" + #. [src.productTypes.components.ProductTypeShipping.2143413921] - switch #. button #. defaultMessage is: @@ -4253,6 +4356,14 @@ msgctxt "voucher requirement" msgid "Minimum quantity of items" msgstr "" +#. [src.configuration.1233229030] +#. defaultMessage is: +#. Miscellaneous +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Miscellaneous" +msgstr "" + #. [src.attributes.components.AttributeDetails.3334509011] - product attribute #. type #. defaultMessage is: @@ -5085,6 +5196,14 @@ msgctxt "description" msgid "Order History" msgstr "" +#. [src.orders.components.OrderListFilter.2222765704] +#. defaultMessage is: +#. Order Status +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +msgctxt "description" +msgid "Order Status" +msgstr "" + #. [src.orders.components.OrderHistory.1230178536] - order history message #. defaultMessage is: #. Order address was updated @@ -5101,13 +5220,13 @@ msgctxt "order history message" msgid "Order confirmation was sent to customer" msgstr "" -#. [src.orders.views.1872939752] +#. [src.orders.views.OrderDraftList.1872939752] #. defaultMessage is: #. Order draft succesfully created #. [src.orders.views.OrderList.1872939752] #. defaultMessage is: #. Order draft succesfully created -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json #: build/locale/src/orders/views/OrderList/OrderList.json msgctxt "description" msgid "Order draft succesfully created" @@ -5772,6 +5891,14 @@ msgctxt "description" msgid "Product Name" msgstr "" +#. [src.configuration.3655543906] +#. defaultMessage is: +#. Product Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Product Settings" +msgstr "" + #. [src.discounts.components.DiscountProducts.4257289053] #. defaultMessage is: #. Product Type @@ -5930,12 +6057,12 @@ msgctxt "order history message" msgid "Products were added to draft order" msgstr "" -#. [src.orders.components.OrderHistory.2574162126] - order history message +#. [src.orders.components.OrderHistory.4067959693] - order history message #. defaultMessage is: -#. Products were removed from draft order +#. Products were deleted from draft order #: build/locale/src/orders/components/OrderHistory/OrderHistory.json msgctxt "order history message" -msgid "Products were removed from draft order" +msgid "Products were deleted from draft order" msgstr "" #. [src.properties] @@ -5962,10 +6089,10 @@ msgctxt "description" msgid "Provided email address does not exist in our database." msgstr "" -#. [src.collections.views.1547167026] - publish collections +#. [src.collections.views.CollectionList.1547167026] - publish collections #. defaultMessage is: #. Publish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "publish collections" msgid "Publish" msgstr "Հրապարակել" @@ -6002,10 +6129,10 @@ msgctxt "dialog header" msgid "Publish Products" msgstr "" -#. [src.collections.views.2823425739] - dialog title +#. [src.collections.views.CollectionList.2823425739] - dialog title #. defaultMessage is: #. Publish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Publish collections" msgstr "" @@ -6179,6 +6306,18 @@ msgctxt "shipping method price" msgid "Rate Price" msgstr "" +#. [src.orders.components.OrderListFilter.2415661583] - order status +#. defaultMessage is: +#. Ready to Capture +#. [src.orders.views.OrderList.readyToCapture] - order status +#. defaultMessage is: +#. Ready to Capture +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +#: build/locale/src/orders/views/OrderList/filters.json +msgctxt "order status" +msgid "Ready to Capture" +msgstr "" + #. [src.customers.components.CustomerOrders.3878642352] - section header #. defaultMessage is: #. Recent orders @@ -6227,22 +6366,14 @@ msgctxt "switch button" msgid "Release all stock allocated to this order" msgstr "" -#. [src.auth.components.LoginPage.3182284913] - login -#. defaultMessage is: -#. Remember me -#: build/locale/src/auth/components/LoginPage/LoginPage.json -msgctxt "login" -msgid "Remember me" -msgstr "" - #. [src.categories.views.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. -#. [src.categories.views.3488150607] +#. [src.categories.views.CategoryList.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "description" msgid "Remember this will also delete all products assigned to this category." msgstr "" @@ -6255,39 +6386,6 @@ msgctxt "button" msgid "Remove" msgstr "" -#. [src.products.views.490753666] - dialog header -#. defaultMessage is: -#. Remove Image -#: build/locale/src/products/views/ProductImage.json -msgctxt "dialog header" -msgid "Remove Image" -msgstr "" - -#. [src.orders.components.OrderDraftCancelDialog.500287069] - dialog header -#. defaultMessage is: -#. Remove draft order -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "dialog header" -msgid "Remove draft order" -msgstr "" - -#. [src.shipping.views.ShippingZoneDetails.254167659] - unassign country, -#. dialog header -#. defaultMessage is: -#. Remove from shipping zone -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country, dialog header" -msgid "Remove from shipping zone" -msgstr "" - -#. [src.orders.views.3880993240] -#. defaultMessage is: -#. Removed draft orders -#: build/locale/src/orders/views/OrderDraftList.json -msgctxt "description" -msgid "Removed draft orders" -msgstr "" - #. [src.pages.views.1457312643] #. defaultMessage is: #. Removed page @@ -6453,6 +6551,18 @@ msgctxt "button" msgid "Save" msgstr "" +#. [src.components.Filter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#. [src.components.TableFilter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#: build/locale/src/components/Filter/FilterSearch.json +#: build/locale/src/components/TableFilter/FilterChips.json +msgctxt "button" +msgid "Save Custom Search" +msgstr "" + #. [src.components.SaveFilterTabDialog.1514415736] - save filter tab, header #. defaultMessage is: #. Save Custom Search @@ -6461,14 +6571,6 @@ msgctxt "save filter tab, header" msgid "Save Custom Search" msgstr "" -#. [src.components.TableFilter.1514415736] - button -#. defaultMessage is: -#. Save Custom Search -#: build/locale/src/components/TableFilter/FilterChips.json -msgctxt "button" -msgid "Save Custom Search" -msgstr "" - #. [src.products.components.ProductVariantCreatePage.2853608829] - button #. defaultMessage is: #. Save variant @@ -6485,6 +6587,14 @@ msgctxt "description" msgid "Saved changes" msgstr "" +#. [src.attributes.components.AttributeListPage.3916653510] +#. defaultMessage is: +#. Search Attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "description" +msgid "Search Attribute" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.902296540] #. defaultMessage is: #. Search Attributes @@ -6501,10 +6611,30 @@ msgctxt "description" msgid "Search Categories" msgstr "" +#. [src.categories.components.CategoryListPage.3841025483] +#. defaultMessage is: +#. Search Category +#. [src.translations.components.TranslationsEntitiesListPage.3841025483] +#. defaultMessage is: +#. Search Category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Category" +msgstr "" + +#. [src.collections.components.CollectionListPage.4057224233] +#. defaultMessage is: +#. Search Collection #. [src.components.AssignCollectionDialog.4057224233] #. defaultMessage is: #. Search Collection +#. [src.translations.components.TranslationsEntitiesListPage.4057224233] +#. defaultMessage is: +#. Search Collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json #: build/locale/src/components/AssignCollectionDialog/AssignCollectionDialog.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json msgctxt "description" msgid "Search Collection" msgstr "" @@ -6517,6 +6647,14 @@ msgctxt "description" msgid "Search Countries" msgstr "" +#. [src.customers.components.CustomerListPage.1643417013] +#. defaultMessage is: +#. Search Customer +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "description" +msgid "Search Customer" +msgstr "" + #. [src.orders.components.OrderCustomer.2433460203] #. defaultMessage is: #. Search Customers @@ -6525,6 +6663,14 @@ msgctxt "description" msgid "Search Customers" msgstr "" +#. [src.orders.components.OrderDraftListPage.77765281] +#. defaultMessage is: +#. Search Draft +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "description" +msgid "Search Draft" +msgstr "" + #. [src.translations.components.TranslationsCategoriesPage.1406947243] #. defaultMessage is: #. Search Engine Description @@ -6605,6 +6751,34 @@ msgctxt "description" msgid "Search Orders..." msgstr "" +#. [src.translations.components.TranslationsEntitiesListPage.2559018090] +#. defaultMessage is: +#. Search Page +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Page" +msgstr "" + +#. [src.translations.components.TranslationsEntitiesListPage.2105464697] +#. defaultMessage is: +#. Search Product +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product" +msgstr "" + +#. [src.productTypes.components.ProductTypeListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#. [src.translations.components.TranslationsEntitiesListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product Type" +msgstr "" + #. [src.components.AssignProductDialog.2850255786] #. defaultMessage is: #. Search Products @@ -6617,14 +6791,46 @@ msgctxt "description" msgid "Search Products" msgstr "" -#. [src.products.components.ProductListPage.3550330425] +#. [src.products.components.ProductListFilter.3550330425] #. defaultMessage is: #. Search Products... -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Search Products..." msgstr "" +#. [src.discounts.components.SaleListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#. [src.translations.components.TranslationsEntitiesListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Sale" +msgstr "" + +#. [src.staff.components.StaffListPage.61043583] +#. defaultMessage is: +#. Search Staff Member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "description" +msgid "Search Staff Member" +msgstr "" + +#. [src.discounts.components.VoucherListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#. [src.translations.components.TranslationsEntitiesListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Voucher" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.524117994] #. defaultMessage is: #. Search by attribute name @@ -6731,10 +6937,10 @@ msgctxt "description" msgid "Select all orders where:" msgstr "" -#. [src.products.components.ProductListPage.1421689426] +#. [src.products.components.ProductListFilter.1421689426] #. defaultMessage is: #. Select all products where: -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Select all products where:" msgstr "" @@ -6820,6 +7026,14 @@ msgctxt "description" msgid "Set plugin as Active" msgstr "" +#. [src.components.VisibilityCard.292404896] +#. defaultMessage is: +#. Set publication date +#: build/locale/src/components/VisibilityCard/VisibilityCard.json +msgctxt "description" +msgid "Set publication date" +msgstr "" + #. [src.discounts.shipment] - voucher discount #. defaultMessage is: #. Shipment @@ -7085,6 +7299,14 @@ msgctxt "staff section name" msgid "Staff Members" msgstr "" +#. [src.configuration.3140151600] +#. defaultMessage is: +#. Staff Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Staff Settings" +msgstr "" + #. [src.standard] - tax rate #. defaultMessage is: #. Standard @@ -8069,10 +8291,10 @@ msgctxt "payment status" msgid "Unpaid" msgstr "" -#. [src.collections.views.2237014112] - unpublish collections +#. [src.collections.views.CollectionList.2237014112] - unpublish collections #. defaultMessage is: #. Unpublish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "unpublish collections" msgid "Unpublish" msgstr "Չհրապարակել" @@ -8109,10 +8331,10 @@ msgctxt "dialog header" msgid "Unpublish Products" msgstr "" -#. [src.collections.views.2637364047] - dialog title +#. [src.collections.views.CollectionList.2637364047] - dialog title #. defaultMessage is: #. Unpublish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Unpublish collections" msgstr "" @@ -8612,6 +8834,22 @@ msgctxt "description" msgid "ZIP / Postal code" msgstr "" +#. [src.productTypes.components.ProductTypeListPage.3479705616] - button +#. defaultMessage is: +#. create product type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "button" +msgid "create product type" +msgstr "" + +#. [src.staff.views.1308770978] - dialog header +#. defaultMessage is: +#. delete Staff User +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "dialog header" +msgid "delete Staff User" +msgstr "" + #. [orderPaymentVATDoesNotApply] - vat not included in order price #. defaultMessage is: #. does not apply @@ -8685,19 +8923,35 @@ msgctxt "product status is set as" msgid "is set as" msgstr "" -#. [src.staff.views.2240444792] - dialog header -#. defaultMessage is: -#. remove Staff User -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "dialog header" -msgid "remove Staff User" -msgstr "" - -#. [src.components.VisibilityCard.1815688500] +#. [src.collections.components.CollectionCreatePage.1815688500] - collection #. defaultMessage is: #. since {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.1815688500] - collection +#. defaultMessage is: +#. since {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "since {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.1815688500] - page +#. defaultMessage is: +#. since {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "since {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#. [src.products.components.ProductUpdatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "since {date}" msgstr "" @@ -8725,11 +8979,35 @@ msgctxt "weight" msgid "to {value} {unit}" msgstr "" -#. [src.components.VisibilityCard.2001551496] +#. [src.collections.components.CollectionCreatePage.2001551496] - collection #. defaultMessage is: #. will be visible from {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.2001551496] - collection +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "will be visible from {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.2001551496] - page +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "will be visible from {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#. [src.products.components.ProductUpdatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "will be visible from {date}" msgstr "" diff --git a/locale/id.json b/locale/id.json index 5856b1654..894cacfac 100644 --- a/locale/id.json +++ b/locale/id.json @@ -1 +1 @@ -{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.350498821":"Tambahkan atribut","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.2519239682":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"Nama","src.categories.components.CategoryProducts.636461959":"Nama","src.collections.components.CollectionProducts.636461959":"Nama","src.products.components.ProductDetailsForm.636461959":"Nama","src.collections.components.CollectionDetails.636461959":"Nama","src.components.ProductList.636461959":"Nama","src.discounts.components.SaleInfo.636461959":"Nama","src.discounts.components.SaleList.636461959":"Nama","src.discounts.components.SaleSummary.636461959":"Nama","menuItemDialogNameLabel":"Nama","src.products.components.ProductVariants.636461959":"Nama","src.shipping.components.ShippingZoneRates.636461959":"Nama","src.shipping.components.ShippingZonesList.636461959":"Nama","src.staff.components.StaffList.636461959":"Nama","src.translations.components.TranslationsEntitiesList.636461959":"Nama","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.254756045":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.3182284913":"","src.auth.components.LoginPage.109182747":"Masuk","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"","src.categories.views.2004894945":"","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.3229914152":"","src.categories.components.CategoryList.435697837":"","src.categories.components.CategoryList.2159874182":"Sub Kategori","src.categories.components.CategoryUpdatePage.2159874182":"Sub Kategori","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.228151782":"Tambah kategori","src.categories.components.CategoryProducts.2968663655":"Daftar produk","src.categories.components.CategoryUpdatePage.2968663655":"Daftar produk","src.discounts.components.DiscountCategories.2968663655":"Daftar produk","src.discounts.components.DiscountCollections.2968663655":"Daftar produk","src.products":"Daftar produk","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryProducts.3554578821":"Tambahkan produk","src.categories.components.CategoryProductsCard.3554578821":"Tambahkan produk","src.categories.components.CategoryProducts.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProducts.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.categories.components.CategoryProductsCard.4164156574":"","src.categories.views.1754466114":"","src.categories.views.1140231710":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.712767046":"","src.categories.views.299584400":"","src.categories.views.844574071":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.collections.components.CollectionCreatePage.3958681866":"Tambah koleksi","src.collections.components.CollectionListPage.3958681866":"Tambah koleksi","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"Ketersediaan","src.availability":"","src.collections.components.CollectionList.3640454975":"Diterbitkan","src.collections.components.CollectionProducts.3640454975":"Diterbitkan","src.discounts.components.DiscountProducts.3640454975":"Diterbitkan","src.components.ProductList.3640454975":"Diterbitkan","src.products.components.ProductListPage.3640454975":"Diterbitkan","src.pages.components.PageList.3640454975":"Diterbitkan","src.products.views.ProductList.published":"Diterbitkan","src.collections.components.CollectionList.2341910657":"Tidak diterbitkan","src.collections.components.CollectionProducts.2341910657":"Tidak diterbitkan","src.discounts.components.DiscountProducts.2341910657":"Tidak diterbitkan","src.components.ProductList.2341910657":"Tidak diterbitkan","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.686910896":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"","src.collections.views.2402899582":"","src.collections.views.2237014112":"Tidak terbit","src.pages.views.2237014112":"Tidak terbit","src.products.views.ProductList.2237014112":"Tidak terbit","src.collections.views.1547167026":"Terbit","src.pages.views.1547167026":"Terbit","src.products.views.ProductList.1547167026":"Terbit","src.collections.views.2823425739":"","src.collections.views.1348793822":"","src.collections.views.2637364047":"","src.collections.views.3944356444":"","src.collections.views.3817188998":"","src.collections.views.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"Keluar","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.4057224233":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"","src.components.ErrorMessageCard.2845142593":"","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.FilterBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"Tambah","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.ProductList.1134347598":"Harga","src.orders.components.OrderDraftDetailsProducts.1134347598":"Harga","src.orders.components.OrderFulfillment.1134347598":"Harga","src.products.components.ProductListPage.1134347598":"Harga","src.products.components.ProductPricing.1134347598":"Harga","src.orders.components.OrderUnfulfilledItems.1134347598":"Harga","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"Harga","src.shipping.components.ShippingZoneRates.1134347598":"Harga","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"Visibilitas","src.pages.components.PageList.1459686496":"Visibilitas","src.products.components.ProductListFilter.1459686496":"Visibilitas","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"Tersembunyi","src.products.views.ProductList.hidden":"Tersembunyi","src.components.VisibilityCard.1815688500":"","src.components.VisibilityCard.2001551496":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","configurationMenuStaff":"","configurationMenuShipping":"","configurationMenuTaxes":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","src.customers.components.CustomerAddress.1320082647":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"Alamat tagihan","src.customers.components.CustomerAddresses.3517722732":"Alamat pengiriman","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"Alamat","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"Catatan","src.orders.components.OrderCustomerNote.1520756907":"Catatan","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"Catatan","src.customers.components.CustomerDetails.577013340":"Catatan","src.customers.components.CustomerCreatePage.1934221653":"Tambah pelanggan","src.customers.components.CustomerListPage.1934221653":"Tambah pelanggan","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerOrders.3878642352":"Pesanan terbaru","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"Tanggal","src.orders.components.OrderDraftList.4205493358":"Tanggal","src.orders.components.OrderList.4205493358":"Tanggal","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"Status","src.orders.components.OrderListFilter.1756106276":"Status","src.products.components.ProductListFilter.1756106276":"Status","src.products.components.ProductVariants.1756106276":"Status","src.customers.components.CustomerOrders.878013594":"Total","src.orders.components.OrderDraftDetailsProducts.878013594":"Total","src.orders.components.OrderDraftDetailsSummary.878013594":"Total","src.orders.components.OrderDraftList.878013594":"Total","src.orders.components.OrderFulfillment.878013594":"Total","src.orders.components.OrderUnfulfilledItems.878013594":"Total","src.orders.components.OrderList.878013594":"Total","src.orders.components.OrderPayment.878013594":"Total","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.1946482599":"","src.customers.views.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"Nominal","src.discounts.components.SaleSummary.1148029984":"Nominal","src.discounts.components.VoucherList.1148029984":"Nominal","src.discounts.components.VoucherSummary.1148029984":"Nominal","src.discounts.components.VoucherValue.1148029984":"Nominal","src.products.components.ProductAttributes.1148029984":"Nominal","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.1742771332":"","src.discounts.components.SalePricing.1099355007":"Harga","src.products.components.ProductPricing.1099355007":"Harga","src.products.components.ProductVariantPrice.1099355007":"Harga","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"Negara","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"Kode","src.discounts.components.VoucherSummary.78726751":"Kode","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.1536809153":"Tambahkan voucher","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"Produk tertentu","src.discounts.shipment":"Pengiriman","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.2809303671":"","src.discounts.views.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.367317371":"","src.discounts.views.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"Batal","src.orders.views.OrderList.3528672691":"Batal","src.confirm":"","src.delete":"","src.edit":"Edit","src.manage":"","src.remove":"Hapus","src.save":"Simpan","src.show":"","src.undo":"","src.attributes":"Atribut","src.products.components.ProductAttributes.4153345096":"Atribut","src.categories":"Kategori","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"Koleksi","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"Konfigurasi","src.customers":"Pelanggan","src.draftOrders":"","src.home":"Beranda","src.navigation":"Navigasi","src.orders":"Pesanan","src.pages":"Halaman","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"Penjualan","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"Pajak","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"Pajak","src.taxes.components.CountryListPage.3955023266":"Pajak","src.translations":"","src.vouchers":"Voucher","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"","src.partiallyPaid":"","src.partiallyRefunded":"Dikembalikan sebagian","src.refunded":"Pengembalian dana sepenuhnya","src.unpaid":"","src.cancelled":"","src.draft":"Draf","src.fulfilled":"Terpenuhi","src.orders.views.OrderList.fulfilled":"Terpenuhi","src.orders.components.OrderListFilter.1712863026":"Terpenuhi","src.partiallyFulfilled":"Sebagian terpenuhi","src.unfulfilled":"Tidak terpenuhi","src.orders.views.OrderList.unfulfilled":"Tidak terpenuhi","src.orders.components.OrderListFilter.1751787272":"Tidak terpenuhi","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","src.1395232177":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"Tautan","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"Batalkan pesanan","src.orders.components.OrderDetailsPage.1854613983":"Batalkan pesanan","src.orders.components.OrderDraftPage.1854613983":"Batalkan pesanan","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"Pelanggan","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"Pelanggan","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"Sama seperti alamat pengiriman","src.orders.components.OrderCustomerEditDialog.1411666943":"Edit detail pelanggan","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.500287069":"Hapus draf pesanan","src.orders.components.OrderDraftCancelDialog.3199827590":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"Produk","src.orders.components.OrderUnfulfilledItems.1895667608":"Produk","src.orders.components.OrderDraftDetailsProducts.2796503714":"Jumlah","src.orders.components.OrderFulfillment.2796503714":"Jumlah","src.orders.components.OrderFulfillmentDialog.2796503714":"Jumlah","src.orders.components.OrderUnfulfilledItems.2796503714":"Jumlah","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"Subtotal","src.orders.components.OrderPayment.781550514":"Subtotal","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"Buat pesanan","src.orders.components.OrderListPage.2826235371":"Buat pesanan","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"Tambahkan pelacakan","src.orders.components.OrderFulfillmentCancelDialog.732594284":"Batalkan Pemenuhan","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"Batalkan pemenuhan","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"SKU","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"Melacak nomor","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.2574162126":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"Pesanan sudah dibayar penuh","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"Pesanan telah dicatat","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"Pembayaran","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2943502192":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"Pengiriman","src.productTypes.components.ProductTypeShipping.1325966144":"Pengiriman","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"Pengiriman","src.orders.components.OrderPayment.3768782744":"Jumlah yang diotorisasi","src.orders.components.OrderPayment.2320183694":"Jumlah yang direkam","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"Rekaman","src.orders.components.OrderPayment.2845258362":"Pengembalian dana","src.orders.components.OrderPayment.2444197639":"Kosong","src.orders.components.OrderPayment.3500506678":"Telah dibayar","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"Jumlah","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.2775402904":"","src.products.components.ProductListPage.2775402904":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"Penuhi","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.3880993240":"","src.orders.views.1161115149":"","src.orders.views.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.755314116":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"Judul","src.pages.components.PageList.1124600214":"Judul","src.pages.components.PageInfo.1116746286":"Isi","src.translations.components.TranslationsPagesPage.1116746286":"Isi","src.pages.components.PageList.3478065224":"Slug","src.pages.components.PageSlug.3478065224":"Slug","src.productTypes.components.ProductTypeAttributes.3478065224":"Slug","src.pages.components.PageList.3767550649":"","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.1767905232":"Tambah halaman","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.3785394515":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"Nilai","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"Gambar","src.products.components.ProductVariantImages.3240888698":"Gambar","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"","src.products.components.ProductVariantStock.3841616483":"","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListPage.821159718":"","src.products.components.ProductListPage.1421689426":"","src.products.components.ProductListPage.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"Inventaris","prodictStockInventoryLabel":"Inventaris","src.products.components.ProductVariantStock.3490038570":"Inventaris","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"","src.products.components.ProductVariants.2153006789":"","src.products.components.ProductVariantNavigation.2845381934":"Tambahkan varian","src.products.components.ProductVariants.2845381934":"Tambahkan varian","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1542417144":"","src.products.views.1591632382":"","src.products.views.490753666":"","src.products.views.672103788":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.1694086800":"","src.products.views.ProductList.224127438":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.products.views.2178905289":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1756957616":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.889729490":"Tambahkan jenis produk","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.4080551769":"","src.productTypes.views.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.352297149":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2474410767":"Tambahkan zona pengiriman","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.254167659":"","src.shipping.views.ShippingZoneDetails.1790261672":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"Kunci","src.siteSettings.components.SiteSettingsKeys.2446088470":"Kunci","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.3490059488":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"Izin","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.3247064221":"Aktif","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.802625341":"Tambahkan anggota staf","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"Pengguna aktif","src.staff.views.2240444792":"","src.staff.views.2728048444":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file +{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.3824684885":"","src.attributes.components.AttributeListPage.2417065806":"","src.attributes.components.AttributeListPage.3916653510":"","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.4048785456":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"Nama","src.categories.components.CategoryProductList.636461959":"Nama","src.components.ProductList.636461959":"Nama","src.products.components.ProductList.636461959":"Nama","src.collections.components.CollectionDetails.636461959":"Nama","src.collections.components.CollectionProducts.636461959":"Nama","src.products.components.ProductDetailsForm.636461959":"Nama","src.discounts.components.SaleInfo.636461959":"Nama","src.discounts.components.SaleList.636461959":"Nama","src.discounts.components.SaleSummary.636461959":"Nama","menuItemDialogNameLabel":"Nama","src.plugins.components.PluginsList.636461959":"Nama","src.products.components.ProductVariants.636461959":"Nama","src.shipping.components.ShippingZoneRates.636461959":"Nama","src.shipping.components.ShippingZonesList.636461959":"Nama","src.staff.components.StaffList.636461959":"Nama","src.translations.components.TranslationsEntitiesList.636461959":"Nama","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.351422234":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.109182747":"Masuk","src.auth.components.LoginPage.4028609483":"","src.auth.components.NewPasswordPage.1915811227":"","src.auth.components.NewPasswordPage.1254879564":"","src.auth.components.NewPasswordPage.2799926859":"","src.auth.components.NewPasswordPage.4253911811":"","src.auth.components.NewPasswordPage.2342634351":"","src.auth.components.ResetPasswordPage.2370700732":"","src.auth.components.ResetPasswordPage.3663311080":"","src.auth.components.ResetPasswordSuccessPage.4066297200":"","src.auth.components.ResetPasswordSuccessPage.2245157344":"","src.auth.views.2388238158":"","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"","src.categories.views.2004894945":"","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.2159874182":"Sub Kategori","src.categories.components.CategoryUpdatePage.2159874182":"Sub Kategori","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.1140231710":"","src.categories.views.1140231710":"","src.categories.components.CategoryListPage.4294878092":"","src.categories.components.CategoryListPage.3841025483":"","src.translations.components.TranslationsEntitiesListPage.3841025483":"","src.categories.components.CategoryProductList.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductList.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProductList.3640454975":"Diterbitkan","src.components.ProductList.3640454975":"Diterbitkan","src.products.components.ProductList.3640454975":"Diterbitkan","src.products.components.ProductListPage.3640454975":"Diterbitkan","productStatusLabel":"Diterbitkan","src.collections.components.CollectionList.3640454975":"Diterbitkan","src.collections.components.CollectionProducts.3640454975":"Diterbitkan","src.discounts.components.DiscountProducts.3640454975":"Diterbitkan","src.pages.components.PageList.3640454975":"Diterbitkan","src.products.views.ProductList.published":"Diterbitkan","src.categories.components.CategoryProductList.1134347598":"Harga","src.orders.components.OrderFulfillment.1134347598":"Harga","src.products.components.ProductList.1134347598":"Harga","src.products.components.ProductListPage.1134347598":"Harga","src.products.components.ProductPricing.1134347598":"Harga","src.components.ProductList.1134347598":"Harga","src.orders.components.OrderDraftDetailsProducts.1134347598":"Harga","src.orders.components.OrderUnfulfilledItems.1134347598":"Harga","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"Harga","src.shipping.components.ShippingZoneRates.1134347598":"Harga","src.categories.components.CategoryProductList.2341910657":"Tidak diterbitkan","src.products.components.ProductList.2341910657":"Tidak diterbitkan","src.collections.components.CollectionList.2341910657":"Tidak diterbitkan","src.collections.components.CollectionProducts.2341910657":"Tidak diterbitkan","src.discounts.components.DiscountProducts.2341910657":"Tidak diterbitkan","src.components.ProductList.2341910657":"Tidak diterbitkan","src.categories.components.CategoryProductList.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.products.components.ProductList.1657559629":"","src.categories.components.CategoryProducts.4164156574":"","src.categories.components.CategoryProducts.3554578821":"Tambahkan produk","src.categories.components.CategoryUpdatePage.2968663655":"Daftar produk","src.discounts.components.DiscountCategories.2968663655":"Daftar produk","src.discounts.components.DiscountCollections.2968663655":"Daftar produk","src.products":"Daftar produk","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryUpdatePage.3229914152":"","src.categories.components.CategoryUpdatePage.770296100":"","src.categories.views.1754466114":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.CategoryList.3488150607":"","src.categories.views.712767046":"","src.categories.views.CategoryList.712767046":"","src.categories.views.299584400":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.categories.views.CategoryList.2144707585":"","src.collections.components.CollectionCreatePage.3958681866":"Tambah koleksi","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionCreatePage.2001551496":"","src.collections.components.CollectionDetailsPage.2001551496":"","src.pages.components.PageDetailsPage.2001551496":"","src.products.components.ProductCreatePage.2001551496":"","src.products.components.ProductUpdatePage.2001551496":"","src.collections.components.CollectionCreatePage.1815688500":"","src.collections.components.CollectionDetailsPage.1815688500":"","src.pages.components.PageDetailsPage.1815688500":"","src.products.components.ProductCreatePage.1815688500":"","src.products.components.ProductUpdatePage.1815688500":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"Ketersediaan","src.availability":"","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionListPage.686910896":"","src.collections.views.686910896":"","src.collections.components.CollectionListPage.1631917001":"","src.collections.components.CollectionListPage.4057224233":"","src.components.AssignCollectionDialog.4057224233":"","src.translations.components.TranslationsEntitiesListPage.4057224233":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"","src.collections.views.2402899582":"","src.collections.views.CollectionList.2237014112":"Tidak terbit","src.pages.views.2237014112":"Tidak terbit","src.products.views.ProductList.2237014112":"Tidak terbit","src.collections.views.CollectionList.1547167026":"Terbit","src.pages.views.1547167026":"Terbit","src.products.views.ProductList.1547167026":"Terbit","src.collections.views.CollectionList.2823425739":"","src.collections.views.CollectionList.1348793822":"","src.collections.views.CollectionList.2637364047":"","src.collections.views.CollectionList.3944356444":"","src.collections.views.CollectionList.3817188998":"","src.collections.views.CollectionList.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"Keluar","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"","src.components.ErrorMessageCard.2845142593":"","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.Filter.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.Filter.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.FilterBar.2340527467":"","src.components.SearchBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"Tambah","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"Visibilitas","src.pages.components.PageList.1459686496":"Visibilitas","src.products.components.ProductListFilter.1459686496":"Visibilitas","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"Tersembunyi","src.products.views.ProductList.hidden":"Tersembunyi","src.components.VisibilityCard.292404896":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","src.configuration.2326418019":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","src.configuration.3655543906":"","configurationMenuShipping":"","configurationMenuTaxes":"","src.configuration.3140151600":"","configurationMenuStaff":"","src.configuration.1233229030":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","configurationPluginsPages":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"Alamat tagihan","src.customers.components.CustomerAddresses.3517722732":"Alamat pengiriman","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"Alamat","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"Catatan","src.orders.components.OrderCustomerNote.1520756907":"Catatan","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"Catatan","src.customers.components.CustomerDetails.577013340":"Catatan","src.customers.components.CustomerCreatePage.1934221653":"Tambah pelanggan","src.customers.components.CustomerListPage.1934221653":"Tambah pelanggan","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerListPage.477293306":"","src.customers.components.CustomerListPage.1643417013":"","src.customers.components.CustomerOrders.3878642352":"Pesanan terbaru","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"Tanggal","src.orders.components.OrderDraftList.4205493358":"Tanggal","src.orders.components.OrderList.4205493358":"Tanggal","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"Status","src.orders.components.OrderListFilter.1756106276":"Status","src.plugins.components.PluginInfo.1756106276":"Status","src.products.components.ProductListFilter.1756106276":"Status","src.products.components.ProductVariants.1756106276":"Status","src.customers.components.CustomerOrders.878013594":"Total","src.orders.components.OrderDraftDetailsProducts.878013594":"Total","src.orders.components.OrderDraftDetailsSummary.878013594":"Total","src.orders.components.OrderDraftList.878013594":"Total","src.orders.components.OrderFulfillment.878013594":"Total","src.orders.components.OrderUnfulfilledItems.878013594":"Total","src.orders.components.OrderList.878013594":"Total","src.orders.components.OrderPayment.878013594":"Total","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.CustomerList.1946482599":"","src.customers.views.CustomerList.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","src.discounts.components.SaleListPage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"Nominal","src.discounts.components.SaleSummary.1148029984":"Nominal","src.discounts.components.VoucherList.1148029984":"Nominal","src.discounts.components.VoucherSummary.1148029984":"Nominal","src.discounts.components.VoucherValue.1148029984":"Nominal","src.products.components.ProductAttributes.1148029984":"Nominal","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.3907768880":"","src.discounts.components.SaleListPage.1866913828":"","src.translations.components.TranslationsEntitiesListPage.1866913828":"","src.discounts.components.SalePricing.1099355007":"Harga","src.products.components.ProductPricing.1099355007":"Harga","src.products.components.ProductVariantPrice.1099355007":"Harga","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"Negara","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"Kode","src.discounts.components.VoucherSummary.78726751":"Kode","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.614836274":"","src.discounts.components.VoucherListPage.1112241061":"","src.discounts.components.VoucherListPage.1930485532":"","src.translations.components.TranslationsEntitiesListPage.1930485532":"","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"Produk tertentu","src.discounts.shipment":"Pengiriman","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.SaleList.2809303671":"","src.discounts.views.SaleList.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.VoucherList.367317371":"","src.discounts.views.VoucherList.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.somethingWentWrong":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"Batal","src.orders.views.OrderList.3528672691":"Batal","src.confirm":"","src.delete":"","src.edit":"Edit","src.manage":"","src.remove":"Hapus","src.save":"Simpan","src.show":"","src.undo":"","src.attributes":"Atribut","src.products.components.ProductAttributes.4153345096":"Atribut","src.categories":"Kategori","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"Koleksi","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"Konfigurasi","src.customers":"Pelanggan","src.draftOrders":"","src.home":"Beranda","src.navigation":"Navigasi","src.orders":"Pesanan","src.pages":"Halaman","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.plugins":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"Penjualan","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"Pajak","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"Pajak","src.taxes.components.CountryListPage.3955023266":"Pajak","src.translations":"","src.vouchers":"Voucher","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"","src.partiallyPaid":"","src.partiallyRefunded":"Dikembalikan sebagian","src.refunded":"Pengembalian dana sepenuhnya","src.unpaid":"","src.cancelled":"","src.draft":"Draf","src.fulfilled":"Terpenuhi","src.orders.views.OrderList.fulfilled":"Terpenuhi","src.orders.components.OrderListFilter.1712863026":"Terpenuhi","src.partiallyFulfilled":"Sebagian terpenuhi","src.unfulfilled":"Tidak terpenuhi","src.orders.views.OrderList.unfulfilled":"Tidak terpenuhi","src.orders.components.OrderListFilter.1751787272":"Tidak terpenuhi","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"Tautan","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"Batalkan pesanan","src.orders.components.OrderDetailsPage.1854613983":"Batalkan pesanan","src.orders.components.OrderDraftPage.1854613983":"Batalkan pesanan","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"Pelanggan","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"Pelanggan","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"Sama seperti alamat pengiriman","src.orders.components.OrderCustomerEditDialog.1411666943":"Edit detail pelanggan","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.632633254":"","src.orders.components.OrderDraftCancelDialog.36681973":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"Produk","src.orders.components.OrderUnfulfilledItems.1895667608":"Produk","src.orders.components.OrderDraftDetailsProducts.2796503714":"Jumlah","src.orders.components.OrderFulfillment.2796503714":"Jumlah","src.orders.components.OrderFulfillmentDialog.2796503714":"Jumlah","src.orders.components.OrderUnfulfilledItems.2796503714":"Jumlah","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"Subtotal","src.orders.components.OrderPayment.781550514":"Subtotal","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"Buat pesanan","src.orders.components.OrderListPage.2826235371":"Buat pesanan","src.orders.components.OrderDraftListPage.551325728":"","src.orders.components.OrderDraftListPage.77765281":"","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"Tambahkan pelacakan","src.orders.components.OrderFulfillmentCancelDialog.732594284":"Batalkan Pemenuhan","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"Batalkan pemenuhan","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"SKU","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"Melacak nomor","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.4067959693":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"Pesanan sudah dibayar penuh","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"Pesanan telah dicatat","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"Pembayaran","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2415661583":"","src.orders.views.OrderList.readyToCapture":"","src.orders.components.OrderListFilter.2222765704":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"Pengiriman","src.productTypes.components.ProductTypeShipping.1325966144":"Pengiriman","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"Pengiriman","src.orders.components.OrderPayment.3768782744":"Jumlah yang diotorisasi","src.orders.components.OrderPayment.2320183694":"Jumlah yang direkam","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"Rekaman","src.orders.components.OrderPayment.2845258362":"Pengembalian dana","src.orders.components.OrderPayment.2444197639":"Kosong","src.orders.components.OrderPayment.3500506678":"Telah dibayar","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"Jumlah","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.1542417144":"","src.products.components.ProductListPage.1542417144":"","src.products.views.1542417144":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"Penuhi","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.OrderDraftList.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.OrderDraftList.1648805446":"","src.orders.views.OrderDraftList.1161115149":"","src.orders.views.OrderDraftList.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.1068617485":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"Judul","src.pages.components.PageList.1124600214":"Judul","src.pages.components.PageInfo.1116746286":"Isi","src.translations.components.TranslationsPagesPage.1116746286":"Isi","src.pages.components.PageList.3478065224":"Slug","src.pages.components.PageSlug.3478065224":"Slug","src.productTypes.components.ProductTypeAttributes.3478065224":"Slug","src.pages.components.PageList.3767550649":"","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.3785394515":"","src.pages.views.3785394515":"","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.plugins.components.PluginInfo.3425535100":"","src.plugins.components.PluginsDetailsPage.3425535100":"","src.plugins.components.PluginInfo.1049131348":"","src.plugins.components.PluginInfo.4013064767":"","src.plugins.components.PluginsDetailsPage.3352026836":"","src.plugins.components.PluginsDetailsPage.2277745418":"","src.plugins.components.PluginsDetailsPage.1970881031":"","src.plugins.components.PluginSettings.1970881031":"","src.plugins.components.PluginsDetailsPage.4241018152":"","src.plugins.components.PluginsList.3247064221":"Aktif","src.staff.components.StaffList.3247064221":"Aktif","src.plugins.components.PluginsList.4120604650":"","src.plugins.components.PluginsList.666641390":"","src.plugins.views.100549097":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"Nilai","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"Gambar","src.products.components.ProductVariantImages.3240888698":"Gambar","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"","src.products.components.ProductVariantStock.3841616483":"","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListFilter.821159718":"","src.products.components.ProductListFilter.1421689426":"","src.products.components.ProductListFilter.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"Inventaris","prodictStockInventoryLabel":"Inventaris","src.products.components.ProductVariantStock.3490038570":"Inventaris","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"","src.products.components.ProductVariants.2153006789":"","src.products.components.ProductVariantNavigation.2845381934":"Tambahkan varian","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.3989383405":"","src.products.views.3989383405":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1591632382":"","src.products.views.1731766393":"","src.products.views.2880386427":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1217376589":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.3479705616":"","src.productTypes.components.ProductTypeListPage.1776073799":"","src.productTypes.components.ProductTypeListPage.3420445375":"","src.translations.components.TranslationsEntitiesListPage.3420445375":"","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.ProductTypeList.4080551769":"","src.productTypes.views.ProductTypeList.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRates.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2673544109":"","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.1947090060":"","src.shipping.views.ShippingZoneDetails.131963671":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"Kunci","src.siteSettings.components.SiteSettingsKeys.2446088470":"Kunci","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.1481503299":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"Izin","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.797461521":"","src.staff.components.StaffListPage.2852350932":"","src.staff.components.StaffListPage.61043583":"","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"Pengguna aktif","src.staff.views.1308770978":"","src.staff.views.8878988":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.2105464697":"","src.translations.components.TranslationsEntitiesListPage.2559018090":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file diff --git a/locale/id.po b/locale/id.po index d39ffd166..68c3dc7c7 100644 --- a/locale/id.po +++ b/locale/id.po @@ -5,7 +5,7 @@ # msgid "" msgstr "" -"POT-Creation-Date: 2019-09-06T13:56:36.897Z\n" +"POT-Creation-Date: 2019-09-16T15:25:09.340Z\n" "Last-Translator: Chetabahana , 2019\n" "Language-Team: Indonesian (https://www.transifex.com/mirumee/teams/34782/id/)\n" "MIME-Version: 1.0\n" @@ -143,22 +143,6 @@ msgctxt "create new menu item, header" msgid "Add Item" msgstr "" -#. [menuCreateDialogHeader] - dialog header -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json -msgctxt "dialog header" -msgid "Add Menu" -msgstr "" - -#. [menuListPageAddMenu] - button -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json -msgctxt "button" -msgid "Add Menu" -msgstr "" - #. [src.siteSettings.components.SiteSettingsKeyDialog.1238948746] - dialog #. header #. defaultMessage is: @@ -168,14 +152,6 @@ msgctxt "dialog header" msgid "Add New Authorization Key" msgstr "" -#. [src.pages.components.PageDetailsPage.755314116] - page header -#. defaultMessage is: -#. Add Page -#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json -msgctxt "page header" -msgid "Add Page" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.2892088870] - dialog header #. defaultMessage is: #. Add Price Rate @@ -184,38 +160,6 @@ msgctxt "dialog header" msgid "Add Price Rate" msgstr "" -#. [src.orders.components.OrderProductAddDialog.2775402904] - dialog header -#. defaultMessage is: -#. Add Product -#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json -msgctxt "dialog header" -msgid "Add Product" -msgstr "" - -#. [src.products.components.ProductListPage.2775402904] - button -#. defaultMessage is: -#. Add Product -#: build/locale/src/products/components/ProductListPage/ProductListPage.json -msgctxt "button" -msgid "Add Product" -msgstr "" - -#. [src.discounts.components.SaleListPage.1742771332] - button -#. defaultMessage is: -#. Add Sale -#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json -msgctxt "button" -msgid "Add Sale" -msgstr "" - -#. [src.staff.components.StaffAddMemberDialog.3490059488] - dialog header -#. defaultMessage is: -#. Add Staff Member -#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json -msgctxt "dialog header" -msgid "Add Staff Member" -msgstr "" - #. [src.attributes.components.AttributeValueEditDialog.1841790893] - add #. attribute value #. defaultMessage is: @@ -225,14 +169,6 @@ msgctxt "add attribute value" msgid "Add Value" msgstr "" -#. [src.products.views.2178905289] - header -#. defaultMessage is: -#. Add Variant -#: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "header" -msgid "Add Variant" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.1397795758] - add weight #. based shipping method, dialog header #. defaultMessage is: @@ -250,14 +186,6 @@ msgctxt "button" msgid "Add address" msgstr "" -#. [src.attributes.components.AttributeListPage.350498821] - button -#. defaultMessage is: -#. Add attribute -#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json -msgctxt "button" -msgid "Add attribute" -msgstr "Tambahkan atribut" - #. [src.siteSettings.components.SiteSettingsKeyDialog.50561933] - button #. defaultMessage is: #. Add authentication @@ -266,14 +194,6 @@ msgctxt "button" msgid "Add authentication" msgstr "" -#. [src.categories.components.CategoryListPage.228151782] - button -#. defaultMessage is: -#. Add category -#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json -msgctxt "button" -msgid "Add category" -msgstr "Tambah kategori" - #. [src.collections.components.CollectionCreatePage.3958681866] - page header #. defaultMessage is: #. Add collection @@ -282,14 +202,6 @@ msgctxt "page header" msgid "Add collection" msgstr "Tambah koleksi" -#. [src.collections.components.CollectionListPage.3958681866] - button -#. defaultMessage is: -#. Add collection -#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json -msgctxt "button" -msgid "Add collection" -msgstr "Tambah koleksi" - #. [src.customers.components.CustomerCreatePage.1934221653] - page header #. defaultMessage is: #. Add customer @@ -322,14 +234,6 @@ msgctxt "button" msgid "Add key" msgstr "" -#. [menuItemsAddItem] - add new menu item -#. defaultMessage is: -#. Add new item -#: build/locale/src/navigation/components/MenuItems/MenuItems.json -msgctxt "add new menu item" -msgid "Add new item" -msgstr "" - #. [menuItemsPlaceholder] #. defaultMessage is: #. Add new menu item to begin creating menu @@ -364,14 +268,6 @@ msgctxt "button" msgid "Add or Edit Link" msgstr "" -#. [src.pages.components.PageListPage.1767905232] - button -#. defaultMessage is: -#. Add page -#: build/locale/src/pages/components/PageListPage/PageListPage.json -msgctxt "button" -msgid "Add page" -msgstr "Tambah halaman" - #. [src.categories.components.CategoryProducts.3554578821] - button #. defaultMessage is: #. Add product @@ -380,14 +276,6 @@ msgctxt "button" msgid "Add product" msgstr "Tambahkan produk" -#. [src.productTypes.components.ProductTypeListPage.889729490] - button -#. defaultMessage is: -#. Add product type -#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json -msgctxt "button" -msgid "Add product type" -msgstr "Tambahkan jenis produk" - #. [src.orders.components.OrderDraftDetails.2528459381] - button #. defaultMessage is: #. Add products @@ -396,14 +284,6 @@ msgctxt "button" msgid "Add products" msgstr "" -#. [src.shipping.components.ShippingZoneRates.352297149] - button -#. defaultMessage is: -#. Add rate -#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json -msgctxt "button" -msgid "Add rate" -msgstr "" - #. [src.categories.components.CategoryCreatePage.2563994280] #. defaultMessage is: #. Add search engine title and description to make this category easier to @@ -465,30 +345,6 @@ msgctxt "button" msgid "Add shipping carrier" msgstr "" -#. [src.shipping.components.ShippingZonesList.2474410767] - button -#. defaultMessage is: -#. Add shipping zone -#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json -msgctxt "button" -msgid "Add shipping zone" -msgstr "Tambahkan zona pengiriman" - -#. [src.staff.components.StaffListPage.802625341] - button -#. defaultMessage is: -#. Add staff member -#: build/locale/src/staff/components/StaffListPage/StaffListPage.json -msgctxt "button" -msgid "Add staff member" -msgstr "Tambahkan anggota staf" - -#. [src.categories.components.CategoryList.435697837] - button -#. defaultMessage is: -#. Add subcategory -#: build/locale/src/categories/components/CategoryList/CategoryList.json -msgctxt "button" -msgid "Add subcategory" -msgstr "" - #. [src.attributes.components.AttributeProperties.673770329] - add attribute #. as column in product list table #. defaultMessage is: @@ -516,35 +372,14 @@ msgctxt "dialog header" msgid "Add tracking code" msgstr "" -#. [src.attributes.components.AttributeValues.254756045] - add attribute value -#. button -#. defaultMessage is: -#. Add value -#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json -msgctxt "add attribute value button" -msgid "Add value" -msgstr "" - #. [src.products.components.ProductVariantNavigation.2845381934] - button #. defaultMessage is: #. Add variant -#. [src.products.components.ProductVariants.2845381934] - button -#. defaultMessage is: -#. Add variant #: build/locale/src/products/components/ProductVariantNavigation/ProductVariantNavigation.json -#: build/locale/src/products/components/ProductVariants/ProductVariants.json msgctxt "button" msgid "Add variant" msgstr "Tambahkan varian" -#. [src.discounts.components.VoucherListPage.1536809153] - button -#. defaultMessage is: -#. Add voucher -#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json -msgctxt "button" -msgid "Add voucher" -msgstr "Tambahkan voucher" - #. [src.attributes.views.AttributeDetails.634268988] - added new attribute #. value #. defaultMessage is: @@ -602,14 +437,6 @@ msgctxt "description" msgid "Address line 2" msgstr "" -#. [src.customers.components.CustomerAddress.1320082647] - addres card header -#. defaultMessage is: -#. Address {addressNumber} -#: build/locale/src/customers/components/CustomerAddress/CustomerAddress.json -msgctxt "addres card header" -msgid "Address {addressNumber}" -msgstr "" - #. [src.attributes.components.AttributeValues.1565474525] - attribute values #. list: slug column header #. defaultMessage is: @@ -659,6 +486,46 @@ msgctxt "tax rate" msgid "Agricultural supplies" msgstr "" +#. [src.attributes.components.AttributeListPage.2417065806] - tab name +#. defaultMessage is: +#. All Attributes +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "tab name" +msgid "All Attributes" +msgstr "" + +#. [src.categories.components.CategoryListPage.4294878092] - tab name +#. defaultMessage is: +#. All Categories +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "tab name" +msgid "All Categories" +msgstr "" + +#. [src.collections.components.CollectionListPage.1631917001] - tab name +#. defaultMessage is: +#. All Collections +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "tab name" +msgid "All Collections" +msgstr "" + +#. [src.customers.components.CustomerListPage.477293306] - tab name +#. defaultMessage is: +#. All Customers +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "tab name" +msgid "All Customers" +msgstr "" + +#. [src.orders.components.OrderDraftListPage.551325728] - tab name +#. defaultMessage is: +#. All Drafts +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "tab name" +msgid "All Drafts" +msgstr "" + #. [src.orders.components.OrderListPage.875489544] - tab name #. defaultMessage is: #. All Orders @@ -676,22 +543,54 @@ msgctxt "section header" msgid "All Photos" msgstr "" -#. [src.products.components.ProductListPage.821159718] - tab name +#. [src.productTypes.components.ProductTypeListPage.1776073799] - tab name +#. defaultMessage is: +#. All Product Types +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "tab name" +msgid "All Product Types" +msgstr "" + +#. [src.products.components.ProductListFilter.821159718] - tab name #. defaultMessage is: #. All Products -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "tab name" msgid "All Products" msgstr "" -#. [src.categories.components.CategoryList.3229914152] - section header +#. [src.discounts.components.SaleListPage.3907768880] - tab name +#. defaultMessage is: +#. All Sales +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "tab name" +msgid "All Sales" +msgstr "" + +#. [src.staff.components.StaffListPage.2852350932] - tab name +#. defaultMessage is: +#. All Staff Members +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "tab name" +msgid "All Staff Members" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.3229914152] - section header #. defaultMessage is: #. All Subcategories -#: build/locale/src/categories/components/CategoryList/CategoryList.json +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json msgctxt "section header" msgid "All Subcategories" msgstr "" +#. [src.discounts.components.VoucherListPage.1112241061] - tab name +#. defaultMessage is: +#. All Vouchers +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "tab name" +msgid "All Vouchers" +msgstr "" + #. [src.taxes.components.TaxConfiguration.142803418] #. defaultMessage is: #. All products prices are entered with tax included @@ -799,6 +698,14 @@ msgctxt "description" msgid "Are you sure you want to delete collection's image?" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.36681973] +#. defaultMessage is: +#. Are you sure you want to delete draft #{number}? +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "description" +msgid "Are you sure you want to delete draft #{number}?" +msgstr "" + #. [menuDetailsDeleteMenuContent] #. defaultMessage is: #. Are you sure you want to delete menu {menuName}? @@ -815,6 +722,14 @@ msgctxt "description" msgid "Are you sure you want to delete this address from users address book?" msgstr "" +#. [src.products.views.2880386427] +#. defaultMessage is: +#. Are you sure you want to delete this image? +#: build/locale/src/products/views/ProductImage.json +msgctxt "description" +msgid "Are you sure you want to delete this image?" +msgstr "" + #. [src.attributes.components.AttributeDeleteDialog.3738429348] - dialog #. content #. defaultMessage is: @@ -865,12 +780,7 @@ msgstr "" #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this attribute} #. other{{displayQuantity} categories}}? -#. [src.categories.views.844574071] -#. defaultMessage is: -#. Are you sure you want to delete {counter,plural,one{this attribute} -#. other{{displayQuantity} categories}}? #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this attribute} " @@ -888,22 +798,33 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.2497542455] +#. [src.categories.views.CategoryList.2144707585] +#. defaultMessage is: +#. Are you sure you want to delete {counter,plural,one{this category} +#. other{{displayQuantity} categories}}? +#: build/locale/src/categories/views/CategoryList/CategoryList.json +msgctxt "description" +msgid "" +"Are you sure you want to delete {counter,plural,one{this category} " +"other{{displayQuantity} categories}}?" +msgstr "" + +#. [src.collections.views.CollectionList.2497542455] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this collection} " "other{{displayQuantity} collections}}?" msgstr "" -#. [src.customers.views.409347866] +#. [src.customers.views.CustomerList.409347866] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this customer} #. other{{displayQuantity} customers}}? -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this customer} " @@ -921,11 +842,11 @@ msgid "" "other{{displayQuantity} menus}}?" msgstr "" -#. [src.orders.views.1389231130] - dialog content +#. [src.orders.views.OrderDraftList.1389231130] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this order draft} #. other{{displayQuantity} orderDrafts}}? -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this order draft} " @@ -943,11 +864,11 @@ msgid "" "other{{displayQuantity} pages}}?" msgstr "" -#. [src.productTypes.views.2294091098] - dialog content +#. [src.productTypes.views.ProductTypeList.2294091098] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this product type} #. other{{displayQuantity} product types}}? -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this product type} " @@ -965,11 +886,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.discounts.views.2516361175] - dialog content +#. [src.discounts.views.SaleList.2516361175] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this sale} #. other{{displayQuantity} sales}}? -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this sale} " @@ -998,17 +919,33 @@ msgid "" "other{{displayQuantity} variants}}?" msgstr "" -#. [src.discounts.views.1791926983] - dialog content +#. [src.discounts.views.VoucherList.1791926983] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this voucher} #. other{{displayQuantity} vouchers}}? -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this voucher} " "other{{displayQuantity} vouchers}}?" msgstr "" +#. [src.shipping.views.ShippingZoneDetails.131963671] - unassign country +#. defaultMessage is: +#. Are you sure you want to delete {countryName} from this shipping zone? +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country" +msgid "Are you sure you want to delete {countryName} from this shipping zone?" +msgstr "" + +#. [src.staff.views.8878988] +#. defaultMessage is: +#. Are you sure you want to delete {email} from staff members? +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "description" +msgid "Are you sure you want to delete {email} from staff members?" +msgstr "" + #. [src.customers.views.1927691511] - delete customer, dialog content #. defaultMessage is: #. Are you sure you want to delete {email}? @@ -1123,11 +1060,11 @@ msgctxt "description" msgid "Are you sure you want to mark this order as paid?" msgstr "" -#. [src.collections.views.1348793822] +#. [src.collections.views.CollectionList.1348793822] #. defaultMessage is: #. Are you sure you want to publish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to publish {counter,plural,one{this collection} " @@ -1156,30 +1093,6 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.orders.components.OrderDraftCancelDialog.3199827590] -#. defaultMessage is: -#. Are you sure you want to remove draft #{number}? -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "description" -msgid "Are you sure you want to remove draft #{number}?" -msgstr "" - -#. [src.products.views.672103788] -#. defaultMessage is: -#. Are you sure you want to remove this image? -#: build/locale/src/products/views/ProductImage.json -msgctxt "description" -msgid "Are you sure you want to remove this image?" -msgstr "" - -#. [src.shipping.views.ShippingZoneDetails.1790261672] - unassign country -#. defaultMessage is: -#. Are you sure you want to remove {countryName} from this shipping zone? -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country" -msgid "Are you sure you want to remove {countryName} from this shipping zone?" -msgstr "" - #. [src.staff.views.3945766678] #. defaultMessage is: #. Are you sure you want to remove {email} avatar? @@ -1188,14 +1101,6 @@ msgctxt "description" msgid "Are you sure you want to remove {email} avatar?" msgstr "" -#. [src.staff.views.2728048444] -#. defaultMessage is: -#. Are you sure you want to remove {email} from staff members? -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "description" -msgid "Are you sure you want to remove {email} from staff members?" -msgstr "" - #. [src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450] #. defaultMessage is: #. Are you sure you want to unassign {attributeName} from {productTypeName}? @@ -1276,11 +1181,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.3944356444] +#. [src.collections.views.CollectionList.3944356444] #. defaultMessage is: #. Are you sure you want to unpublish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to unpublish {counter,plural,one{this collection} " @@ -1441,6 +1346,15 @@ msgctxt "button" msgid "Assign products" msgstr "" +#. [src.attributes.components.AttributeValues.351422234] - assign attribute +#. value button +#. defaultMessage is: +#. Assign value +#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json +msgctxt "assign attribute value button" +msgid "Assign value" +msgstr "" + #. [src.attributes.components.AttributeDetails.3605174225] - attribute's slug #. short code label #. defaultMessage is: @@ -1519,6 +1433,14 @@ msgctxt "product attributes, section header" msgid "Attributes" msgstr "Atribut" +#. [src.configuration.2326418019] +#. defaultMessage is: +#. Attributes and Product Typess +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Attributes and Product Typess" +msgstr "" + #. [src.attributes.views.AttributeList.3218248395] - deleted multiple #. attributes #. defaultMessage is: @@ -2302,6 +2224,22 @@ msgctxt "description" msgid "Country area" msgstr "" +#. [menuCreateDialogHeader] - dialog header +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json +msgctxt "dialog header" +msgid "Create Menu" +msgstr "" + +#. [menuListPageAddMenu] - button +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json +msgctxt "button" +msgid "Create Menu" +msgstr "" + #. [src.attributes.components.AttributePage.2855501559] - page title #. defaultMessage is: #. Create New Attribute @@ -2326,6 +2264,30 @@ msgctxt "header" msgid "Create New Shipping Zone" msgstr "" +#. [src.pages.components.PageDetailsPage.1068617485] - page header +#. defaultMessage is: +#. Create Page +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page header" +msgid "Create Page" +msgstr "" + +#. [src.orders.components.OrderProductAddDialog.1542417144] - dialog header +#. defaultMessage is: +#. Create Product +#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json +msgctxt "dialog header" +msgid "Create Product" +msgstr "" + +#. [src.products.components.ProductListPage.1542417144] - button +#. defaultMessage is: +#. Create Product +#: build/locale/src/products/components/ProductListPage/ProductListPage.json +msgctxt "button" +msgid "Create Product" +msgstr "" + #. [src.products.views.1542417144] - window title #. defaultMessage is: #. Create Product @@ -2358,11 +2320,19 @@ msgctxt "page header" msgid "Create Sale" msgstr "" -#. [src.products.views.2362587265] - window title +#. [src.discounts.components.SaleListPage.3866518732] - button +#. defaultMessage is: +#. Create Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "button" +msgid "Create Sale" +msgstr "" + +#. [src.products.views.2362587265] - header #. defaultMessage is: #. Create Variant #: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "window title" +msgctxt "header" msgid "Create Variant" msgstr "" @@ -2374,6 +2344,22 @@ msgctxt "page header" msgid "Create Voucher" msgstr "" +#. [src.attributes.components.AttributeListPage.3824684885] - button +#. defaultMessage is: +#. Create attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "button" +msgid "Create attribute" +msgstr "" + +#. [src.categories.components.CategoryListPage.1140231710] - button +#. defaultMessage is: +#. Create category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "button" +msgid "Create category" +msgstr "" + #. [src.categories.views.1140231710] - window title #. defaultMessage is: #. Create category @@ -2382,6 +2368,14 @@ msgctxt "window title" msgid "Create category" msgstr "" +#. [src.collections.components.CollectionListPage.686910896] - button +#. defaultMessage is: +#. Create collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "button" +msgid "Create collection" +msgstr "" + #. [src.collections.views.686910896] - window title #. defaultMessage is: #. Create collection @@ -2398,6 +2392,14 @@ msgctxt "window title" msgid "Create customer" msgstr "" +#. [menuItemsAddItem] - add new menu item +#. defaultMessage is: +#. Create new item +#: build/locale/src/navigation/components/MenuItems/MenuItems.json +msgctxt "add new menu item" +msgid "Create new item" +msgstr "" + #. [src.orders.components.OrderDraftListPage.2826235371] - button #. defaultMessage is: #. Create order @@ -2410,6 +2412,14 @@ msgctxt "button" msgid "Create order" msgstr "Buat pesanan" +#. [src.pages.components.PageListPage.3785394515] - button +#. defaultMessage is: +#. Create page +#: build/locale/src/pages/components/PageListPage/PageListPage.json +msgctxt "button" +msgid "Create page" +msgstr "" + #. [src.pages.views.3785394515] - header #. defaultMessage is: #. Create page @@ -2421,11 +2431,55 @@ msgstr "" #. [src.shipping.components.ShippingZoneRateDialog.16061680] - button #. defaultMessage is: #. Create rate +#. [src.shipping.components.ShippingZoneRates.16061680] - button +#. defaultMessage is: +#. Create rate #: build/locale/src/shipping/components/ShippingZoneRateDialog/ShippingZoneRateDialog.json +#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json msgctxt "button" msgid "Create rate" msgstr "" +#. [src.shipping.components.ShippingZonesList.2673544109] - button +#. defaultMessage is: +#. Create shipping zone +#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json +msgctxt "button" +msgid "Create shipping zone" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.770296100] - button +#. defaultMessage is: +#. Create subcategory +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json +msgctxt "button" +msgid "Create subcategory" +msgstr "" + +#. [src.products.components.ProductVariants.3989383405] - button +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/components/ProductVariants/ProductVariants.json +msgctxt "button" +msgid "Create variant" +msgstr "" + +#. [src.products.views.3989383405] - window title +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/views/ProductVariantCreate.json +msgctxt "window title" +msgid "Create variant" +msgstr "" + +#. [src.discounts.components.VoucherListPage.614836274] - button +#. defaultMessage is: +#. Create voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "button" +msgid "Create voucher" +msgstr "" + #. [src.collections.views.1597339737] #. defaultMessage is: #. Created collection @@ -2472,7 +2526,11 @@ msgstr "" #. [src.components.FilterBar.2340527467] #. defaultMessage is: #. Custom Filter +#. [src.components.SearchBar.2340527467] +#. defaultMessage is: +#. Custom Filter #: build/locale/src/components/FilterBar/FilterBar.json +#: build/locale/src/components/SearchBar/SearchBar.json msgctxt "description" msgid "Custom Filter" msgstr "" @@ -2728,10 +2786,18 @@ msgctxt "dialog title" msgid "Delete Collection" msgstr "" -#. [src.orders.views.1161115149] - dialog header +#. [src.products.views.1731766393] - dialog header +#. defaultMessage is: +#. Delete Image +#: build/locale/src/products/views/ProductImage.json +msgctxt "dialog header" +msgid "Delete Image" +msgstr "" + +#. [src.orders.views.OrderDraftList.1161115149] - dialog header #. defaultMessage is: #. Delete Order Drafts -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog header" msgid "Delete Order Drafts" msgstr "" @@ -2769,10 +2835,10 @@ msgctxt "dialog header" msgid "Delete Product Type" msgstr "" -#. [src.productTypes.views.4080551769] - dialog header +#. [src.productTypes.views.ProductTypeList.4080551769] - dialog header #. defaultMessage is: #. Delete Product Types -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog header" msgid "Delete Product Types" msgstr "" @@ -2801,10 +2867,10 @@ msgctxt "dialog header" msgid "Delete Sale" msgstr "" -#. [src.discounts.views.2809303671] - dialog header +#. [src.discounts.views.SaleList.2809303671] - dialog header #. defaultMessage is: #. Delete Sales -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog header" msgid "Delete Sales" msgstr "" @@ -2818,9 +2884,13 @@ msgctxt "custom search delete, dialog header" msgid "Delete Search" msgstr "" +#. [src.components.Filter.2173195312] - button +#. defaultMessage is: +#. Delete Search #. [src.components.TableFilter.2173195312] - button #. defaultMessage is: #. Delete Search +#: build/locale/src/components/Filter/FilterSearch.json #: build/locale/src/components/TableFilter/FilterChips.json msgctxt "button" msgid "Delete Search" @@ -2887,10 +2957,10 @@ msgctxt "dialog header" msgid "Delete Voucher" msgstr "" -#. [src.discounts.views.367317371] - dialog header +#. [src.discounts.views.VoucherList.367317371] - dialog header #. defaultMessage is: #. Delete Vouchers -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog header" msgid "Delete Vouchers" msgstr "" @@ -2924,11 +2994,11 @@ msgstr "" #. [src.categories.views.712767046] - dialog title #. defaultMessage is: #. Delete categories -#. [src.categories.views.712767046] - dialog title +#. [src.categories.views.CategoryList.712767046] - dialog title #. defaultMessage is: #. Delete categories #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "dialog title" msgid "Delete categories" msgstr "" @@ -2945,10 +3015,10 @@ msgctxt "dialog title" msgid "Delete category" msgstr "" -#. [src.collections.views.3817188998] - dialog title +#. [src.collections.views.CollectionList.3817188998] - dialog title #. defaultMessage is: #. Delete collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Delete collections" msgstr "" @@ -2961,14 +3031,31 @@ msgctxt "dialog header" msgid "Delete customer" msgstr "" -#. [src.customers.views.1946482599] - dialog header +#. [src.customers.views.CustomerList.1946482599] - dialog header #. defaultMessage is: #. Delete customers -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "dialog header" msgid "Delete customers" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.632633254] - dialog header +#. defaultMessage is: +#. Delete draft order +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "dialog header" +msgid "Delete draft order" +msgstr "" + +#. [src.shipping.views.ShippingZoneDetails.1947090060] - unassign country, +#. dialog header +#. defaultMessage is: +#. Delete from shipping zone +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country, dialog header" +msgid "Delete from shipping zone" +msgstr "" + #. [src.collections.views.942133001] - dialog title #. defaultMessage is: #. Delete image @@ -3029,6 +3116,14 @@ msgctxt "description" msgid "Deleted collection" msgstr "Koleksi dihapus" +#. [src.orders.views.OrderDraftList.1648805446] +#. defaultMessage is: +#. Deleted draft orders +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json +msgctxt "description" +msgid "Deleted draft orders" +msgstr "" + #. [menuListDeletedMenu] #. defaultMessage is: #. Deleted menu @@ -3628,14 +3723,6 @@ msgctxt "order history message" msgid "Fulfilled {quantity} items" msgstr "" -#. [src.orders.components.OrderListFilter.2943502192] - order -#. defaultMessage is: -#. Fulfillment Status -#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json -msgctxt "order" -msgid "Fulfillment Status" -msgstr "" - #. [src.orders.components.OrderHistory.3081292385] - order history message #. defaultMessage is: #. Fulfillment confirmation was sent to customer @@ -3792,12 +3879,12 @@ msgctxt "description" msgid "If empty, the preview shows what will be autogenerated." msgstr "Jika kosong, pratinjau menunjukkan apa yang akan dibuat otomatis." -#. [src.attributes.components.AttributeProperties.2519239682] +#. [src.attributes.components.AttributeProperties.4048785456] #. defaultMessage is: -#. If enable this attribute can be used as a column in product table. +#. If enabled this attribute can be used as a column in product table. #: build/locale/src/attributes/components/AttributeProperties/AttributeProperties.json msgctxt "description" -msgid "If enable this attribute can be used as a column in product table." +msgid "If enabled this attribute can be used as a column in product table." msgstr "" #. [src.attributes.components.AttributeProperties.787251583] @@ -3903,6 +3990,22 @@ msgctxt "product variant stock" msgid "Inventory" msgstr "Inventaris" +#. [src.staff.components.StaffAddMemberDialog.1481503299] - dialog header +#. defaultMessage is: +#. Invite Staff Member +#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json +msgctxt "dialog header" +msgid "Invite Staff Member" +msgstr "" + +#. [src.staff.components.StaffListPage.797461521] - button +#. defaultMessage is: +#. Invite staff member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "button" +msgid "Invite staff member" +msgstr "" + #. [src.productTypes.components.ProductTypeShipping.2143413921] - switch #. button #. defaultMessage is: @@ -4255,6 +4358,14 @@ msgctxt "voucher requirement" msgid "Minimum quantity of items" msgstr "" +#. [src.configuration.1233229030] +#. defaultMessage is: +#. Miscellaneous +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Miscellaneous" +msgstr "" + #. [src.attributes.components.AttributeDetails.3334509011] - product attribute #. type #. defaultMessage is: @@ -5087,6 +5198,14 @@ msgctxt "description" msgid "Order History" msgstr "" +#. [src.orders.components.OrderListFilter.2222765704] +#. defaultMessage is: +#. Order Status +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +msgctxt "description" +msgid "Order Status" +msgstr "" + #. [src.orders.components.OrderHistory.1230178536] - order history message #. defaultMessage is: #. Order address was updated @@ -5103,13 +5222,13 @@ msgctxt "order history message" msgid "Order confirmation was sent to customer" msgstr "" -#. [src.orders.views.1872939752] +#. [src.orders.views.OrderDraftList.1872939752] #. defaultMessage is: #. Order draft succesfully created #. [src.orders.views.OrderList.1872939752] #. defaultMessage is: #. Order draft succesfully created -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json #: build/locale/src/orders/views/OrderList/OrderList.json msgctxt "description" msgid "Order draft succesfully created" @@ -5774,6 +5893,14 @@ msgctxt "description" msgid "Product Name" msgstr "" +#. [src.configuration.3655543906] +#. defaultMessage is: +#. Product Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Product Settings" +msgstr "" + #. [src.discounts.components.DiscountProducts.4257289053] #. defaultMessage is: #. Product Type @@ -5932,12 +6059,12 @@ msgctxt "order history message" msgid "Products were added to draft order" msgstr "" -#. [src.orders.components.OrderHistory.2574162126] - order history message +#. [src.orders.components.OrderHistory.4067959693] - order history message #. defaultMessage is: -#. Products were removed from draft order +#. Products were deleted from draft order #: build/locale/src/orders/components/OrderHistory/OrderHistory.json msgctxt "order history message" -msgid "Products were removed from draft order" +msgid "Products were deleted from draft order" msgstr "" #. [src.properties] @@ -5964,10 +6091,10 @@ msgctxt "description" msgid "Provided email address does not exist in our database." msgstr "" -#. [src.collections.views.1547167026] - publish collections +#. [src.collections.views.CollectionList.1547167026] - publish collections #. defaultMessage is: #. Publish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "publish collections" msgid "Publish" msgstr "Terbit" @@ -6004,10 +6131,10 @@ msgctxt "dialog header" msgid "Publish Products" msgstr "" -#. [src.collections.views.2823425739] - dialog title +#. [src.collections.views.CollectionList.2823425739] - dialog title #. defaultMessage is: #. Publish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Publish collections" msgstr "" @@ -6181,6 +6308,18 @@ msgctxt "shipping method price" msgid "Rate Price" msgstr "" +#. [src.orders.components.OrderListFilter.2415661583] - order status +#. defaultMessage is: +#. Ready to Capture +#. [src.orders.views.OrderList.readyToCapture] - order status +#. defaultMessage is: +#. Ready to Capture +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +#: build/locale/src/orders/views/OrderList/filters.json +msgctxt "order status" +msgid "Ready to Capture" +msgstr "" + #. [src.customers.components.CustomerOrders.3878642352] - section header #. defaultMessage is: #. Recent orders @@ -6229,22 +6368,14 @@ msgctxt "switch button" msgid "Release all stock allocated to this order" msgstr "" -#. [src.auth.components.LoginPage.3182284913] - login -#. defaultMessage is: -#. Remember me -#: build/locale/src/auth/components/LoginPage/LoginPage.json -msgctxt "login" -msgid "Remember me" -msgstr "" - #. [src.categories.views.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. -#. [src.categories.views.3488150607] +#. [src.categories.views.CategoryList.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "description" msgid "Remember this will also delete all products assigned to this category." msgstr "" @@ -6257,39 +6388,6 @@ msgctxt "button" msgid "Remove" msgstr "Hapus" -#. [src.products.views.490753666] - dialog header -#. defaultMessage is: -#. Remove Image -#: build/locale/src/products/views/ProductImage.json -msgctxt "dialog header" -msgid "Remove Image" -msgstr "" - -#. [src.orders.components.OrderDraftCancelDialog.500287069] - dialog header -#. defaultMessage is: -#. Remove draft order -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "dialog header" -msgid "Remove draft order" -msgstr "Hapus draf pesanan" - -#. [src.shipping.views.ShippingZoneDetails.254167659] - unassign country, -#. dialog header -#. defaultMessage is: -#. Remove from shipping zone -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country, dialog header" -msgid "Remove from shipping zone" -msgstr "" - -#. [src.orders.views.3880993240] -#. defaultMessage is: -#. Removed draft orders -#: build/locale/src/orders/views/OrderDraftList.json -msgctxt "description" -msgid "Removed draft orders" -msgstr "" - #. [src.pages.views.1457312643] #. defaultMessage is: #. Removed page @@ -6455,6 +6553,18 @@ msgctxt "button" msgid "Save" msgstr "Simpan" +#. [src.components.Filter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#. [src.components.TableFilter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#: build/locale/src/components/Filter/FilterSearch.json +#: build/locale/src/components/TableFilter/FilterChips.json +msgctxt "button" +msgid "Save Custom Search" +msgstr "" + #. [src.components.SaveFilterTabDialog.1514415736] - save filter tab, header #. defaultMessage is: #. Save Custom Search @@ -6463,14 +6573,6 @@ msgctxt "save filter tab, header" msgid "Save Custom Search" msgstr "" -#. [src.components.TableFilter.1514415736] - button -#. defaultMessage is: -#. Save Custom Search -#: build/locale/src/components/TableFilter/FilterChips.json -msgctxt "button" -msgid "Save Custom Search" -msgstr "" - #. [src.products.components.ProductVariantCreatePage.2853608829] - button #. defaultMessage is: #. Save variant @@ -6487,6 +6589,14 @@ msgctxt "description" msgid "Saved changes" msgstr "" +#. [src.attributes.components.AttributeListPage.3916653510] +#. defaultMessage is: +#. Search Attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "description" +msgid "Search Attribute" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.902296540] #. defaultMessage is: #. Search Attributes @@ -6503,10 +6613,30 @@ msgctxt "description" msgid "Search Categories" msgstr "" +#. [src.categories.components.CategoryListPage.3841025483] +#. defaultMessage is: +#. Search Category +#. [src.translations.components.TranslationsEntitiesListPage.3841025483] +#. defaultMessage is: +#. Search Category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Category" +msgstr "" + +#. [src.collections.components.CollectionListPage.4057224233] +#. defaultMessage is: +#. Search Collection #. [src.components.AssignCollectionDialog.4057224233] #. defaultMessage is: #. Search Collection +#. [src.translations.components.TranslationsEntitiesListPage.4057224233] +#. defaultMessage is: +#. Search Collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json #: build/locale/src/components/AssignCollectionDialog/AssignCollectionDialog.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json msgctxt "description" msgid "Search Collection" msgstr "" @@ -6519,6 +6649,14 @@ msgctxt "description" msgid "Search Countries" msgstr "" +#. [src.customers.components.CustomerListPage.1643417013] +#. defaultMessage is: +#. Search Customer +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "description" +msgid "Search Customer" +msgstr "" + #. [src.orders.components.OrderCustomer.2433460203] #. defaultMessage is: #. Search Customers @@ -6527,6 +6665,14 @@ msgctxt "description" msgid "Search Customers" msgstr "" +#. [src.orders.components.OrderDraftListPage.77765281] +#. defaultMessage is: +#. Search Draft +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "description" +msgid "Search Draft" +msgstr "" + #. [src.translations.components.TranslationsCategoriesPage.1406947243] #. defaultMessage is: #. Search Engine Description @@ -6607,6 +6753,34 @@ msgctxt "description" msgid "Search Orders..." msgstr "" +#. [src.translations.components.TranslationsEntitiesListPage.2559018090] +#. defaultMessage is: +#. Search Page +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Page" +msgstr "" + +#. [src.translations.components.TranslationsEntitiesListPage.2105464697] +#. defaultMessage is: +#. Search Product +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product" +msgstr "" + +#. [src.productTypes.components.ProductTypeListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#. [src.translations.components.TranslationsEntitiesListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product Type" +msgstr "" + #. [src.components.AssignProductDialog.2850255786] #. defaultMessage is: #. Search Products @@ -6619,14 +6793,46 @@ msgctxt "description" msgid "Search Products" msgstr "" -#. [src.products.components.ProductListPage.3550330425] +#. [src.products.components.ProductListFilter.3550330425] #. defaultMessage is: #. Search Products... -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Search Products..." msgstr "" +#. [src.discounts.components.SaleListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#. [src.translations.components.TranslationsEntitiesListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Sale" +msgstr "" + +#. [src.staff.components.StaffListPage.61043583] +#. defaultMessage is: +#. Search Staff Member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "description" +msgid "Search Staff Member" +msgstr "" + +#. [src.discounts.components.VoucherListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#. [src.translations.components.TranslationsEntitiesListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Voucher" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.524117994] #. defaultMessage is: #. Search by attribute name @@ -6733,10 +6939,10 @@ msgctxt "description" msgid "Select all orders where:" msgstr "" -#. [src.products.components.ProductListPage.1421689426] +#. [src.products.components.ProductListFilter.1421689426] #. defaultMessage is: #. Select all products where: -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Select all products where:" msgstr "" @@ -6822,6 +7028,14 @@ msgctxt "description" msgid "Set plugin as Active" msgstr "" +#. [src.components.VisibilityCard.292404896] +#. defaultMessage is: +#. Set publication date +#: build/locale/src/components/VisibilityCard/VisibilityCard.json +msgctxt "description" +msgid "Set publication date" +msgstr "" + #. [src.discounts.shipment] - voucher discount #. defaultMessage is: #. Shipment @@ -7087,6 +7301,14 @@ msgctxt "staff section name" msgid "Staff Members" msgstr "" +#. [src.configuration.3140151600] +#. defaultMessage is: +#. Staff Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Staff Settings" +msgstr "" + #. [src.standard] - tax rate #. defaultMessage is: #. Standard @@ -8071,10 +8293,10 @@ msgctxt "payment status" msgid "Unpaid" msgstr "" -#. [src.collections.views.2237014112] - unpublish collections +#. [src.collections.views.CollectionList.2237014112] - unpublish collections #. defaultMessage is: #. Unpublish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "unpublish collections" msgid "Unpublish" msgstr "Tidak terbit" @@ -8111,10 +8333,10 @@ msgctxt "dialog header" msgid "Unpublish Products" msgstr "" -#. [src.collections.views.2637364047] - dialog title +#. [src.collections.views.CollectionList.2637364047] - dialog title #. defaultMessage is: #. Unpublish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Unpublish collections" msgstr "" @@ -8614,6 +8836,22 @@ msgctxt "description" msgid "ZIP / Postal code" msgstr "" +#. [src.productTypes.components.ProductTypeListPage.3479705616] - button +#. defaultMessage is: +#. create product type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "button" +msgid "create product type" +msgstr "" + +#. [src.staff.views.1308770978] - dialog header +#. defaultMessage is: +#. delete Staff User +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "dialog header" +msgid "delete Staff User" +msgstr "" + #. [orderPaymentVATDoesNotApply] - vat not included in order price #. defaultMessage is: #. does not apply @@ -8687,19 +8925,35 @@ msgctxt "product status is set as" msgid "is set as" msgstr "" -#. [src.staff.views.2240444792] - dialog header -#. defaultMessage is: -#. remove Staff User -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "dialog header" -msgid "remove Staff User" -msgstr "" - -#. [src.components.VisibilityCard.1815688500] +#. [src.collections.components.CollectionCreatePage.1815688500] - collection #. defaultMessage is: #. since {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.1815688500] - collection +#. defaultMessage is: +#. since {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "since {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.1815688500] - page +#. defaultMessage is: +#. since {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "since {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#. [src.products.components.ProductUpdatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "since {date}" msgstr "" @@ -8727,11 +8981,35 @@ msgctxt "weight" msgid "to {value} {unit}" msgstr "" -#. [src.components.VisibilityCard.2001551496] +#. [src.collections.components.CollectionCreatePage.2001551496] - collection #. defaultMessage is: #. will be visible from {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.2001551496] - collection +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "will be visible from {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.2001551496] - page +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "will be visible from {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#. [src.products.components.ProductUpdatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "will be visible from {date}" msgstr "" diff --git a/locale/is.json b/locale/is.json index 7237c0fc8..e4acfb3c2 100644 --- a/locale/is.json +++ b/locale/is.json @@ -1 +1 @@ -{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.350498821":"","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.2519239682":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"Nafn","src.categories.components.CategoryProducts.636461959":"Nafn","src.collections.components.CollectionProducts.636461959":"Nafn","src.products.components.ProductDetailsForm.636461959":"Nafn","src.collections.components.CollectionDetails.636461959":"Nafn","src.components.ProductList.636461959":"Nafn","src.discounts.components.SaleInfo.636461959":"Nafn","src.discounts.components.SaleList.636461959":"Nafn","src.discounts.components.SaleSummary.636461959":"Nafn","menuItemDialogNameLabel":"Nafn","src.products.components.ProductVariants.636461959":"Nafn","src.shipping.components.ShippingZoneRates.636461959":"Nafn","src.shipping.components.ShippingZonesList.636461959":"Nafn","src.staff.components.StaffList.636461959":"Nafn","src.translations.components.TranslationsEntitiesList.636461959":"Nafn","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.254756045":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.3182284913":"","src.auth.components.LoginPage.109182747":"Innskrá","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"","src.categories.views.2004894945":"","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.3229914152":"","src.categories.components.CategoryList.435697837":"","src.categories.components.CategoryList.2159874182":"Undirflokkar","src.categories.components.CategoryUpdatePage.2159874182":"Undirflokkar","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.228151782":"","src.categories.components.CategoryProducts.2968663655":"Vörur","src.categories.components.CategoryUpdatePage.2968663655":"Vörur","src.discounts.components.DiscountCategories.2968663655":"Vörur","src.discounts.components.DiscountCollections.2968663655":"Vörur","src.products":"Vörur","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryProducts.3554578821":"Bæta við vöru","src.categories.components.CategoryProductsCard.3554578821":"Bæta við vöru","src.categories.components.CategoryProducts.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProducts.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.categories.components.CategoryProductsCard.4164156574":"","src.categories.views.1754466114":"","src.categories.views.1140231710":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.712767046":"","src.categories.views.299584400":"","src.categories.views.844574071":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.collections.components.CollectionCreatePage.3958681866":"","src.collections.components.CollectionListPage.3958681866":"","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"","src.availability":"","src.collections.components.CollectionList.3640454975":"Birt","src.collections.components.CollectionProducts.3640454975":"Birt","src.discounts.components.DiscountProducts.3640454975":"Birt","src.components.ProductList.3640454975":"Birt","src.products.components.ProductListPage.3640454975":"Birt","src.pages.components.PageList.3640454975":"Birt","src.products.views.ProductList.published":"Birt","src.collections.components.CollectionList.2341910657":"Ekki birt","src.collections.components.CollectionProducts.2341910657":"Ekki birt","src.discounts.components.DiscountProducts.2341910657":"Ekki birt","src.components.ProductList.2341910657":"Ekki birt","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.686910896":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"","src.collections.views.2402899582":"","src.collections.views.2237014112":"Taka úr birtingu","src.pages.views.2237014112":"Taka úr birtingu","src.products.views.ProductList.2237014112":"Taka úr birtingu","src.collections.views.1547167026":"Birta","src.pages.views.1547167026":"Birta","src.products.views.ProductList.1547167026":"Birta","src.collections.views.2823425739":"","src.collections.views.1348793822":"","src.collections.views.2637364047":"","src.collections.views.3944356444":"","src.collections.views.3817188998":"","src.collections.views.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"Skrá út","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.4057224233":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"","src.components.ErrorMessageCard.2845142593":"","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.FilterBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"Bæta við","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.ProductList.1134347598":"Verð","src.orders.components.OrderDraftDetailsProducts.1134347598":"Verð","src.orders.components.OrderFulfillment.1134347598":"Verð","src.products.components.ProductListPage.1134347598":"Verð","src.products.components.ProductPricing.1134347598":"Verð","src.orders.components.OrderUnfulfilledItems.1134347598":"Verð","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"Verð","src.shipping.components.ShippingZoneRates.1134347598":"Verð","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"Sýnileiki","src.pages.components.PageList.1459686496":"Sýnileiki","src.products.components.ProductListFilter.1459686496":"Sýnileiki","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"Falið","src.products.views.ProductList.hidden":"Falið","src.components.VisibilityCard.1815688500":"","src.components.VisibilityCard.2001551496":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","configurationMenuStaff":"","configurationMenuShipping":"","configurationMenuTaxes":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","src.customers.components.CustomerAddress.1320082647":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"Greiðslustaður","src.customers.components.CustomerAddresses.3517722732":"Afhendingarstaður","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"Heimilisfang","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"Útskýringar","src.orders.components.OrderCustomerNote.1520756907":"Útskýringar","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"Athugasemd","src.customers.components.CustomerDetails.577013340":"Athugasemd","src.customers.components.CustomerCreatePage.1934221653":"Bæta við viðskiptavin","src.customers.components.CustomerListPage.1934221653":"Bæta við viðskiptavin","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerOrders.3878642352":"Nýlegar pantanir","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"Dagsetning","src.orders.components.OrderDraftList.4205493358":"Dagsetning","src.orders.components.OrderList.4205493358":"Dagsetning","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"Staða","src.orders.components.OrderListFilter.1756106276":"Staða","src.products.components.ProductListFilter.1756106276":"Staða","src.products.components.ProductVariants.1756106276":"Staða","src.customers.components.CustomerOrders.878013594":"Samtals","src.orders.components.OrderDraftDetailsProducts.878013594":"Samtals","src.orders.components.OrderDraftDetailsSummary.878013594":"Samtals","src.orders.components.OrderDraftList.878013594":"Samtals","src.orders.components.OrderFulfillment.878013594":"Samtals","src.orders.components.OrderUnfulfilledItems.878013594":"Samtals","src.orders.components.OrderList.878013594":"Samtals","src.orders.components.OrderPayment.878013594":"Samtals","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.1946482599":"","src.customers.views.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"Gildi","src.discounts.components.SaleSummary.1148029984":"Gildi","src.discounts.components.VoucherList.1148029984":"Gildi","src.discounts.components.VoucherSummary.1148029984":"Gildi","src.discounts.components.VoucherValue.1148029984":"Gildi","src.products.components.ProductAttributes.1148029984":"Gildi","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.1742771332":"","src.discounts.components.SalePricing.1099355007":"","src.products.components.ProductPricing.1099355007":"","src.products.components.ProductVariantPrice.1099355007":"","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"Lönd","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"Kóði","src.discounts.components.VoucherSummary.78726751":"Kóði","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.1536809153":"","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"","src.discounts.shipment":"","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.2809303671":"","src.discounts.views.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.367317371":"","src.discounts.views.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"Hætta við","src.orders.views.OrderList.3528672691":"Hætta við","src.confirm":"","src.delete":"","src.edit":"Breyta","src.manage":"","src.remove":"Fjarlægja","src.save":"Vista","src.show":"","src.undo":"","src.attributes":"","src.products.components.ProductAttributes.4153345096":"","src.categories":"Flokkar","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"","src.customers":"Viðskiptavinir","src.draftOrders":"","src.home":"Heim","src.navigation":"","src.orders":"Pantanir","src.pages":"Síður","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"Útsölur","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"","src.taxes.components.CountryListPage.3955023266":"","src.translations":"","src.vouchers":"","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"","src.partiallyPaid":"","src.partiallyRefunded":"Endurgreitt að hluta","src.refunded":"Endurgreitt að fullu","src.unpaid":"","src.cancelled":"","src.draft":"Drög","src.fulfilled":"","src.orders.views.OrderList.fulfilled":"","src.orders.components.OrderListFilter.1712863026":"","src.partiallyFulfilled":"","src.unfulfilled":"","src.orders.views.OrderList.unfulfilled":"","src.orders.components.OrderListFilter.1751787272":"","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","src.1395232177":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"Tengill","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"Hætta við pöntun","src.orders.components.OrderDetailsPage.1854613983":"Hætta við pöntun","src.orders.components.OrderDraftPage.1854613983":"Hætta við pöntun","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"Viðskiptavinur","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"Viðskiptavinur","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"","src.orders.components.OrderCustomerEditDialog.1411666943":"","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.500287069":"","src.orders.components.OrderDraftCancelDialog.3199827590":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"Vara","src.orders.components.OrderUnfulfilledItems.1895667608":"Vara","src.orders.components.OrderDraftDetailsProducts.2796503714":"Magn","src.orders.components.OrderFulfillment.2796503714":"Magn","src.orders.components.OrderFulfillmentDialog.2796503714":"Magn","src.orders.components.OrderUnfulfilledItems.2796503714":"Magn","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"Millisumma","src.orders.components.OrderPayment.781550514":"Millisumma","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"Stofna pöntun","src.orders.components.OrderListPage.2826235371":"Stofna pöntun","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"","src.orders.components.OrderFulfillmentCancelDialog.732594284":"","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"VN","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"Rakningarnúmer","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.2574162126":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"Pöntun greidd að fullu","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"Greiðsla","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2943502192":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"","src.productTypes.components.ProductTypeShipping.1325966144":"","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"","src.orders.components.OrderPayment.3768782744":"","src.orders.components.OrderPayment.2320183694":"","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"","src.orders.components.OrderPayment.2845258362":"Endurgreiða","src.orders.components.OrderPayment.2444197639":"","src.orders.components.OrderPayment.3500506678":"Merkja sem greitt","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"Upphæð","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.2775402904":"","src.products.components.ProductListPage.2775402904":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.3880993240":"","src.orders.views.1161115149":"","src.orders.views.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.755314116":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"Titill","src.pages.components.PageList.1124600214":"Titill","src.pages.components.PageInfo.1116746286":"Innihald","src.translations.components.TranslationsPagesPage.1116746286":"Innihald","src.pages.components.PageList.3478065224":"","src.pages.components.PageSlug.3478065224":"","src.productTypes.components.ProductTypeAttributes.3478065224":"","src.pages.components.PageList.3767550649":"","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.1767905232":"Bæta við síðu","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.3785394515":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"Myndir","src.products.components.ProductVariantImages.3240888698":"Myndir","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"","src.products.components.ProductVariantStock.3841616483":"","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListPage.821159718":"","src.products.components.ProductListPage.1421689426":"","src.products.components.ProductListPage.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"","prodictStockInventoryLabel":"","src.products.components.ProductVariantStock.3490038570":"","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"","src.products.components.ProductVariants.2153006789":"","src.products.components.ProductVariantNavigation.2845381934":"","src.products.components.ProductVariants.2845381934":"","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1542417144":"","src.products.views.1591632382":"","src.products.views.490753666":"","src.products.views.672103788":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.1694086800":"","src.products.views.ProductList.224127438":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.products.views.2178905289":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1756957616":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.889729490":"","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.4080551769":"","src.productTypes.views.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.352297149":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2474410767":"","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.254167659":"","src.shipping.views.ShippingZoneDetails.1790261672":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"","src.siteSettings.components.SiteSettingsKeys.2446088470":"","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.3490059488":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"Réttindi","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.3247064221":"Virkt","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.802625341":"","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"Notandi er virkur","src.staff.views.2240444792":"","src.staff.views.2728048444":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file +{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.3824684885":"","src.attributes.components.AttributeListPage.2417065806":"","src.attributes.components.AttributeListPage.3916653510":"","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.4048785456":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"Nafn","src.categories.components.CategoryProductList.636461959":"Nafn","src.components.ProductList.636461959":"Nafn","src.products.components.ProductList.636461959":"Nafn","src.collections.components.CollectionDetails.636461959":"Nafn","src.collections.components.CollectionProducts.636461959":"Nafn","src.products.components.ProductDetailsForm.636461959":"Nafn","src.discounts.components.SaleInfo.636461959":"Nafn","src.discounts.components.SaleList.636461959":"Nafn","src.discounts.components.SaleSummary.636461959":"Nafn","menuItemDialogNameLabel":"Nafn","src.plugins.components.PluginsList.636461959":"Nafn","src.products.components.ProductVariants.636461959":"Nafn","src.shipping.components.ShippingZoneRates.636461959":"Nafn","src.shipping.components.ShippingZonesList.636461959":"Nafn","src.staff.components.StaffList.636461959":"Nafn","src.translations.components.TranslationsEntitiesList.636461959":"Nafn","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.351422234":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.109182747":"Innskrá","src.auth.components.LoginPage.4028609483":"","src.auth.components.NewPasswordPage.1915811227":"","src.auth.components.NewPasswordPage.1254879564":"","src.auth.components.NewPasswordPage.2799926859":"","src.auth.components.NewPasswordPage.4253911811":"","src.auth.components.NewPasswordPage.2342634351":"","src.auth.components.ResetPasswordPage.2370700732":"","src.auth.components.ResetPasswordPage.3663311080":"","src.auth.components.ResetPasswordSuccessPage.4066297200":"","src.auth.components.ResetPasswordSuccessPage.2245157344":"","src.auth.views.2388238158":"","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"","src.categories.views.2004894945":"","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.2159874182":"Undirflokkar","src.categories.components.CategoryUpdatePage.2159874182":"Undirflokkar","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.1140231710":"","src.categories.views.1140231710":"","src.categories.components.CategoryListPage.4294878092":"","src.categories.components.CategoryListPage.3841025483":"","src.translations.components.TranslationsEntitiesListPage.3841025483":"","src.categories.components.CategoryProductList.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductList.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProductList.3640454975":"Birt","src.components.ProductList.3640454975":"Birt","src.products.components.ProductList.3640454975":"Birt","src.products.components.ProductListPage.3640454975":"Birt","productStatusLabel":"Birt","src.collections.components.CollectionList.3640454975":"Birt","src.collections.components.CollectionProducts.3640454975":"Birt","src.discounts.components.DiscountProducts.3640454975":"Birt","src.pages.components.PageList.3640454975":"Birt","src.products.views.ProductList.published":"Birt","src.categories.components.CategoryProductList.1134347598":"Verð","src.orders.components.OrderFulfillment.1134347598":"Verð","src.products.components.ProductList.1134347598":"Verð","src.products.components.ProductListPage.1134347598":"Verð","src.products.components.ProductPricing.1134347598":"Verð","src.components.ProductList.1134347598":"Verð","src.orders.components.OrderDraftDetailsProducts.1134347598":"Verð","src.orders.components.OrderUnfulfilledItems.1134347598":"Verð","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"Verð","src.shipping.components.ShippingZoneRates.1134347598":"Verð","src.categories.components.CategoryProductList.2341910657":"Ekki birt","src.products.components.ProductList.2341910657":"Ekki birt","src.collections.components.CollectionList.2341910657":"Ekki birt","src.collections.components.CollectionProducts.2341910657":"Ekki birt","src.discounts.components.DiscountProducts.2341910657":"Ekki birt","src.components.ProductList.2341910657":"Ekki birt","src.categories.components.CategoryProductList.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.products.components.ProductList.1657559629":"","src.categories.components.CategoryProducts.4164156574":"","src.categories.components.CategoryProducts.3554578821":"Bæta við vöru","src.categories.components.CategoryUpdatePage.2968663655":"Vörur","src.discounts.components.DiscountCategories.2968663655":"Vörur","src.discounts.components.DiscountCollections.2968663655":"Vörur","src.products":"Vörur","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryUpdatePage.3229914152":"","src.categories.components.CategoryUpdatePage.770296100":"","src.categories.views.1754466114":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.CategoryList.3488150607":"","src.categories.views.712767046":"","src.categories.views.CategoryList.712767046":"","src.categories.views.299584400":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.categories.views.CategoryList.2144707585":"","src.collections.components.CollectionCreatePage.3958681866":"","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionCreatePage.2001551496":"","src.collections.components.CollectionDetailsPage.2001551496":"","src.pages.components.PageDetailsPage.2001551496":"","src.products.components.ProductCreatePage.2001551496":"","src.products.components.ProductUpdatePage.2001551496":"","src.collections.components.CollectionCreatePage.1815688500":"","src.collections.components.CollectionDetailsPage.1815688500":"","src.pages.components.PageDetailsPage.1815688500":"","src.products.components.ProductCreatePage.1815688500":"","src.products.components.ProductUpdatePage.1815688500":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"","src.availability":"","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionListPage.686910896":"","src.collections.views.686910896":"","src.collections.components.CollectionListPage.1631917001":"","src.collections.components.CollectionListPage.4057224233":"","src.components.AssignCollectionDialog.4057224233":"","src.translations.components.TranslationsEntitiesListPage.4057224233":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"","src.collections.views.2402899582":"","src.collections.views.CollectionList.2237014112":"Taka úr birtingu","src.pages.views.2237014112":"Taka úr birtingu","src.products.views.ProductList.2237014112":"Taka úr birtingu","src.collections.views.CollectionList.1547167026":"Birta","src.pages.views.1547167026":"Birta","src.products.views.ProductList.1547167026":"Birta","src.collections.views.CollectionList.2823425739":"","src.collections.views.CollectionList.1348793822":"","src.collections.views.CollectionList.2637364047":"","src.collections.views.CollectionList.3944356444":"","src.collections.views.CollectionList.3817188998":"","src.collections.views.CollectionList.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"Skrá út","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"","src.components.ErrorMessageCard.2845142593":"","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.Filter.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.Filter.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.FilterBar.2340527467":"","src.components.SearchBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"Bæta við","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"Sýnileiki","src.pages.components.PageList.1459686496":"Sýnileiki","src.products.components.ProductListFilter.1459686496":"Sýnileiki","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"Falið","src.products.views.ProductList.hidden":"Falið","src.components.VisibilityCard.292404896":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","src.configuration.2326418019":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","src.configuration.3655543906":"","configurationMenuShipping":"","configurationMenuTaxes":"","src.configuration.3140151600":"","configurationMenuStaff":"","src.configuration.1233229030":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","configurationPluginsPages":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"Greiðslustaður","src.customers.components.CustomerAddresses.3517722732":"Afhendingarstaður","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"Heimilisfang","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"Útskýringar","src.orders.components.OrderCustomerNote.1520756907":"Útskýringar","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"Athugasemd","src.customers.components.CustomerDetails.577013340":"Athugasemd","src.customers.components.CustomerCreatePage.1934221653":"Bæta við viðskiptavin","src.customers.components.CustomerListPage.1934221653":"Bæta við viðskiptavin","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerListPage.477293306":"","src.customers.components.CustomerListPage.1643417013":"","src.customers.components.CustomerOrders.3878642352":"Nýlegar pantanir","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"Dagsetning","src.orders.components.OrderDraftList.4205493358":"Dagsetning","src.orders.components.OrderList.4205493358":"Dagsetning","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"Staða","src.orders.components.OrderListFilter.1756106276":"Staða","src.plugins.components.PluginInfo.1756106276":"Staða","src.products.components.ProductListFilter.1756106276":"Staða","src.products.components.ProductVariants.1756106276":"Staða","src.customers.components.CustomerOrders.878013594":"Samtals","src.orders.components.OrderDraftDetailsProducts.878013594":"Samtals","src.orders.components.OrderDraftDetailsSummary.878013594":"Samtals","src.orders.components.OrderDraftList.878013594":"Samtals","src.orders.components.OrderFulfillment.878013594":"Samtals","src.orders.components.OrderUnfulfilledItems.878013594":"Samtals","src.orders.components.OrderList.878013594":"Samtals","src.orders.components.OrderPayment.878013594":"Samtals","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.CustomerList.1946482599":"","src.customers.views.CustomerList.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","src.discounts.components.SaleListPage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"Gildi","src.discounts.components.SaleSummary.1148029984":"Gildi","src.discounts.components.VoucherList.1148029984":"Gildi","src.discounts.components.VoucherSummary.1148029984":"Gildi","src.discounts.components.VoucherValue.1148029984":"Gildi","src.products.components.ProductAttributes.1148029984":"Gildi","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.3907768880":"","src.discounts.components.SaleListPage.1866913828":"","src.translations.components.TranslationsEntitiesListPage.1866913828":"","src.discounts.components.SalePricing.1099355007":"","src.products.components.ProductPricing.1099355007":"","src.products.components.ProductVariantPrice.1099355007":"","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"Lönd","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"Kóði","src.discounts.components.VoucherSummary.78726751":"Kóði","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.614836274":"","src.discounts.components.VoucherListPage.1112241061":"","src.discounts.components.VoucherListPage.1930485532":"","src.translations.components.TranslationsEntitiesListPage.1930485532":"","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"","src.discounts.shipment":"","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.SaleList.2809303671":"","src.discounts.views.SaleList.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.VoucherList.367317371":"","src.discounts.views.VoucherList.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.somethingWentWrong":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"Hætta við","src.orders.views.OrderList.3528672691":"Hætta við","src.confirm":"","src.delete":"","src.edit":"Breyta","src.manage":"","src.remove":"Fjarlægja","src.save":"Vista","src.show":"","src.undo":"","src.attributes":"","src.products.components.ProductAttributes.4153345096":"","src.categories":"Flokkar","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"","src.customers":"Viðskiptavinir","src.draftOrders":"","src.home":"Heim","src.navigation":"","src.orders":"Pantanir","src.pages":"Síður","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.plugins":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"Útsölur","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"","src.taxes.components.CountryListPage.3955023266":"","src.translations":"","src.vouchers":"","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"","src.partiallyPaid":"","src.partiallyRefunded":"Endurgreitt að hluta","src.refunded":"Endurgreitt að fullu","src.unpaid":"","src.cancelled":"","src.draft":"Drög","src.fulfilled":"","src.orders.views.OrderList.fulfilled":"","src.orders.components.OrderListFilter.1712863026":"","src.partiallyFulfilled":"","src.unfulfilled":"","src.orders.views.OrderList.unfulfilled":"","src.orders.components.OrderListFilter.1751787272":"","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"Tengill","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"Hætta við pöntun","src.orders.components.OrderDetailsPage.1854613983":"Hætta við pöntun","src.orders.components.OrderDraftPage.1854613983":"Hætta við pöntun","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"Viðskiptavinur","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"Viðskiptavinur","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"","src.orders.components.OrderCustomerEditDialog.1411666943":"","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.632633254":"","src.orders.components.OrderDraftCancelDialog.36681973":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"Vara","src.orders.components.OrderUnfulfilledItems.1895667608":"Vara","src.orders.components.OrderDraftDetailsProducts.2796503714":"Magn","src.orders.components.OrderFulfillment.2796503714":"Magn","src.orders.components.OrderFulfillmentDialog.2796503714":"Magn","src.orders.components.OrderUnfulfilledItems.2796503714":"Magn","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"Millisumma","src.orders.components.OrderPayment.781550514":"Millisumma","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"Stofna pöntun","src.orders.components.OrderListPage.2826235371":"Stofna pöntun","src.orders.components.OrderDraftListPage.551325728":"","src.orders.components.OrderDraftListPage.77765281":"","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"","src.orders.components.OrderFulfillmentCancelDialog.732594284":"","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"VN","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"Rakningarnúmer","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.4067959693":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"Pöntun greidd að fullu","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"Greiðsla","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2415661583":"","src.orders.views.OrderList.readyToCapture":"","src.orders.components.OrderListFilter.2222765704":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"","src.productTypes.components.ProductTypeShipping.1325966144":"","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"","src.orders.components.OrderPayment.3768782744":"","src.orders.components.OrderPayment.2320183694":"","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"","src.orders.components.OrderPayment.2845258362":"Endurgreiða","src.orders.components.OrderPayment.2444197639":"","src.orders.components.OrderPayment.3500506678":"Merkja sem greitt","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"Upphæð","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.1542417144":"","src.products.components.ProductListPage.1542417144":"","src.products.views.1542417144":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.OrderDraftList.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.OrderDraftList.1648805446":"","src.orders.views.OrderDraftList.1161115149":"","src.orders.views.OrderDraftList.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.1068617485":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"Titill","src.pages.components.PageList.1124600214":"Titill","src.pages.components.PageInfo.1116746286":"Innihald","src.translations.components.TranslationsPagesPage.1116746286":"Innihald","src.pages.components.PageList.3478065224":"","src.pages.components.PageSlug.3478065224":"","src.productTypes.components.ProductTypeAttributes.3478065224":"","src.pages.components.PageList.3767550649":"","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.3785394515":"","src.pages.views.3785394515":"","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.plugins.components.PluginInfo.3425535100":"","src.plugins.components.PluginsDetailsPage.3425535100":"","src.plugins.components.PluginInfo.1049131348":"","src.plugins.components.PluginInfo.4013064767":"","src.plugins.components.PluginsDetailsPage.3352026836":"","src.plugins.components.PluginsDetailsPage.2277745418":"","src.plugins.components.PluginsDetailsPage.1970881031":"","src.plugins.components.PluginSettings.1970881031":"","src.plugins.components.PluginsDetailsPage.4241018152":"","src.plugins.components.PluginsList.3247064221":"Virkt","src.staff.components.StaffList.3247064221":"Virkt","src.plugins.components.PluginsList.4120604650":"","src.plugins.components.PluginsList.666641390":"","src.plugins.views.100549097":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"Myndir","src.products.components.ProductVariantImages.3240888698":"Myndir","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"","src.products.components.ProductVariantStock.3841616483":"","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListFilter.821159718":"","src.products.components.ProductListFilter.1421689426":"","src.products.components.ProductListFilter.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"","prodictStockInventoryLabel":"","src.products.components.ProductVariantStock.3490038570":"","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"","src.products.components.ProductVariants.2153006789":"","src.products.components.ProductVariantNavigation.2845381934":"","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.3989383405":"","src.products.views.3989383405":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1591632382":"","src.products.views.1731766393":"","src.products.views.2880386427":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1217376589":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.3479705616":"","src.productTypes.components.ProductTypeListPage.1776073799":"","src.productTypes.components.ProductTypeListPage.3420445375":"","src.translations.components.TranslationsEntitiesListPage.3420445375":"","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.ProductTypeList.4080551769":"","src.productTypes.views.ProductTypeList.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRates.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2673544109":"","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.1947090060":"","src.shipping.views.ShippingZoneDetails.131963671":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"","src.siteSettings.components.SiteSettingsKeys.2446088470":"","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.1481503299":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"Réttindi","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.797461521":"","src.staff.components.StaffListPage.2852350932":"","src.staff.components.StaffListPage.61043583":"","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"Notandi er virkur","src.staff.views.1308770978":"","src.staff.views.8878988":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.2105464697":"","src.translations.components.TranslationsEntitiesListPage.2559018090":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file diff --git a/locale/is.po b/locale/is.po index fd605c520..71ebfe1b5 100644 --- a/locale/is.po +++ b/locale/is.po @@ -3,7 +3,7 @@ # msgid "" msgstr "" -"POT-Creation-Date: 2019-09-06T13:56:36.897Z\n" +"POT-Creation-Date: 2019-09-16T15:25:09.340Z\n" "Last-Translator: Samúel Jón Gunnarsson , 2019\n" "Language-Team: Icelandic (https://www.transifex.com/mirumee/teams/34782/is/)\n" "MIME-Version: 1.0\n" @@ -141,22 +141,6 @@ msgctxt "create new menu item, header" msgid "Add Item" msgstr "" -#. [menuCreateDialogHeader] - dialog header -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json -msgctxt "dialog header" -msgid "Add Menu" -msgstr "" - -#. [menuListPageAddMenu] - button -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json -msgctxt "button" -msgid "Add Menu" -msgstr "" - #. [src.siteSettings.components.SiteSettingsKeyDialog.1238948746] - dialog #. header #. defaultMessage is: @@ -166,14 +150,6 @@ msgctxt "dialog header" msgid "Add New Authorization Key" msgstr "" -#. [src.pages.components.PageDetailsPage.755314116] - page header -#. defaultMessage is: -#. Add Page -#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json -msgctxt "page header" -msgid "Add Page" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.2892088870] - dialog header #. defaultMessage is: #. Add Price Rate @@ -182,38 +158,6 @@ msgctxt "dialog header" msgid "Add Price Rate" msgstr "" -#. [src.orders.components.OrderProductAddDialog.2775402904] - dialog header -#. defaultMessage is: -#. Add Product -#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json -msgctxt "dialog header" -msgid "Add Product" -msgstr "" - -#. [src.products.components.ProductListPage.2775402904] - button -#. defaultMessage is: -#. Add Product -#: build/locale/src/products/components/ProductListPage/ProductListPage.json -msgctxt "button" -msgid "Add Product" -msgstr "" - -#. [src.discounts.components.SaleListPage.1742771332] - button -#. defaultMessage is: -#. Add Sale -#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json -msgctxt "button" -msgid "Add Sale" -msgstr "" - -#. [src.staff.components.StaffAddMemberDialog.3490059488] - dialog header -#. defaultMessage is: -#. Add Staff Member -#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json -msgctxt "dialog header" -msgid "Add Staff Member" -msgstr "" - #. [src.attributes.components.AttributeValueEditDialog.1841790893] - add #. attribute value #. defaultMessage is: @@ -223,14 +167,6 @@ msgctxt "add attribute value" msgid "Add Value" msgstr "" -#. [src.products.views.2178905289] - header -#. defaultMessage is: -#. Add Variant -#: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "header" -msgid "Add Variant" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.1397795758] - add weight #. based shipping method, dialog header #. defaultMessage is: @@ -248,14 +184,6 @@ msgctxt "button" msgid "Add address" msgstr "" -#. [src.attributes.components.AttributeListPage.350498821] - button -#. defaultMessage is: -#. Add attribute -#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json -msgctxt "button" -msgid "Add attribute" -msgstr "" - #. [src.siteSettings.components.SiteSettingsKeyDialog.50561933] - button #. defaultMessage is: #. Add authentication @@ -264,14 +192,6 @@ msgctxt "button" msgid "Add authentication" msgstr "" -#. [src.categories.components.CategoryListPage.228151782] - button -#. defaultMessage is: -#. Add category -#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json -msgctxt "button" -msgid "Add category" -msgstr "" - #. [src.collections.components.CollectionCreatePage.3958681866] - page header #. defaultMessage is: #. Add collection @@ -280,14 +200,6 @@ msgctxt "page header" msgid "Add collection" msgstr "" -#. [src.collections.components.CollectionListPage.3958681866] - button -#. defaultMessage is: -#. Add collection -#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json -msgctxt "button" -msgid "Add collection" -msgstr "" - #. [src.customers.components.CustomerCreatePage.1934221653] - page header #. defaultMessage is: #. Add customer @@ -320,14 +232,6 @@ msgctxt "button" msgid "Add key" msgstr "" -#. [menuItemsAddItem] - add new menu item -#. defaultMessage is: -#. Add new item -#: build/locale/src/navigation/components/MenuItems/MenuItems.json -msgctxt "add new menu item" -msgid "Add new item" -msgstr "" - #. [menuItemsPlaceholder] #. defaultMessage is: #. Add new menu item to begin creating menu @@ -362,14 +266,6 @@ msgctxt "button" msgid "Add or Edit Link" msgstr "" -#. [src.pages.components.PageListPage.1767905232] - button -#. defaultMessage is: -#. Add page -#: build/locale/src/pages/components/PageListPage/PageListPage.json -msgctxt "button" -msgid "Add page" -msgstr "Bæta við síðu" - #. [src.categories.components.CategoryProducts.3554578821] - button #. defaultMessage is: #. Add product @@ -378,14 +274,6 @@ msgctxt "button" msgid "Add product" msgstr "Bæta við vöru" -#. [src.productTypes.components.ProductTypeListPage.889729490] - button -#. defaultMessage is: -#. Add product type -#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json -msgctxt "button" -msgid "Add product type" -msgstr "" - #. [src.orders.components.OrderDraftDetails.2528459381] - button #. defaultMessage is: #. Add products @@ -394,14 +282,6 @@ msgctxt "button" msgid "Add products" msgstr "" -#. [src.shipping.components.ShippingZoneRates.352297149] - button -#. defaultMessage is: -#. Add rate -#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json -msgctxt "button" -msgid "Add rate" -msgstr "" - #. [src.categories.components.CategoryCreatePage.2563994280] #. defaultMessage is: #. Add search engine title and description to make this category easier to @@ -463,30 +343,6 @@ msgctxt "button" msgid "Add shipping carrier" msgstr "" -#. [src.shipping.components.ShippingZonesList.2474410767] - button -#. defaultMessage is: -#. Add shipping zone -#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json -msgctxt "button" -msgid "Add shipping zone" -msgstr "" - -#. [src.staff.components.StaffListPage.802625341] - button -#. defaultMessage is: -#. Add staff member -#: build/locale/src/staff/components/StaffListPage/StaffListPage.json -msgctxt "button" -msgid "Add staff member" -msgstr "" - -#. [src.categories.components.CategoryList.435697837] - button -#. defaultMessage is: -#. Add subcategory -#: build/locale/src/categories/components/CategoryList/CategoryList.json -msgctxt "button" -msgid "Add subcategory" -msgstr "" - #. [src.attributes.components.AttributeProperties.673770329] - add attribute #. as column in product list table #. defaultMessage is: @@ -514,35 +370,14 @@ msgctxt "dialog header" msgid "Add tracking code" msgstr "" -#. [src.attributes.components.AttributeValues.254756045] - add attribute value -#. button -#. defaultMessage is: -#. Add value -#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json -msgctxt "add attribute value button" -msgid "Add value" -msgstr "" - #. [src.products.components.ProductVariantNavigation.2845381934] - button #. defaultMessage is: #. Add variant -#. [src.products.components.ProductVariants.2845381934] - button -#. defaultMessage is: -#. Add variant #: build/locale/src/products/components/ProductVariantNavigation/ProductVariantNavigation.json -#: build/locale/src/products/components/ProductVariants/ProductVariants.json msgctxt "button" msgid "Add variant" msgstr "" -#. [src.discounts.components.VoucherListPage.1536809153] - button -#. defaultMessage is: -#. Add voucher -#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json -msgctxt "button" -msgid "Add voucher" -msgstr "" - #. [src.attributes.views.AttributeDetails.634268988] - added new attribute #. value #. defaultMessage is: @@ -600,14 +435,6 @@ msgctxt "description" msgid "Address line 2" msgstr "" -#. [src.customers.components.CustomerAddress.1320082647] - addres card header -#. defaultMessage is: -#. Address {addressNumber} -#: build/locale/src/customers/components/CustomerAddress/CustomerAddress.json -msgctxt "addres card header" -msgid "Address {addressNumber}" -msgstr "" - #. [src.attributes.components.AttributeValues.1565474525] - attribute values #. list: slug column header #. defaultMessage is: @@ -657,6 +484,46 @@ msgctxt "tax rate" msgid "Agricultural supplies" msgstr "" +#. [src.attributes.components.AttributeListPage.2417065806] - tab name +#. defaultMessage is: +#. All Attributes +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "tab name" +msgid "All Attributes" +msgstr "" + +#. [src.categories.components.CategoryListPage.4294878092] - tab name +#. defaultMessage is: +#. All Categories +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "tab name" +msgid "All Categories" +msgstr "" + +#. [src.collections.components.CollectionListPage.1631917001] - tab name +#. defaultMessage is: +#. All Collections +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "tab name" +msgid "All Collections" +msgstr "" + +#. [src.customers.components.CustomerListPage.477293306] - tab name +#. defaultMessage is: +#. All Customers +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "tab name" +msgid "All Customers" +msgstr "" + +#. [src.orders.components.OrderDraftListPage.551325728] - tab name +#. defaultMessage is: +#. All Drafts +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "tab name" +msgid "All Drafts" +msgstr "" + #. [src.orders.components.OrderListPage.875489544] - tab name #. defaultMessage is: #. All Orders @@ -674,22 +541,54 @@ msgctxt "section header" msgid "All Photos" msgstr "" -#. [src.products.components.ProductListPage.821159718] - tab name +#. [src.productTypes.components.ProductTypeListPage.1776073799] - tab name +#. defaultMessage is: +#. All Product Types +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "tab name" +msgid "All Product Types" +msgstr "" + +#. [src.products.components.ProductListFilter.821159718] - tab name #. defaultMessage is: #. All Products -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "tab name" msgid "All Products" msgstr "" -#. [src.categories.components.CategoryList.3229914152] - section header +#. [src.discounts.components.SaleListPage.3907768880] - tab name +#. defaultMessage is: +#. All Sales +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "tab name" +msgid "All Sales" +msgstr "" + +#. [src.staff.components.StaffListPage.2852350932] - tab name +#. defaultMessage is: +#. All Staff Members +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "tab name" +msgid "All Staff Members" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.3229914152] - section header #. defaultMessage is: #. All Subcategories -#: build/locale/src/categories/components/CategoryList/CategoryList.json +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json msgctxt "section header" msgid "All Subcategories" msgstr "" +#. [src.discounts.components.VoucherListPage.1112241061] - tab name +#. defaultMessage is: +#. All Vouchers +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "tab name" +msgid "All Vouchers" +msgstr "" + #. [src.taxes.components.TaxConfiguration.142803418] #. defaultMessage is: #. All products prices are entered with tax included @@ -797,6 +696,14 @@ msgctxt "description" msgid "Are you sure you want to delete collection's image?" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.36681973] +#. defaultMessage is: +#. Are you sure you want to delete draft #{number}? +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "description" +msgid "Are you sure you want to delete draft #{number}?" +msgstr "" + #. [menuDetailsDeleteMenuContent] #. defaultMessage is: #. Are you sure you want to delete menu {menuName}? @@ -813,6 +720,14 @@ msgctxt "description" msgid "Are you sure you want to delete this address from users address book?" msgstr "" +#. [src.products.views.2880386427] +#. defaultMessage is: +#. Are you sure you want to delete this image? +#: build/locale/src/products/views/ProductImage.json +msgctxt "description" +msgid "Are you sure you want to delete this image?" +msgstr "" + #. [src.attributes.components.AttributeDeleteDialog.3738429348] - dialog #. content #. defaultMessage is: @@ -863,12 +778,7 @@ msgstr "" #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this attribute} #. other{{displayQuantity} categories}}? -#. [src.categories.views.844574071] -#. defaultMessage is: -#. Are you sure you want to delete {counter,plural,one{this attribute} -#. other{{displayQuantity} categories}}? #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this attribute} " @@ -886,22 +796,33 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.2497542455] +#. [src.categories.views.CategoryList.2144707585] +#. defaultMessage is: +#. Are you sure you want to delete {counter,plural,one{this category} +#. other{{displayQuantity} categories}}? +#: build/locale/src/categories/views/CategoryList/CategoryList.json +msgctxt "description" +msgid "" +"Are you sure you want to delete {counter,plural,one{this category} " +"other{{displayQuantity} categories}}?" +msgstr "" + +#. [src.collections.views.CollectionList.2497542455] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this collection} " "other{{displayQuantity} collections}}?" msgstr "" -#. [src.customers.views.409347866] +#. [src.customers.views.CustomerList.409347866] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this customer} #. other{{displayQuantity} customers}}? -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this customer} " @@ -919,11 +840,11 @@ msgid "" "other{{displayQuantity} menus}}?" msgstr "" -#. [src.orders.views.1389231130] - dialog content +#. [src.orders.views.OrderDraftList.1389231130] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this order draft} #. other{{displayQuantity} orderDrafts}}? -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this order draft} " @@ -941,11 +862,11 @@ msgid "" "other{{displayQuantity} pages}}?" msgstr "" -#. [src.productTypes.views.2294091098] - dialog content +#. [src.productTypes.views.ProductTypeList.2294091098] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this product type} #. other{{displayQuantity} product types}}? -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this product type} " @@ -963,11 +884,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.discounts.views.2516361175] - dialog content +#. [src.discounts.views.SaleList.2516361175] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this sale} #. other{{displayQuantity} sales}}? -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this sale} " @@ -996,17 +917,33 @@ msgid "" "other{{displayQuantity} variants}}?" msgstr "" -#. [src.discounts.views.1791926983] - dialog content +#. [src.discounts.views.VoucherList.1791926983] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this voucher} #. other{{displayQuantity} vouchers}}? -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this voucher} " "other{{displayQuantity} vouchers}}?" msgstr "" +#. [src.shipping.views.ShippingZoneDetails.131963671] - unassign country +#. defaultMessage is: +#. Are you sure you want to delete {countryName} from this shipping zone? +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country" +msgid "Are you sure you want to delete {countryName} from this shipping zone?" +msgstr "" + +#. [src.staff.views.8878988] +#. defaultMessage is: +#. Are you sure you want to delete {email} from staff members? +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "description" +msgid "Are you sure you want to delete {email} from staff members?" +msgstr "" + #. [src.customers.views.1927691511] - delete customer, dialog content #. defaultMessage is: #. Are you sure you want to delete {email}? @@ -1121,11 +1058,11 @@ msgctxt "description" msgid "Are you sure you want to mark this order as paid?" msgstr "" -#. [src.collections.views.1348793822] +#. [src.collections.views.CollectionList.1348793822] #. defaultMessage is: #. Are you sure you want to publish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to publish {counter,plural,one{this collection} " @@ -1154,30 +1091,6 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.orders.components.OrderDraftCancelDialog.3199827590] -#. defaultMessage is: -#. Are you sure you want to remove draft #{number}? -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "description" -msgid "Are you sure you want to remove draft #{number}?" -msgstr "" - -#. [src.products.views.672103788] -#. defaultMessage is: -#. Are you sure you want to remove this image? -#: build/locale/src/products/views/ProductImage.json -msgctxt "description" -msgid "Are you sure you want to remove this image?" -msgstr "" - -#. [src.shipping.views.ShippingZoneDetails.1790261672] - unassign country -#. defaultMessage is: -#. Are you sure you want to remove {countryName} from this shipping zone? -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country" -msgid "Are you sure you want to remove {countryName} from this shipping zone?" -msgstr "" - #. [src.staff.views.3945766678] #. defaultMessage is: #. Are you sure you want to remove {email} avatar? @@ -1186,14 +1099,6 @@ msgctxt "description" msgid "Are you sure you want to remove {email} avatar?" msgstr "" -#. [src.staff.views.2728048444] -#. defaultMessage is: -#. Are you sure you want to remove {email} from staff members? -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "description" -msgid "Are you sure you want to remove {email} from staff members?" -msgstr "" - #. [src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450] #. defaultMessage is: #. Are you sure you want to unassign {attributeName} from {productTypeName}? @@ -1274,11 +1179,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.3944356444] +#. [src.collections.views.CollectionList.3944356444] #. defaultMessage is: #. Are you sure you want to unpublish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to unpublish {counter,plural,one{this collection} " @@ -1439,6 +1344,15 @@ msgctxt "button" msgid "Assign products" msgstr "" +#. [src.attributes.components.AttributeValues.351422234] - assign attribute +#. value button +#. defaultMessage is: +#. Assign value +#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json +msgctxt "assign attribute value button" +msgid "Assign value" +msgstr "" + #. [src.attributes.components.AttributeDetails.3605174225] - attribute's slug #. short code label #. defaultMessage is: @@ -1517,6 +1431,14 @@ msgctxt "product attributes, section header" msgid "Attributes" msgstr "" +#. [src.configuration.2326418019] +#. defaultMessage is: +#. Attributes and Product Typess +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Attributes and Product Typess" +msgstr "" + #. [src.attributes.views.AttributeList.3218248395] - deleted multiple #. attributes #. defaultMessage is: @@ -2300,6 +2222,22 @@ msgctxt "description" msgid "Country area" msgstr "" +#. [menuCreateDialogHeader] - dialog header +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json +msgctxt "dialog header" +msgid "Create Menu" +msgstr "" + +#. [menuListPageAddMenu] - button +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json +msgctxt "button" +msgid "Create Menu" +msgstr "" + #. [src.attributes.components.AttributePage.2855501559] - page title #. defaultMessage is: #. Create New Attribute @@ -2324,6 +2262,30 @@ msgctxt "header" msgid "Create New Shipping Zone" msgstr "" +#. [src.pages.components.PageDetailsPage.1068617485] - page header +#. defaultMessage is: +#. Create Page +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page header" +msgid "Create Page" +msgstr "" + +#. [src.orders.components.OrderProductAddDialog.1542417144] - dialog header +#. defaultMessage is: +#. Create Product +#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json +msgctxt "dialog header" +msgid "Create Product" +msgstr "" + +#. [src.products.components.ProductListPage.1542417144] - button +#. defaultMessage is: +#. Create Product +#: build/locale/src/products/components/ProductListPage/ProductListPage.json +msgctxt "button" +msgid "Create Product" +msgstr "" + #. [src.products.views.1542417144] - window title #. defaultMessage is: #. Create Product @@ -2356,11 +2318,19 @@ msgctxt "page header" msgid "Create Sale" msgstr "" -#. [src.products.views.2362587265] - window title +#. [src.discounts.components.SaleListPage.3866518732] - button +#. defaultMessage is: +#. Create Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "button" +msgid "Create Sale" +msgstr "" + +#. [src.products.views.2362587265] - header #. defaultMessage is: #. Create Variant #: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "window title" +msgctxt "header" msgid "Create Variant" msgstr "" @@ -2372,6 +2342,22 @@ msgctxt "page header" msgid "Create Voucher" msgstr "" +#. [src.attributes.components.AttributeListPage.3824684885] - button +#. defaultMessage is: +#. Create attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "button" +msgid "Create attribute" +msgstr "" + +#. [src.categories.components.CategoryListPage.1140231710] - button +#. defaultMessage is: +#. Create category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "button" +msgid "Create category" +msgstr "" + #. [src.categories.views.1140231710] - window title #. defaultMessage is: #. Create category @@ -2380,6 +2366,14 @@ msgctxt "window title" msgid "Create category" msgstr "" +#. [src.collections.components.CollectionListPage.686910896] - button +#. defaultMessage is: +#. Create collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "button" +msgid "Create collection" +msgstr "" + #. [src.collections.views.686910896] - window title #. defaultMessage is: #. Create collection @@ -2396,6 +2390,14 @@ msgctxt "window title" msgid "Create customer" msgstr "" +#. [menuItemsAddItem] - add new menu item +#. defaultMessage is: +#. Create new item +#: build/locale/src/navigation/components/MenuItems/MenuItems.json +msgctxt "add new menu item" +msgid "Create new item" +msgstr "" + #. [src.orders.components.OrderDraftListPage.2826235371] - button #. defaultMessage is: #. Create order @@ -2408,6 +2410,14 @@ msgctxt "button" msgid "Create order" msgstr "Stofna pöntun" +#. [src.pages.components.PageListPage.3785394515] - button +#. defaultMessage is: +#. Create page +#: build/locale/src/pages/components/PageListPage/PageListPage.json +msgctxt "button" +msgid "Create page" +msgstr "" + #. [src.pages.views.3785394515] - header #. defaultMessage is: #. Create page @@ -2419,11 +2429,55 @@ msgstr "" #. [src.shipping.components.ShippingZoneRateDialog.16061680] - button #. defaultMessage is: #. Create rate +#. [src.shipping.components.ShippingZoneRates.16061680] - button +#. defaultMessage is: +#. Create rate #: build/locale/src/shipping/components/ShippingZoneRateDialog/ShippingZoneRateDialog.json +#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json msgctxt "button" msgid "Create rate" msgstr "" +#. [src.shipping.components.ShippingZonesList.2673544109] - button +#. defaultMessage is: +#. Create shipping zone +#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json +msgctxt "button" +msgid "Create shipping zone" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.770296100] - button +#. defaultMessage is: +#. Create subcategory +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json +msgctxt "button" +msgid "Create subcategory" +msgstr "" + +#. [src.products.components.ProductVariants.3989383405] - button +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/components/ProductVariants/ProductVariants.json +msgctxt "button" +msgid "Create variant" +msgstr "" + +#. [src.products.views.3989383405] - window title +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/views/ProductVariantCreate.json +msgctxt "window title" +msgid "Create variant" +msgstr "" + +#. [src.discounts.components.VoucherListPage.614836274] - button +#. defaultMessage is: +#. Create voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "button" +msgid "Create voucher" +msgstr "" + #. [src.collections.views.1597339737] #. defaultMessage is: #. Created collection @@ -2470,7 +2524,11 @@ msgstr "" #. [src.components.FilterBar.2340527467] #. defaultMessage is: #. Custom Filter +#. [src.components.SearchBar.2340527467] +#. defaultMessage is: +#. Custom Filter #: build/locale/src/components/FilterBar/FilterBar.json +#: build/locale/src/components/SearchBar/SearchBar.json msgctxt "description" msgid "Custom Filter" msgstr "" @@ -2726,10 +2784,18 @@ msgctxt "dialog title" msgid "Delete Collection" msgstr "" -#. [src.orders.views.1161115149] - dialog header +#. [src.products.views.1731766393] - dialog header +#. defaultMessage is: +#. Delete Image +#: build/locale/src/products/views/ProductImage.json +msgctxt "dialog header" +msgid "Delete Image" +msgstr "" + +#. [src.orders.views.OrderDraftList.1161115149] - dialog header #. defaultMessage is: #. Delete Order Drafts -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog header" msgid "Delete Order Drafts" msgstr "" @@ -2767,10 +2833,10 @@ msgctxt "dialog header" msgid "Delete Product Type" msgstr "" -#. [src.productTypes.views.4080551769] - dialog header +#. [src.productTypes.views.ProductTypeList.4080551769] - dialog header #. defaultMessage is: #. Delete Product Types -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog header" msgid "Delete Product Types" msgstr "" @@ -2799,10 +2865,10 @@ msgctxt "dialog header" msgid "Delete Sale" msgstr "" -#. [src.discounts.views.2809303671] - dialog header +#. [src.discounts.views.SaleList.2809303671] - dialog header #. defaultMessage is: #. Delete Sales -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog header" msgid "Delete Sales" msgstr "" @@ -2816,9 +2882,13 @@ msgctxt "custom search delete, dialog header" msgid "Delete Search" msgstr "" +#. [src.components.Filter.2173195312] - button +#. defaultMessage is: +#. Delete Search #. [src.components.TableFilter.2173195312] - button #. defaultMessage is: #. Delete Search +#: build/locale/src/components/Filter/FilterSearch.json #: build/locale/src/components/TableFilter/FilterChips.json msgctxt "button" msgid "Delete Search" @@ -2885,10 +2955,10 @@ msgctxt "dialog header" msgid "Delete Voucher" msgstr "" -#. [src.discounts.views.367317371] - dialog header +#. [src.discounts.views.VoucherList.367317371] - dialog header #. defaultMessage is: #. Delete Vouchers -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog header" msgid "Delete Vouchers" msgstr "" @@ -2922,11 +2992,11 @@ msgstr "" #. [src.categories.views.712767046] - dialog title #. defaultMessage is: #. Delete categories -#. [src.categories.views.712767046] - dialog title +#. [src.categories.views.CategoryList.712767046] - dialog title #. defaultMessage is: #. Delete categories #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "dialog title" msgid "Delete categories" msgstr "" @@ -2943,10 +3013,10 @@ msgctxt "dialog title" msgid "Delete category" msgstr "" -#. [src.collections.views.3817188998] - dialog title +#. [src.collections.views.CollectionList.3817188998] - dialog title #. defaultMessage is: #. Delete collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Delete collections" msgstr "" @@ -2959,14 +3029,31 @@ msgctxt "dialog header" msgid "Delete customer" msgstr "" -#. [src.customers.views.1946482599] - dialog header +#. [src.customers.views.CustomerList.1946482599] - dialog header #. defaultMessage is: #. Delete customers -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "dialog header" msgid "Delete customers" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.632633254] - dialog header +#. defaultMessage is: +#. Delete draft order +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "dialog header" +msgid "Delete draft order" +msgstr "" + +#. [src.shipping.views.ShippingZoneDetails.1947090060] - unassign country, +#. dialog header +#. defaultMessage is: +#. Delete from shipping zone +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country, dialog header" +msgid "Delete from shipping zone" +msgstr "" + #. [src.collections.views.942133001] - dialog title #. defaultMessage is: #. Delete image @@ -3027,6 +3114,14 @@ msgctxt "description" msgid "Deleted collection" msgstr "" +#. [src.orders.views.OrderDraftList.1648805446] +#. defaultMessage is: +#. Deleted draft orders +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json +msgctxt "description" +msgid "Deleted draft orders" +msgstr "" + #. [menuListDeletedMenu] #. defaultMessage is: #. Deleted menu @@ -3626,14 +3721,6 @@ msgctxt "order history message" msgid "Fulfilled {quantity} items" msgstr "" -#. [src.orders.components.OrderListFilter.2943502192] - order -#. defaultMessage is: -#. Fulfillment Status -#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json -msgctxt "order" -msgid "Fulfillment Status" -msgstr "" - #. [src.orders.components.OrderHistory.3081292385] - order history message #. defaultMessage is: #. Fulfillment confirmation was sent to customer @@ -3790,12 +3877,12 @@ msgctxt "description" msgid "If empty, the preview shows what will be autogenerated." msgstr "" -#. [src.attributes.components.AttributeProperties.2519239682] +#. [src.attributes.components.AttributeProperties.4048785456] #. defaultMessage is: -#. If enable this attribute can be used as a column in product table. +#. If enabled this attribute can be used as a column in product table. #: build/locale/src/attributes/components/AttributeProperties/AttributeProperties.json msgctxt "description" -msgid "If enable this attribute can be used as a column in product table." +msgid "If enabled this attribute can be used as a column in product table." msgstr "" #. [src.attributes.components.AttributeProperties.787251583] @@ -3901,6 +3988,22 @@ msgctxt "product variant stock" msgid "Inventory" msgstr "" +#. [src.staff.components.StaffAddMemberDialog.1481503299] - dialog header +#. defaultMessage is: +#. Invite Staff Member +#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json +msgctxt "dialog header" +msgid "Invite Staff Member" +msgstr "" + +#. [src.staff.components.StaffListPage.797461521] - button +#. defaultMessage is: +#. Invite staff member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "button" +msgid "Invite staff member" +msgstr "" + #. [src.productTypes.components.ProductTypeShipping.2143413921] - switch #. button #. defaultMessage is: @@ -4253,6 +4356,14 @@ msgctxt "voucher requirement" msgid "Minimum quantity of items" msgstr "" +#. [src.configuration.1233229030] +#. defaultMessage is: +#. Miscellaneous +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Miscellaneous" +msgstr "" + #. [src.attributes.components.AttributeDetails.3334509011] - product attribute #. type #. defaultMessage is: @@ -5085,6 +5196,14 @@ msgctxt "description" msgid "Order History" msgstr "" +#. [src.orders.components.OrderListFilter.2222765704] +#. defaultMessage is: +#. Order Status +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +msgctxt "description" +msgid "Order Status" +msgstr "" + #. [src.orders.components.OrderHistory.1230178536] - order history message #. defaultMessage is: #. Order address was updated @@ -5101,13 +5220,13 @@ msgctxt "order history message" msgid "Order confirmation was sent to customer" msgstr "" -#. [src.orders.views.1872939752] +#. [src.orders.views.OrderDraftList.1872939752] #. defaultMessage is: #. Order draft succesfully created #. [src.orders.views.OrderList.1872939752] #. defaultMessage is: #. Order draft succesfully created -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json #: build/locale/src/orders/views/OrderList/OrderList.json msgctxt "description" msgid "Order draft succesfully created" @@ -5772,6 +5891,14 @@ msgctxt "description" msgid "Product Name" msgstr "" +#. [src.configuration.3655543906] +#. defaultMessage is: +#. Product Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Product Settings" +msgstr "" + #. [src.discounts.components.DiscountProducts.4257289053] #. defaultMessage is: #. Product Type @@ -5930,12 +6057,12 @@ msgctxt "order history message" msgid "Products were added to draft order" msgstr "" -#. [src.orders.components.OrderHistory.2574162126] - order history message +#. [src.orders.components.OrderHistory.4067959693] - order history message #. defaultMessage is: -#. Products were removed from draft order +#. Products were deleted from draft order #: build/locale/src/orders/components/OrderHistory/OrderHistory.json msgctxt "order history message" -msgid "Products were removed from draft order" +msgid "Products were deleted from draft order" msgstr "" #. [src.properties] @@ -5962,10 +6089,10 @@ msgctxt "description" msgid "Provided email address does not exist in our database." msgstr "" -#. [src.collections.views.1547167026] - publish collections +#. [src.collections.views.CollectionList.1547167026] - publish collections #. defaultMessage is: #. Publish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "publish collections" msgid "Publish" msgstr "Birta" @@ -6002,10 +6129,10 @@ msgctxt "dialog header" msgid "Publish Products" msgstr "" -#. [src.collections.views.2823425739] - dialog title +#. [src.collections.views.CollectionList.2823425739] - dialog title #. defaultMessage is: #. Publish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Publish collections" msgstr "" @@ -6179,6 +6306,18 @@ msgctxt "shipping method price" msgid "Rate Price" msgstr "" +#. [src.orders.components.OrderListFilter.2415661583] - order status +#. defaultMessage is: +#. Ready to Capture +#. [src.orders.views.OrderList.readyToCapture] - order status +#. defaultMessage is: +#. Ready to Capture +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +#: build/locale/src/orders/views/OrderList/filters.json +msgctxt "order status" +msgid "Ready to Capture" +msgstr "" + #. [src.customers.components.CustomerOrders.3878642352] - section header #. defaultMessage is: #. Recent orders @@ -6227,22 +6366,14 @@ msgctxt "switch button" msgid "Release all stock allocated to this order" msgstr "" -#. [src.auth.components.LoginPage.3182284913] - login -#. defaultMessage is: -#. Remember me -#: build/locale/src/auth/components/LoginPage/LoginPage.json -msgctxt "login" -msgid "Remember me" -msgstr "" - #. [src.categories.views.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. -#. [src.categories.views.3488150607] +#. [src.categories.views.CategoryList.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "description" msgid "Remember this will also delete all products assigned to this category." msgstr "" @@ -6255,39 +6386,6 @@ msgctxt "button" msgid "Remove" msgstr "Fjarlægja" -#. [src.products.views.490753666] - dialog header -#. defaultMessage is: -#. Remove Image -#: build/locale/src/products/views/ProductImage.json -msgctxt "dialog header" -msgid "Remove Image" -msgstr "" - -#. [src.orders.components.OrderDraftCancelDialog.500287069] - dialog header -#. defaultMessage is: -#. Remove draft order -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "dialog header" -msgid "Remove draft order" -msgstr "" - -#. [src.shipping.views.ShippingZoneDetails.254167659] - unassign country, -#. dialog header -#. defaultMessage is: -#. Remove from shipping zone -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country, dialog header" -msgid "Remove from shipping zone" -msgstr "" - -#. [src.orders.views.3880993240] -#. defaultMessage is: -#. Removed draft orders -#: build/locale/src/orders/views/OrderDraftList.json -msgctxt "description" -msgid "Removed draft orders" -msgstr "" - #. [src.pages.views.1457312643] #. defaultMessage is: #. Removed page @@ -6453,6 +6551,18 @@ msgctxt "button" msgid "Save" msgstr "Vista" +#. [src.components.Filter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#. [src.components.TableFilter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#: build/locale/src/components/Filter/FilterSearch.json +#: build/locale/src/components/TableFilter/FilterChips.json +msgctxt "button" +msgid "Save Custom Search" +msgstr "" + #. [src.components.SaveFilterTabDialog.1514415736] - save filter tab, header #. defaultMessage is: #. Save Custom Search @@ -6461,14 +6571,6 @@ msgctxt "save filter tab, header" msgid "Save Custom Search" msgstr "" -#. [src.components.TableFilter.1514415736] - button -#. defaultMessage is: -#. Save Custom Search -#: build/locale/src/components/TableFilter/FilterChips.json -msgctxt "button" -msgid "Save Custom Search" -msgstr "" - #. [src.products.components.ProductVariantCreatePage.2853608829] - button #. defaultMessage is: #. Save variant @@ -6485,6 +6587,14 @@ msgctxt "description" msgid "Saved changes" msgstr "" +#. [src.attributes.components.AttributeListPage.3916653510] +#. defaultMessage is: +#. Search Attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "description" +msgid "Search Attribute" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.902296540] #. defaultMessage is: #. Search Attributes @@ -6501,10 +6611,30 @@ msgctxt "description" msgid "Search Categories" msgstr "" +#. [src.categories.components.CategoryListPage.3841025483] +#. defaultMessage is: +#. Search Category +#. [src.translations.components.TranslationsEntitiesListPage.3841025483] +#. defaultMessage is: +#. Search Category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Category" +msgstr "" + +#. [src.collections.components.CollectionListPage.4057224233] +#. defaultMessage is: +#. Search Collection #. [src.components.AssignCollectionDialog.4057224233] #. defaultMessage is: #. Search Collection +#. [src.translations.components.TranslationsEntitiesListPage.4057224233] +#. defaultMessage is: +#. Search Collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json #: build/locale/src/components/AssignCollectionDialog/AssignCollectionDialog.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json msgctxt "description" msgid "Search Collection" msgstr "" @@ -6517,6 +6647,14 @@ msgctxt "description" msgid "Search Countries" msgstr "" +#. [src.customers.components.CustomerListPage.1643417013] +#. defaultMessage is: +#. Search Customer +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "description" +msgid "Search Customer" +msgstr "" + #. [src.orders.components.OrderCustomer.2433460203] #. defaultMessage is: #. Search Customers @@ -6525,6 +6663,14 @@ msgctxt "description" msgid "Search Customers" msgstr "" +#. [src.orders.components.OrderDraftListPage.77765281] +#. defaultMessage is: +#. Search Draft +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "description" +msgid "Search Draft" +msgstr "" + #. [src.translations.components.TranslationsCategoriesPage.1406947243] #. defaultMessage is: #. Search Engine Description @@ -6605,6 +6751,34 @@ msgctxt "description" msgid "Search Orders..." msgstr "" +#. [src.translations.components.TranslationsEntitiesListPage.2559018090] +#. defaultMessage is: +#. Search Page +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Page" +msgstr "" + +#. [src.translations.components.TranslationsEntitiesListPage.2105464697] +#. defaultMessage is: +#. Search Product +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product" +msgstr "" + +#. [src.productTypes.components.ProductTypeListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#. [src.translations.components.TranslationsEntitiesListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product Type" +msgstr "" + #. [src.components.AssignProductDialog.2850255786] #. defaultMessage is: #. Search Products @@ -6617,14 +6791,46 @@ msgctxt "description" msgid "Search Products" msgstr "" -#. [src.products.components.ProductListPage.3550330425] +#. [src.products.components.ProductListFilter.3550330425] #. defaultMessage is: #. Search Products... -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Search Products..." msgstr "" +#. [src.discounts.components.SaleListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#. [src.translations.components.TranslationsEntitiesListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Sale" +msgstr "" + +#. [src.staff.components.StaffListPage.61043583] +#. defaultMessage is: +#. Search Staff Member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "description" +msgid "Search Staff Member" +msgstr "" + +#. [src.discounts.components.VoucherListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#. [src.translations.components.TranslationsEntitiesListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Voucher" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.524117994] #. defaultMessage is: #. Search by attribute name @@ -6731,10 +6937,10 @@ msgctxt "description" msgid "Select all orders where:" msgstr "" -#. [src.products.components.ProductListPage.1421689426] +#. [src.products.components.ProductListFilter.1421689426] #. defaultMessage is: #. Select all products where: -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Select all products where:" msgstr "" @@ -6820,6 +7026,14 @@ msgctxt "description" msgid "Set plugin as Active" msgstr "" +#. [src.components.VisibilityCard.292404896] +#. defaultMessage is: +#. Set publication date +#: build/locale/src/components/VisibilityCard/VisibilityCard.json +msgctxt "description" +msgid "Set publication date" +msgstr "" + #. [src.discounts.shipment] - voucher discount #. defaultMessage is: #. Shipment @@ -7085,6 +7299,14 @@ msgctxt "staff section name" msgid "Staff Members" msgstr "" +#. [src.configuration.3140151600] +#. defaultMessage is: +#. Staff Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Staff Settings" +msgstr "" + #. [src.standard] - tax rate #. defaultMessage is: #. Standard @@ -8069,10 +8291,10 @@ msgctxt "payment status" msgid "Unpaid" msgstr "" -#. [src.collections.views.2237014112] - unpublish collections +#. [src.collections.views.CollectionList.2237014112] - unpublish collections #. defaultMessage is: #. Unpublish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "unpublish collections" msgid "Unpublish" msgstr "Taka úr birtingu" @@ -8109,10 +8331,10 @@ msgctxt "dialog header" msgid "Unpublish Products" msgstr "" -#. [src.collections.views.2637364047] - dialog title +#. [src.collections.views.CollectionList.2637364047] - dialog title #. defaultMessage is: #. Unpublish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Unpublish collections" msgstr "" @@ -8612,6 +8834,22 @@ msgctxt "description" msgid "ZIP / Postal code" msgstr "" +#. [src.productTypes.components.ProductTypeListPage.3479705616] - button +#. defaultMessage is: +#. create product type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "button" +msgid "create product type" +msgstr "" + +#. [src.staff.views.1308770978] - dialog header +#. defaultMessage is: +#. delete Staff User +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "dialog header" +msgid "delete Staff User" +msgstr "" + #. [orderPaymentVATDoesNotApply] - vat not included in order price #. defaultMessage is: #. does not apply @@ -8685,19 +8923,35 @@ msgctxt "product status is set as" msgid "is set as" msgstr "" -#. [src.staff.views.2240444792] - dialog header -#. defaultMessage is: -#. remove Staff User -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "dialog header" -msgid "remove Staff User" -msgstr "" - -#. [src.components.VisibilityCard.1815688500] +#. [src.collections.components.CollectionCreatePage.1815688500] - collection #. defaultMessage is: #. since {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.1815688500] - collection +#. defaultMessage is: +#. since {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "since {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.1815688500] - page +#. defaultMessage is: +#. since {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "since {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#. [src.products.components.ProductUpdatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "since {date}" msgstr "" @@ -8725,11 +8979,35 @@ msgctxt "weight" msgid "to {value} {unit}" msgstr "" -#. [src.components.VisibilityCard.2001551496] +#. [src.collections.components.CollectionCreatePage.2001551496] - collection #. defaultMessage is: #. will be visible from {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.2001551496] - collection +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "will be visible from {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.2001551496] - page +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "will be visible from {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#. [src.products.components.ProductUpdatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "will be visible from {date}" msgstr "" diff --git a/locale/it.json b/locale/it.json index 6f9b7d8f1..add6a2cdb 100644 --- a/locale/it.json +++ b/locale/it.json @@ -1 +1 @@ -{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"Elimina attributo","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.350498821":"Aggiungi attributo","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.2519239682":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"Nome","src.categories.components.CategoryProducts.636461959":"Nome","src.collections.components.CollectionProducts.636461959":"Nome","src.products.components.ProductDetailsForm.636461959":"Nome","src.collections.components.CollectionDetails.636461959":"Nome","src.components.ProductList.636461959":"Nome","src.discounts.components.SaleInfo.636461959":"Nome","src.discounts.components.SaleList.636461959":"Nome","src.discounts.components.SaleSummary.636461959":"Nome","menuItemDialogNameLabel":"Nome","src.products.components.ProductVariants.636461959":"Nome","src.shipping.components.ShippingZoneRates.636461959":"Nome","src.shipping.components.ShippingZonesList.636461959":"Nome","src.staff.components.StaffList.636461959":"Nome","src.translations.components.TranslationsEntitiesList.636461959":"Nome","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.254756045":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.3182284913":"","src.auth.components.LoginPage.109182747":"Accesso","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"Elimina categoria","src.categories.views.2004894945":"Elimina categoria","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.3229914152":"","src.categories.components.CategoryList.435697837":"","src.categories.components.CategoryList.2159874182":"Sottocategorie","src.categories.components.CategoryUpdatePage.2159874182":"Sottocategorie","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.228151782":"Aggiungi categoria","src.categories.components.CategoryProducts.2968663655":"Prodotti","src.categories.components.CategoryUpdatePage.2968663655":"Prodotti","src.discounts.components.DiscountCategories.2968663655":"Prodotti","src.discounts.components.DiscountCollections.2968663655":"Prodotti","src.products":"Prodotti","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryProducts.3554578821":"Aggiungi prodotto","src.categories.components.CategoryProductsCard.3554578821":"Aggiungi prodotto","src.categories.components.CategoryProducts.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProducts.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.categories.components.CategoryProductsCard.4164156574":"","src.categories.views.1754466114":"","src.categories.views.1140231710":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.712767046":"","src.categories.views.299584400":"","src.categories.views.844574071":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.collections.components.CollectionCreatePage.3958681866":"Aggiungi collezione","src.collections.components.CollectionListPage.3958681866":"Aggiungi collezione","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"","src.availability":"","src.collections.components.CollectionList.3640454975":"Pubblicato","src.collections.components.CollectionProducts.3640454975":"Pubblicato","src.discounts.components.DiscountProducts.3640454975":"Pubblicato","src.components.ProductList.3640454975":"Pubblicato","src.products.components.ProductListPage.3640454975":"Pubblicato","src.pages.components.PageList.3640454975":"Pubblicato","src.products.views.ProductList.published":"Pubblicato","src.collections.components.CollectionList.2341910657":"Non pubblicato","src.collections.components.CollectionProducts.2341910657":"Non pubblicato","src.discounts.components.DiscountProducts.2341910657":"Non pubblicato","src.components.ProductList.2341910657":"Non pubblicato","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.686910896":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"Elimina immagine","src.collections.views.2402899582":"","src.collections.views.2237014112":"Non pubblicare","src.pages.views.2237014112":"Non pubblicare","src.products.views.ProductList.2237014112":"Non pubblicare","src.collections.views.1547167026":"Pubblicato","src.pages.views.1547167026":"Pubblicato","src.products.views.ProductList.1547167026":"Pubblicato","src.collections.views.2823425739":"","src.collections.views.1348793822":"","src.collections.views.2637364047":"","src.collections.views.3944356444":"","src.collections.views.3817188998":"","src.collections.views.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"Esci","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.4057224233":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"Errore","src.components.ErrorMessageCard.2845142593":"Errore","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.FilterBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"Aggiungi","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.ProductList.1134347598":"Prezzo","src.orders.components.OrderDraftDetailsProducts.1134347598":"Prezzo","src.orders.components.OrderFulfillment.1134347598":"Prezzo","src.products.components.ProductListPage.1134347598":"Prezzo","src.products.components.ProductPricing.1134347598":"Prezzo","src.orders.components.OrderUnfulfilledItems.1134347598":"Prezzo","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"Prezzo","src.shipping.components.ShippingZoneRates.1134347598":"Prezzo","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"Visibilità","src.pages.components.PageList.1459686496":"Visibilità","src.products.components.ProductListFilter.1459686496":"Visibilità","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"","src.products.views.ProductList.hidden":"","src.components.VisibilityCard.1815688500":"","src.components.VisibilityCard.2001551496":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","configurationMenuStaff":"","configurationMenuShipping":"","configurationMenuTaxes":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","src.customers.components.CustomerAddress.1320082647":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"Indirizzo di fatturazione","src.customers.components.CustomerAddresses.3517722732":"Indirizzo di spedizione","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"Indirizzo","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"Note","src.orders.components.OrderCustomerNote.1520756907":"Note","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"Nota","src.customers.components.CustomerDetails.577013340":"Nota","src.customers.components.CustomerCreatePage.1934221653":"Aggiungi cliente","src.customers.components.CustomerListPage.1934221653":"Aggiungi cliente","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerOrders.3878642352":"Ordini recenti","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"Data","src.orders.components.OrderDraftList.4205493358":"Data","src.orders.components.OrderList.4205493358":"Data","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"Stato","src.orders.components.OrderListFilter.1756106276":"Stato","src.products.components.ProductListFilter.1756106276":"Stato","src.products.components.ProductVariants.1756106276":"Stato","src.customers.components.CustomerOrders.878013594":"Totale","src.orders.components.OrderDraftDetailsProducts.878013594":"Totale","src.orders.components.OrderDraftDetailsSummary.878013594":"Totale","src.orders.components.OrderDraftList.878013594":"Totale","src.orders.components.OrderFulfillment.878013594":"Totale","src.orders.components.OrderUnfulfilledItems.878013594":"Totale","src.orders.components.OrderList.878013594":"Totale","src.orders.components.OrderPayment.878013594":"Totale","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"Elimina Indirizzo","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.1946482599":"","src.customers.views.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"Valore","src.discounts.components.SaleSummary.1148029984":"Valore","src.discounts.components.VoucherList.1148029984":"Valore","src.discounts.components.VoucherSummary.1148029984":"Valore","src.discounts.components.VoucherValue.1148029984":"Valore","src.products.components.ProductAttributes.1148029984":"Valore","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.1742771332":"","src.discounts.components.SalePricing.1099355007":"","src.products.components.ProductPricing.1099355007":"","src.products.components.ProductVariantPrice.1099355007":"","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"Nazioni","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"Codice","src.discounts.components.VoucherSummary.78726751":"Codice","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.1536809153":"Aggiungi voucher","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"Prodotti specifici","src.discounts.shipment":"Spedizione","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.2809303671":"","src.discounts.views.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.367317371":"","src.discounts.views.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"Annulla","src.orders.views.OrderList.3528672691":"Annulla","src.confirm":"","src.delete":"Elimina","src.edit":"Modifica","src.manage":"","src.remove":"Rimuovi","src.save":"Salva","src.show":"","src.undo":"","src.attributes":"Attributi","src.products.components.ProductAttributes.4153345096":"Attributi","src.categories":"Categorie","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"Collezioni","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"Configurazione","src.customers":"Clienti","src.draftOrders":"","src.home":"Home","src.navigation":"Navigazione","src.orders":"Ordini","src.pages":"Pagine","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"Vendite","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"","src.taxes.components.CountryListPage.3955023266":"","src.translations":"","src.vouchers":"Voucher","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"Pagato","src.partiallyPaid":"","src.partiallyRefunded":"","src.refunded":"","src.unpaid":"","src.cancelled":"Annullato","src.draft":"Bozza","src.fulfilled":"Evaso","src.orders.views.OrderList.fulfilled":"Evaso","src.orders.components.OrderListFilter.1712863026":"Evaso","src.partiallyFulfilled":"Parzialmente evaso","src.unfulfilled":"Non evaso","src.orders.views.OrderList.unfulfilled":"Non evaso","src.orders.components.OrderListFilter.1751787272":"Non evaso","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","src.1395232177":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"Collegamento","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"Modifica indirizzo di fatturazione","src.orders.components.OrderAddressEditDialog.462765358":"Modifica indirizzo di spedizione","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"","src.orders.components.OrderDetailsPage.1854613983":"","src.orders.components.OrderDraftPage.1854613983":"","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"Cliente","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"Cliente","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"","src.orders.components.OrderCustomerEditDialog.1411666943":"","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.500287069":"","src.orders.components.OrderDraftCancelDialog.3199827590":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"Prodotto","src.orders.components.OrderUnfulfilledItems.1895667608":"Prodotto","src.orders.components.OrderDraftDetailsProducts.2796503714":"Quantità","src.orders.components.OrderFulfillment.2796503714":"Quantità","src.orders.components.OrderFulfillmentDialog.2796503714":"Quantità","src.orders.components.OrderUnfulfilledItems.2796503714":"Quantità","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"Subtotale","src.orders.components.OrderPayment.781550514":"Subtotale","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"","src.orders.components.OrderListPage.2826235371":"","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"","src.orders.components.OrderFulfillmentCancelDialog.732594284":"","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"SKU","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"Numero di tracking","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.2574162126":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"Ordine inviato","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"Pagamento","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2943502192":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"Spedizione","src.productTypes.components.ProductTypeShipping.1325966144":"Spedizione","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"Spedizione","src.orders.components.OrderPayment.3768782744":"Importo pre-autorizzato","src.orders.components.OrderPayment.2320183694":"Importo acquisito","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"Acquisisci","src.orders.components.OrderPayment.2845258362":"Rimborsa","src.orders.components.OrderPayment.2444197639":"","src.orders.components.OrderPayment.3500506678":"","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"Importo","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.2775402904":"","src.products.components.ProductListPage.2775402904":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.3880993240":"","src.orders.views.1161115149":"","src.orders.views.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.755314116":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"Titolo","src.pages.components.PageList.1124600214":"Titolo","src.pages.components.PageInfo.1116746286":"Contenuto","src.translations.components.TranslationsPagesPage.1116746286":"Contenuto","src.pages.components.PageList.3478065224":"","src.pages.components.PageSlug.3478065224":"","src.productTypes.components.ProductTypeAttributes.3478065224":"","src.pages.components.PageList.3767550649":"","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.1767905232":"","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.3785394515":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"Valori","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"Immagini","src.products.components.ProductVariantImages.3240888698":"Immagini","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"Magazzino","src.products.components.ProductVariantStock.3841616483":"Magazzino","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListPage.821159718":"","src.products.components.ProductListPage.1421689426":"","src.products.components.ProductListPage.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"","prodictStockInventoryLabel":"","src.products.components.ProductVariantStock.3490038570":"","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"Elimina variante","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"Varianti","src.products.components.ProductVariants.2153006789":"Varianti","src.products.components.ProductVariantNavigation.2845381934":"Aggiungi variante","src.products.components.ProductVariants.2845381934":"Aggiungi variante","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1542417144":"","src.products.views.1591632382":"","src.products.views.490753666":"","src.products.views.672103788":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.1694086800":"","src.products.views.ProductList.224127438":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.products.views.2178905289":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1756957616":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.889729490":"Aggiungi tipologia prodotto","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.4080551769":"","src.productTypes.views.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.352297149":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2474410767":"","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.254167659":"","src.shipping.views.ShippingZoneDetails.1790261672":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"Chiave","src.siteSettings.components.SiteSettingsKeys.2446088470":"Chiave","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.3490059488":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"Permessi","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.3247064221":"Attivo","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.802625341":"Aggiungi membro dello staff","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"L'utente è attivo","src.staff.views.2240444792":"","src.staff.views.2728048444":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file +{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"Elimina attributo","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.3824684885":"","src.attributes.components.AttributeListPage.2417065806":"","src.attributes.components.AttributeListPage.3916653510":"","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.4048785456":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"Nome","src.categories.components.CategoryProductList.636461959":"Nome","src.components.ProductList.636461959":"Nome","src.products.components.ProductList.636461959":"Nome","src.collections.components.CollectionDetails.636461959":"Nome","src.collections.components.CollectionProducts.636461959":"Nome","src.products.components.ProductDetailsForm.636461959":"Nome","src.discounts.components.SaleInfo.636461959":"Nome","src.discounts.components.SaleList.636461959":"Nome","src.discounts.components.SaleSummary.636461959":"Nome","menuItemDialogNameLabel":"Nome","src.plugins.components.PluginsList.636461959":"Nome","src.products.components.ProductVariants.636461959":"Nome","src.shipping.components.ShippingZoneRates.636461959":"Nome","src.shipping.components.ShippingZonesList.636461959":"Nome","src.staff.components.StaffList.636461959":"Nome","src.translations.components.TranslationsEntitiesList.636461959":"Nome","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.351422234":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.109182747":"Accesso","src.auth.components.LoginPage.4028609483":"","src.auth.components.NewPasswordPage.1915811227":"","src.auth.components.NewPasswordPage.1254879564":"","src.auth.components.NewPasswordPage.2799926859":"","src.auth.components.NewPasswordPage.4253911811":"","src.auth.components.NewPasswordPage.2342634351":"","src.auth.components.ResetPasswordPage.2370700732":"","src.auth.components.ResetPasswordPage.3663311080":"","src.auth.components.ResetPasswordSuccessPage.4066297200":"","src.auth.components.ResetPasswordSuccessPage.2245157344":"","src.auth.views.2388238158":"","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"Elimina categoria","src.categories.views.2004894945":"Elimina categoria","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.2159874182":"Sottocategorie","src.categories.components.CategoryUpdatePage.2159874182":"Sottocategorie","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.1140231710":"","src.categories.views.1140231710":"","src.categories.components.CategoryListPage.4294878092":"","src.categories.components.CategoryListPage.3841025483":"","src.translations.components.TranslationsEntitiesListPage.3841025483":"","src.categories.components.CategoryProductList.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductList.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProductList.3640454975":"Pubblicato","src.components.ProductList.3640454975":"Pubblicato","src.products.components.ProductList.3640454975":"Pubblicato","src.products.components.ProductListPage.3640454975":"Pubblicato","productStatusLabel":"Pubblicato","src.collections.components.CollectionList.3640454975":"Pubblicato","src.collections.components.CollectionProducts.3640454975":"Pubblicato","src.discounts.components.DiscountProducts.3640454975":"Pubblicato","src.pages.components.PageList.3640454975":"Pubblicato","src.products.views.ProductList.published":"Pubblicato","src.categories.components.CategoryProductList.1134347598":"Prezzo","src.orders.components.OrderFulfillment.1134347598":"Prezzo","src.products.components.ProductList.1134347598":"Prezzo","src.products.components.ProductListPage.1134347598":"Prezzo","src.products.components.ProductPricing.1134347598":"Prezzo","src.components.ProductList.1134347598":"Prezzo","src.orders.components.OrderDraftDetailsProducts.1134347598":"Prezzo","src.orders.components.OrderUnfulfilledItems.1134347598":"Prezzo","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"Prezzo","src.shipping.components.ShippingZoneRates.1134347598":"Prezzo","src.categories.components.CategoryProductList.2341910657":"Non pubblicato","src.products.components.ProductList.2341910657":"Non pubblicato","src.collections.components.CollectionList.2341910657":"Non pubblicato","src.collections.components.CollectionProducts.2341910657":"Non pubblicato","src.discounts.components.DiscountProducts.2341910657":"Non pubblicato","src.components.ProductList.2341910657":"Non pubblicato","src.categories.components.CategoryProductList.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.products.components.ProductList.1657559629":"","src.categories.components.CategoryProducts.4164156574":"","src.categories.components.CategoryProducts.3554578821":"Aggiungi prodotto","src.categories.components.CategoryUpdatePage.2968663655":"Prodotti","src.discounts.components.DiscountCategories.2968663655":"Prodotti","src.discounts.components.DiscountCollections.2968663655":"Prodotti","src.products":"Prodotti","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryUpdatePage.3229914152":"","src.categories.components.CategoryUpdatePage.770296100":"","src.categories.views.1754466114":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.CategoryList.3488150607":"","src.categories.views.712767046":"","src.categories.views.CategoryList.712767046":"","src.categories.views.299584400":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.categories.views.CategoryList.2144707585":"","src.collections.components.CollectionCreatePage.3958681866":"Aggiungi collezione","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionCreatePage.2001551496":"","src.collections.components.CollectionDetailsPage.2001551496":"","src.pages.components.PageDetailsPage.2001551496":"","src.products.components.ProductCreatePage.2001551496":"","src.products.components.ProductUpdatePage.2001551496":"","src.collections.components.CollectionCreatePage.1815688500":"","src.collections.components.CollectionDetailsPage.1815688500":"","src.pages.components.PageDetailsPage.1815688500":"","src.products.components.ProductCreatePage.1815688500":"","src.products.components.ProductUpdatePage.1815688500":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"","src.availability":"","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionListPage.686910896":"","src.collections.views.686910896":"","src.collections.components.CollectionListPage.1631917001":"","src.collections.components.CollectionListPage.4057224233":"","src.components.AssignCollectionDialog.4057224233":"","src.translations.components.TranslationsEntitiesListPage.4057224233":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"Elimina immagine","src.collections.views.2402899582":"","src.collections.views.CollectionList.2237014112":"Non pubblicare","src.pages.views.2237014112":"Non pubblicare","src.products.views.ProductList.2237014112":"Non pubblicare","src.collections.views.CollectionList.1547167026":"Pubblicato","src.pages.views.1547167026":"Pubblicato","src.products.views.ProductList.1547167026":"Pubblicato","src.collections.views.CollectionList.2823425739":"","src.collections.views.CollectionList.1348793822":"","src.collections.views.CollectionList.2637364047":"","src.collections.views.CollectionList.3944356444":"","src.collections.views.CollectionList.3817188998":"","src.collections.views.CollectionList.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"Esci","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"Errore","src.components.ErrorMessageCard.2845142593":"Errore","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.Filter.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.Filter.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.FilterBar.2340527467":"","src.components.SearchBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"Aggiungi","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"Visibilità","src.pages.components.PageList.1459686496":"Visibilità","src.products.components.ProductListFilter.1459686496":"Visibilità","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"","src.products.views.ProductList.hidden":"","src.components.VisibilityCard.292404896":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","src.configuration.2326418019":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","src.configuration.3655543906":"","configurationMenuShipping":"","configurationMenuTaxes":"","src.configuration.3140151600":"","configurationMenuStaff":"","src.configuration.1233229030":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","configurationPluginsPages":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"Indirizzo di fatturazione","src.customers.components.CustomerAddresses.3517722732":"Indirizzo di spedizione","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"Indirizzo","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"Note","src.orders.components.OrderCustomerNote.1520756907":"Note","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"Nota","src.customers.components.CustomerDetails.577013340":"Nota","src.customers.components.CustomerCreatePage.1934221653":"Aggiungi cliente","src.customers.components.CustomerListPage.1934221653":"Aggiungi cliente","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerListPage.477293306":"","src.customers.components.CustomerListPage.1643417013":"","src.customers.components.CustomerOrders.3878642352":"Ordini recenti","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"Data","src.orders.components.OrderDraftList.4205493358":"Data","src.orders.components.OrderList.4205493358":"Data","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"Stato","src.orders.components.OrderListFilter.1756106276":"Stato","src.plugins.components.PluginInfo.1756106276":"Stato","src.products.components.ProductListFilter.1756106276":"Stato","src.products.components.ProductVariants.1756106276":"Stato","src.customers.components.CustomerOrders.878013594":"Totale","src.orders.components.OrderDraftDetailsProducts.878013594":"Totale","src.orders.components.OrderDraftDetailsSummary.878013594":"Totale","src.orders.components.OrderDraftList.878013594":"Totale","src.orders.components.OrderFulfillment.878013594":"Totale","src.orders.components.OrderUnfulfilledItems.878013594":"Totale","src.orders.components.OrderList.878013594":"Totale","src.orders.components.OrderPayment.878013594":"Totale","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"Elimina Indirizzo","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.CustomerList.1946482599":"","src.customers.views.CustomerList.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","src.discounts.components.SaleListPage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"Valore","src.discounts.components.SaleSummary.1148029984":"Valore","src.discounts.components.VoucherList.1148029984":"Valore","src.discounts.components.VoucherSummary.1148029984":"Valore","src.discounts.components.VoucherValue.1148029984":"Valore","src.products.components.ProductAttributes.1148029984":"Valore","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.3907768880":"","src.discounts.components.SaleListPage.1866913828":"","src.translations.components.TranslationsEntitiesListPage.1866913828":"","src.discounts.components.SalePricing.1099355007":"","src.products.components.ProductPricing.1099355007":"","src.products.components.ProductVariantPrice.1099355007":"","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"Nazioni","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"Codice","src.discounts.components.VoucherSummary.78726751":"Codice","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.614836274":"","src.discounts.components.VoucherListPage.1112241061":"","src.discounts.components.VoucherListPage.1930485532":"","src.translations.components.TranslationsEntitiesListPage.1930485532":"","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"Prodotti specifici","src.discounts.shipment":"Spedizione","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.SaleList.2809303671":"","src.discounts.views.SaleList.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.VoucherList.367317371":"","src.discounts.views.VoucherList.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.somethingWentWrong":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"Annulla","src.orders.views.OrderList.3528672691":"Annulla","src.confirm":"","src.delete":"Elimina","src.edit":"Modifica","src.manage":"","src.remove":"Rimuovi","src.save":"Salva","src.show":"","src.undo":"","src.attributes":"Attributi","src.products.components.ProductAttributes.4153345096":"Attributi","src.categories":"Categorie","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"Collezioni","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"Configurazione","src.customers":"Clienti","src.draftOrders":"","src.home":"Home","src.navigation":"Navigazione","src.orders":"Ordini","src.pages":"Pagine","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.plugins":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"Vendite","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"","src.taxes.components.CountryListPage.3955023266":"","src.translations":"","src.vouchers":"Voucher","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"Pagato","src.partiallyPaid":"","src.partiallyRefunded":"","src.refunded":"","src.unpaid":"","src.cancelled":"Annullato","src.draft":"Bozza","src.fulfilled":"Evaso","src.orders.views.OrderList.fulfilled":"Evaso","src.orders.components.OrderListFilter.1712863026":"Evaso","src.partiallyFulfilled":"Parzialmente evaso","src.unfulfilled":"Non evaso","src.orders.views.OrderList.unfulfilled":"Non evaso","src.orders.components.OrderListFilter.1751787272":"Non evaso","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"Collegamento","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"Modifica indirizzo di fatturazione","src.orders.components.OrderAddressEditDialog.462765358":"Modifica indirizzo di spedizione","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"","src.orders.components.OrderDetailsPage.1854613983":"","src.orders.components.OrderDraftPage.1854613983":"","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"Cliente","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"Cliente","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"","src.orders.components.OrderCustomerEditDialog.1411666943":"","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.632633254":"","src.orders.components.OrderDraftCancelDialog.36681973":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"Prodotto","src.orders.components.OrderUnfulfilledItems.1895667608":"Prodotto","src.orders.components.OrderDraftDetailsProducts.2796503714":"Quantità","src.orders.components.OrderFulfillment.2796503714":"Quantità","src.orders.components.OrderFulfillmentDialog.2796503714":"Quantità","src.orders.components.OrderUnfulfilledItems.2796503714":"Quantità","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"Subtotale","src.orders.components.OrderPayment.781550514":"Subtotale","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"","src.orders.components.OrderListPage.2826235371":"","src.orders.components.OrderDraftListPage.551325728":"","src.orders.components.OrderDraftListPage.77765281":"","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"","src.orders.components.OrderFulfillmentCancelDialog.732594284":"","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"SKU","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"Numero di tracking","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.4067959693":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"Ordine inviato","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"Pagamento","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2415661583":"","src.orders.views.OrderList.readyToCapture":"","src.orders.components.OrderListFilter.2222765704":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"Spedizione","src.productTypes.components.ProductTypeShipping.1325966144":"Spedizione","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"Spedizione","src.orders.components.OrderPayment.3768782744":"Importo pre-autorizzato","src.orders.components.OrderPayment.2320183694":"Importo acquisito","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"Acquisisci","src.orders.components.OrderPayment.2845258362":"Rimborsa","src.orders.components.OrderPayment.2444197639":"","src.orders.components.OrderPayment.3500506678":"","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"Importo","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.1542417144":"","src.products.components.ProductListPage.1542417144":"","src.products.views.1542417144":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.OrderDraftList.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.OrderDraftList.1648805446":"","src.orders.views.OrderDraftList.1161115149":"","src.orders.views.OrderDraftList.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.1068617485":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"Titolo","src.pages.components.PageList.1124600214":"Titolo","src.pages.components.PageInfo.1116746286":"Contenuto","src.translations.components.TranslationsPagesPage.1116746286":"Contenuto","src.pages.components.PageList.3478065224":"","src.pages.components.PageSlug.3478065224":"","src.productTypes.components.ProductTypeAttributes.3478065224":"","src.pages.components.PageList.3767550649":"","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.3785394515":"","src.pages.views.3785394515":"","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.plugins.components.PluginInfo.3425535100":"","src.plugins.components.PluginsDetailsPage.3425535100":"","src.plugins.components.PluginInfo.1049131348":"","src.plugins.components.PluginInfo.4013064767":"","src.plugins.components.PluginsDetailsPage.3352026836":"","src.plugins.components.PluginsDetailsPage.2277745418":"","src.plugins.components.PluginsDetailsPage.1970881031":"","src.plugins.components.PluginSettings.1970881031":"","src.plugins.components.PluginsDetailsPage.4241018152":"","src.plugins.components.PluginsList.3247064221":"Attivo","src.staff.components.StaffList.3247064221":"Attivo","src.plugins.components.PluginsList.4120604650":"","src.plugins.components.PluginsList.666641390":"","src.plugins.views.100549097":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"Valori","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"Immagini","src.products.components.ProductVariantImages.3240888698":"Immagini","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"Magazzino","src.products.components.ProductVariantStock.3841616483":"Magazzino","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListFilter.821159718":"","src.products.components.ProductListFilter.1421689426":"","src.products.components.ProductListFilter.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"","prodictStockInventoryLabel":"","src.products.components.ProductVariantStock.3490038570":"","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"Elimina variante","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"Varianti","src.products.components.ProductVariants.2153006789":"Varianti","src.products.components.ProductVariantNavigation.2845381934":"Aggiungi variante","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.3989383405":"","src.products.views.3989383405":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1591632382":"","src.products.views.1731766393":"","src.products.views.2880386427":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1217376589":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.3479705616":"","src.productTypes.components.ProductTypeListPage.1776073799":"","src.productTypes.components.ProductTypeListPage.3420445375":"","src.translations.components.TranslationsEntitiesListPage.3420445375":"","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.ProductTypeList.4080551769":"","src.productTypes.views.ProductTypeList.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRates.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2673544109":"","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.1947090060":"","src.shipping.views.ShippingZoneDetails.131963671":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"Chiave","src.siteSettings.components.SiteSettingsKeys.2446088470":"Chiave","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.1481503299":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"Permessi","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.797461521":"","src.staff.components.StaffListPage.2852350932":"","src.staff.components.StaffListPage.61043583":"","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"L'utente è attivo","src.staff.views.1308770978":"","src.staff.views.8878988":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.2105464697":"","src.translations.components.TranslationsEntitiesListPage.2559018090":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file diff --git a/locale/it.po b/locale/it.po index ced4b16cc..214b1ae95 100644 --- a/locale/it.po +++ b/locale/it.po @@ -8,7 +8,7 @@ # msgid "" msgstr "" -"POT-Creation-Date: 2019-09-06T13:56:36.897Z\n" +"POT-Creation-Date: 2019-09-16T15:25:09.340Z\n" "Last-Translator: Leonardo Paci , 2019\n" "Language-Team: Italian (https://www.transifex.com/mirumee/teams/34782/it/)\n" "MIME-Version: 1.0\n" @@ -146,22 +146,6 @@ msgctxt "create new menu item, header" msgid "Add Item" msgstr "" -#. [menuCreateDialogHeader] - dialog header -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json -msgctxt "dialog header" -msgid "Add Menu" -msgstr "" - -#. [menuListPageAddMenu] - button -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json -msgctxt "button" -msgid "Add Menu" -msgstr "" - #. [src.siteSettings.components.SiteSettingsKeyDialog.1238948746] - dialog #. header #. defaultMessage is: @@ -171,14 +155,6 @@ msgctxt "dialog header" msgid "Add New Authorization Key" msgstr "" -#. [src.pages.components.PageDetailsPage.755314116] - page header -#. defaultMessage is: -#. Add Page -#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json -msgctxt "page header" -msgid "Add Page" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.2892088870] - dialog header #. defaultMessage is: #. Add Price Rate @@ -187,38 +163,6 @@ msgctxt "dialog header" msgid "Add Price Rate" msgstr "" -#. [src.orders.components.OrderProductAddDialog.2775402904] - dialog header -#. defaultMessage is: -#. Add Product -#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json -msgctxt "dialog header" -msgid "Add Product" -msgstr "" - -#. [src.products.components.ProductListPage.2775402904] - button -#. defaultMessage is: -#. Add Product -#: build/locale/src/products/components/ProductListPage/ProductListPage.json -msgctxt "button" -msgid "Add Product" -msgstr "" - -#. [src.discounts.components.SaleListPage.1742771332] - button -#. defaultMessage is: -#. Add Sale -#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json -msgctxt "button" -msgid "Add Sale" -msgstr "" - -#. [src.staff.components.StaffAddMemberDialog.3490059488] - dialog header -#. defaultMessage is: -#. Add Staff Member -#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json -msgctxt "dialog header" -msgid "Add Staff Member" -msgstr "" - #. [src.attributes.components.AttributeValueEditDialog.1841790893] - add #. attribute value #. defaultMessage is: @@ -228,14 +172,6 @@ msgctxt "add attribute value" msgid "Add Value" msgstr "" -#. [src.products.views.2178905289] - header -#. defaultMessage is: -#. Add Variant -#: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "header" -msgid "Add Variant" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.1397795758] - add weight #. based shipping method, dialog header #. defaultMessage is: @@ -253,14 +189,6 @@ msgctxt "button" msgid "Add address" msgstr "" -#. [src.attributes.components.AttributeListPage.350498821] - button -#. defaultMessage is: -#. Add attribute -#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json -msgctxt "button" -msgid "Add attribute" -msgstr "Aggiungi attributo" - #. [src.siteSettings.components.SiteSettingsKeyDialog.50561933] - button #. defaultMessage is: #. Add authentication @@ -269,14 +197,6 @@ msgctxt "button" msgid "Add authentication" msgstr "" -#. [src.categories.components.CategoryListPage.228151782] - button -#. defaultMessage is: -#. Add category -#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json -msgctxt "button" -msgid "Add category" -msgstr "Aggiungi categoria" - #. [src.collections.components.CollectionCreatePage.3958681866] - page header #. defaultMessage is: #. Add collection @@ -285,14 +205,6 @@ msgctxt "page header" msgid "Add collection" msgstr "Aggiungi collezione" -#. [src.collections.components.CollectionListPage.3958681866] - button -#. defaultMessage is: -#. Add collection -#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json -msgctxt "button" -msgid "Add collection" -msgstr "Aggiungi collezione" - #. [src.customers.components.CustomerCreatePage.1934221653] - page header #. defaultMessage is: #. Add customer @@ -325,14 +237,6 @@ msgctxt "button" msgid "Add key" msgstr "" -#. [menuItemsAddItem] - add new menu item -#. defaultMessage is: -#. Add new item -#: build/locale/src/navigation/components/MenuItems/MenuItems.json -msgctxt "add new menu item" -msgid "Add new item" -msgstr "" - #. [menuItemsPlaceholder] #. defaultMessage is: #. Add new menu item to begin creating menu @@ -367,14 +271,6 @@ msgctxt "button" msgid "Add or Edit Link" msgstr "" -#. [src.pages.components.PageListPage.1767905232] - button -#. defaultMessage is: -#. Add page -#: build/locale/src/pages/components/PageListPage/PageListPage.json -msgctxt "button" -msgid "Add page" -msgstr "" - #. [src.categories.components.CategoryProducts.3554578821] - button #. defaultMessage is: #. Add product @@ -383,14 +279,6 @@ msgctxt "button" msgid "Add product" msgstr "Aggiungi prodotto" -#. [src.productTypes.components.ProductTypeListPage.889729490] - button -#. defaultMessage is: -#. Add product type -#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json -msgctxt "button" -msgid "Add product type" -msgstr "Aggiungi tipologia prodotto" - #. [src.orders.components.OrderDraftDetails.2528459381] - button #. defaultMessage is: #. Add products @@ -399,14 +287,6 @@ msgctxt "button" msgid "Add products" msgstr "" -#. [src.shipping.components.ShippingZoneRates.352297149] - button -#. defaultMessage is: -#. Add rate -#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json -msgctxt "button" -msgid "Add rate" -msgstr "" - #. [src.categories.components.CategoryCreatePage.2563994280] #. defaultMessage is: #. Add search engine title and description to make this category easier to @@ -468,30 +348,6 @@ msgctxt "button" msgid "Add shipping carrier" msgstr "" -#. [src.shipping.components.ShippingZonesList.2474410767] - button -#. defaultMessage is: -#. Add shipping zone -#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json -msgctxt "button" -msgid "Add shipping zone" -msgstr "" - -#. [src.staff.components.StaffListPage.802625341] - button -#. defaultMessage is: -#. Add staff member -#: build/locale/src/staff/components/StaffListPage/StaffListPage.json -msgctxt "button" -msgid "Add staff member" -msgstr "Aggiungi membro dello staff" - -#. [src.categories.components.CategoryList.435697837] - button -#. defaultMessage is: -#. Add subcategory -#: build/locale/src/categories/components/CategoryList/CategoryList.json -msgctxt "button" -msgid "Add subcategory" -msgstr "" - #. [src.attributes.components.AttributeProperties.673770329] - add attribute #. as column in product list table #. defaultMessage is: @@ -519,35 +375,14 @@ msgctxt "dialog header" msgid "Add tracking code" msgstr "" -#. [src.attributes.components.AttributeValues.254756045] - add attribute value -#. button -#. defaultMessage is: -#. Add value -#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json -msgctxt "add attribute value button" -msgid "Add value" -msgstr "" - #. [src.products.components.ProductVariantNavigation.2845381934] - button #. defaultMessage is: #. Add variant -#. [src.products.components.ProductVariants.2845381934] - button -#. defaultMessage is: -#. Add variant #: build/locale/src/products/components/ProductVariantNavigation/ProductVariantNavigation.json -#: build/locale/src/products/components/ProductVariants/ProductVariants.json msgctxt "button" msgid "Add variant" msgstr "Aggiungi variante" -#. [src.discounts.components.VoucherListPage.1536809153] - button -#. defaultMessage is: -#. Add voucher -#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json -msgctxt "button" -msgid "Add voucher" -msgstr "Aggiungi voucher" - #. [src.attributes.views.AttributeDetails.634268988] - added new attribute #. value #. defaultMessage is: @@ -605,14 +440,6 @@ msgctxt "description" msgid "Address line 2" msgstr "" -#. [src.customers.components.CustomerAddress.1320082647] - addres card header -#. defaultMessage is: -#. Address {addressNumber} -#: build/locale/src/customers/components/CustomerAddress/CustomerAddress.json -msgctxt "addres card header" -msgid "Address {addressNumber}" -msgstr "" - #. [src.attributes.components.AttributeValues.1565474525] - attribute values #. list: slug column header #. defaultMessage is: @@ -662,6 +489,46 @@ msgctxt "tax rate" msgid "Agricultural supplies" msgstr "" +#. [src.attributes.components.AttributeListPage.2417065806] - tab name +#. defaultMessage is: +#. All Attributes +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "tab name" +msgid "All Attributes" +msgstr "" + +#. [src.categories.components.CategoryListPage.4294878092] - tab name +#. defaultMessage is: +#. All Categories +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "tab name" +msgid "All Categories" +msgstr "" + +#. [src.collections.components.CollectionListPage.1631917001] - tab name +#. defaultMessage is: +#. All Collections +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "tab name" +msgid "All Collections" +msgstr "" + +#. [src.customers.components.CustomerListPage.477293306] - tab name +#. defaultMessage is: +#. All Customers +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "tab name" +msgid "All Customers" +msgstr "" + +#. [src.orders.components.OrderDraftListPage.551325728] - tab name +#. defaultMessage is: +#. All Drafts +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "tab name" +msgid "All Drafts" +msgstr "" + #. [src.orders.components.OrderListPage.875489544] - tab name #. defaultMessage is: #. All Orders @@ -679,22 +546,54 @@ msgctxt "section header" msgid "All Photos" msgstr "" -#. [src.products.components.ProductListPage.821159718] - tab name +#. [src.productTypes.components.ProductTypeListPage.1776073799] - tab name +#. defaultMessage is: +#. All Product Types +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "tab name" +msgid "All Product Types" +msgstr "" + +#. [src.products.components.ProductListFilter.821159718] - tab name #. defaultMessage is: #. All Products -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "tab name" msgid "All Products" msgstr "" -#. [src.categories.components.CategoryList.3229914152] - section header +#. [src.discounts.components.SaleListPage.3907768880] - tab name +#. defaultMessage is: +#. All Sales +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "tab name" +msgid "All Sales" +msgstr "" + +#. [src.staff.components.StaffListPage.2852350932] - tab name +#. defaultMessage is: +#. All Staff Members +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "tab name" +msgid "All Staff Members" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.3229914152] - section header #. defaultMessage is: #. All Subcategories -#: build/locale/src/categories/components/CategoryList/CategoryList.json +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json msgctxt "section header" msgid "All Subcategories" msgstr "" +#. [src.discounts.components.VoucherListPage.1112241061] - tab name +#. defaultMessage is: +#. All Vouchers +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "tab name" +msgid "All Vouchers" +msgstr "" + #. [src.taxes.components.TaxConfiguration.142803418] #. defaultMessage is: #. All products prices are entered with tax included @@ -802,6 +701,14 @@ msgctxt "description" msgid "Are you sure you want to delete collection's image?" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.36681973] +#. defaultMessage is: +#. Are you sure you want to delete draft #{number}? +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "description" +msgid "Are you sure you want to delete draft #{number}?" +msgstr "" + #. [menuDetailsDeleteMenuContent] #. defaultMessage is: #. Are you sure you want to delete menu {menuName}? @@ -818,6 +725,14 @@ msgctxt "description" msgid "Are you sure you want to delete this address from users address book?" msgstr "" +#. [src.products.views.2880386427] +#. defaultMessage is: +#. Are you sure you want to delete this image? +#: build/locale/src/products/views/ProductImage.json +msgctxt "description" +msgid "Are you sure you want to delete this image?" +msgstr "" + #. [src.attributes.components.AttributeDeleteDialog.3738429348] - dialog #. content #. defaultMessage is: @@ -868,12 +783,7 @@ msgstr "" #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this attribute} #. other{{displayQuantity} categories}}? -#. [src.categories.views.844574071] -#. defaultMessage is: -#. Are you sure you want to delete {counter,plural,one{this attribute} -#. other{{displayQuantity} categories}}? #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this attribute} " @@ -891,22 +801,33 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.2497542455] +#. [src.categories.views.CategoryList.2144707585] +#. defaultMessage is: +#. Are you sure you want to delete {counter,plural,one{this category} +#. other{{displayQuantity} categories}}? +#: build/locale/src/categories/views/CategoryList/CategoryList.json +msgctxt "description" +msgid "" +"Are you sure you want to delete {counter,plural,one{this category} " +"other{{displayQuantity} categories}}?" +msgstr "" + +#. [src.collections.views.CollectionList.2497542455] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this collection} " "other{{displayQuantity} collections}}?" msgstr "" -#. [src.customers.views.409347866] +#. [src.customers.views.CustomerList.409347866] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this customer} #. other{{displayQuantity} customers}}? -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this customer} " @@ -924,11 +845,11 @@ msgid "" "other{{displayQuantity} menus}}?" msgstr "" -#. [src.orders.views.1389231130] - dialog content +#. [src.orders.views.OrderDraftList.1389231130] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this order draft} #. other{{displayQuantity} orderDrafts}}? -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this order draft} " @@ -946,11 +867,11 @@ msgid "" "other{{displayQuantity} pages}}?" msgstr "" -#. [src.productTypes.views.2294091098] - dialog content +#. [src.productTypes.views.ProductTypeList.2294091098] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this product type} #. other{{displayQuantity} product types}}? -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this product type} " @@ -968,11 +889,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.discounts.views.2516361175] - dialog content +#. [src.discounts.views.SaleList.2516361175] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this sale} #. other{{displayQuantity} sales}}? -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this sale} " @@ -1001,17 +922,33 @@ msgid "" "other{{displayQuantity} variants}}?" msgstr "" -#. [src.discounts.views.1791926983] - dialog content +#. [src.discounts.views.VoucherList.1791926983] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this voucher} #. other{{displayQuantity} vouchers}}? -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this voucher} " "other{{displayQuantity} vouchers}}?" msgstr "" +#. [src.shipping.views.ShippingZoneDetails.131963671] - unassign country +#. defaultMessage is: +#. Are you sure you want to delete {countryName} from this shipping zone? +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country" +msgid "Are you sure you want to delete {countryName} from this shipping zone?" +msgstr "" + +#. [src.staff.views.8878988] +#. defaultMessage is: +#. Are you sure you want to delete {email} from staff members? +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "description" +msgid "Are you sure you want to delete {email} from staff members?" +msgstr "" + #. [src.customers.views.1927691511] - delete customer, dialog content #. defaultMessage is: #. Are you sure you want to delete {email}? @@ -1126,11 +1063,11 @@ msgctxt "description" msgid "Are you sure you want to mark this order as paid?" msgstr "" -#. [src.collections.views.1348793822] +#. [src.collections.views.CollectionList.1348793822] #. defaultMessage is: #. Are you sure you want to publish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to publish {counter,plural,one{this collection} " @@ -1159,30 +1096,6 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.orders.components.OrderDraftCancelDialog.3199827590] -#. defaultMessage is: -#. Are you sure you want to remove draft #{number}? -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "description" -msgid "Are you sure you want to remove draft #{number}?" -msgstr "" - -#. [src.products.views.672103788] -#. defaultMessage is: -#. Are you sure you want to remove this image? -#: build/locale/src/products/views/ProductImage.json -msgctxt "description" -msgid "Are you sure you want to remove this image?" -msgstr "" - -#. [src.shipping.views.ShippingZoneDetails.1790261672] - unassign country -#. defaultMessage is: -#. Are you sure you want to remove {countryName} from this shipping zone? -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country" -msgid "Are you sure you want to remove {countryName} from this shipping zone?" -msgstr "" - #. [src.staff.views.3945766678] #. defaultMessage is: #. Are you sure you want to remove {email} avatar? @@ -1191,14 +1104,6 @@ msgctxt "description" msgid "Are you sure you want to remove {email} avatar?" msgstr "" -#. [src.staff.views.2728048444] -#. defaultMessage is: -#. Are you sure you want to remove {email} from staff members? -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "description" -msgid "Are you sure you want to remove {email} from staff members?" -msgstr "" - #. [src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450] #. defaultMessage is: #. Are you sure you want to unassign {attributeName} from {productTypeName}? @@ -1279,11 +1184,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.3944356444] +#. [src.collections.views.CollectionList.3944356444] #. defaultMessage is: #. Are you sure you want to unpublish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to unpublish {counter,plural,one{this collection} " @@ -1444,6 +1349,15 @@ msgctxt "button" msgid "Assign products" msgstr "" +#. [src.attributes.components.AttributeValues.351422234] - assign attribute +#. value button +#. defaultMessage is: +#. Assign value +#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json +msgctxt "assign attribute value button" +msgid "Assign value" +msgstr "" + #. [src.attributes.components.AttributeDetails.3605174225] - attribute's slug #. short code label #. defaultMessage is: @@ -1522,6 +1436,14 @@ msgctxt "product attributes, section header" msgid "Attributes" msgstr "Attributi" +#. [src.configuration.2326418019] +#. defaultMessage is: +#. Attributes and Product Typess +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Attributes and Product Typess" +msgstr "" + #. [src.attributes.views.AttributeList.3218248395] - deleted multiple #. attributes #. defaultMessage is: @@ -2305,6 +2227,22 @@ msgctxt "description" msgid "Country area" msgstr "" +#. [menuCreateDialogHeader] - dialog header +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json +msgctxt "dialog header" +msgid "Create Menu" +msgstr "" + +#. [menuListPageAddMenu] - button +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json +msgctxt "button" +msgid "Create Menu" +msgstr "" + #. [src.attributes.components.AttributePage.2855501559] - page title #. defaultMessage is: #. Create New Attribute @@ -2329,6 +2267,30 @@ msgctxt "header" msgid "Create New Shipping Zone" msgstr "" +#. [src.pages.components.PageDetailsPage.1068617485] - page header +#. defaultMessage is: +#. Create Page +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page header" +msgid "Create Page" +msgstr "" + +#. [src.orders.components.OrderProductAddDialog.1542417144] - dialog header +#. defaultMessage is: +#. Create Product +#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json +msgctxt "dialog header" +msgid "Create Product" +msgstr "" + +#. [src.products.components.ProductListPage.1542417144] - button +#. defaultMessage is: +#. Create Product +#: build/locale/src/products/components/ProductListPage/ProductListPage.json +msgctxt "button" +msgid "Create Product" +msgstr "" + #. [src.products.views.1542417144] - window title #. defaultMessage is: #. Create Product @@ -2361,11 +2323,19 @@ msgctxt "page header" msgid "Create Sale" msgstr "" -#. [src.products.views.2362587265] - window title +#. [src.discounts.components.SaleListPage.3866518732] - button +#. defaultMessage is: +#. Create Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "button" +msgid "Create Sale" +msgstr "" + +#. [src.products.views.2362587265] - header #. defaultMessage is: #. Create Variant #: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "window title" +msgctxt "header" msgid "Create Variant" msgstr "" @@ -2377,6 +2347,22 @@ msgctxt "page header" msgid "Create Voucher" msgstr "" +#. [src.attributes.components.AttributeListPage.3824684885] - button +#. defaultMessage is: +#. Create attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "button" +msgid "Create attribute" +msgstr "" + +#. [src.categories.components.CategoryListPage.1140231710] - button +#. defaultMessage is: +#. Create category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "button" +msgid "Create category" +msgstr "" + #. [src.categories.views.1140231710] - window title #. defaultMessage is: #. Create category @@ -2385,6 +2371,14 @@ msgctxt "window title" msgid "Create category" msgstr "" +#. [src.collections.components.CollectionListPage.686910896] - button +#. defaultMessage is: +#. Create collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "button" +msgid "Create collection" +msgstr "" + #. [src.collections.views.686910896] - window title #. defaultMessage is: #. Create collection @@ -2401,6 +2395,14 @@ msgctxt "window title" msgid "Create customer" msgstr "" +#. [menuItemsAddItem] - add new menu item +#. defaultMessage is: +#. Create new item +#: build/locale/src/navigation/components/MenuItems/MenuItems.json +msgctxt "add new menu item" +msgid "Create new item" +msgstr "" + #. [src.orders.components.OrderDraftListPage.2826235371] - button #. defaultMessage is: #. Create order @@ -2413,6 +2415,14 @@ msgctxt "button" msgid "Create order" msgstr "" +#. [src.pages.components.PageListPage.3785394515] - button +#. defaultMessage is: +#. Create page +#: build/locale/src/pages/components/PageListPage/PageListPage.json +msgctxt "button" +msgid "Create page" +msgstr "" + #. [src.pages.views.3785394515] - header #. defaultMessage is: #. Create page @@ -2424,11 +2434,55 @@ msgstr "" #. [src.shipping.components.ShippingZoneRateDialog.16061680] - button #. defaultMessage is: #. Create rate +#. [src.shipping.components.ShippingZoneRates.16061680] - button +#. defaultMessage is: +#. Create rate #: build/locale/src/shipping/components/ShippingZoneRateDialog/ShippingZoneRateDialog.json +#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json msgctxt "button" msgid "Create rate" msgstr "" +#. [src.shipping.components.ShippingZonesList.2673544109] - button +#. defaultMessage is: +#. Create shipping zone +#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json +msgctxt "button" +msgid "Create shipping zone" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.770296100] - button +#. defaultMessage is: +#. Create subcategory +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json +msgctxt "button" +msgid "Create subcategory" +msgstr "" + +#. [src.products.components.ProductVariants.3989383405] - button +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/components/ProductVariants/ProductVariants.json +msgctxt "button" +msgid "Create variant" +msgstr "" + +#. [src.products.views.3989383405] - window title +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/views/ProductVariantCreate.json +msgctxt "window title" +msgid "Create variant" +msgstr "" + +#. [src.discounts.components.VoucherListPage.614836274] - button +#. defaultMessage is: +#. Create voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "button" +msgid "Create voucher" +msgstr "" + #. [src.collections.views.1597339737] #. defaultMessage is: #. Created collection @@ -2475,7 +2529,11 @@ msgstr "" #. [src.components.FilterBar.2340527467] #. defaultMessage is: #. Custom Filter +#. [src.components.SearchBar.2340527467] +#. defaultMessage is: +#. Custom Filter #: build/locale/src/components/FilterBar/FilterBar.json +#: build/locale/src/components/SearchBar/SearchBar.json msgctxt "description" msgid "Custom Filter" msgstr "" @@ -2731,10 +2789,18 @@ msgctxt "dialog title" msgid "Delete Collection" msgstr "" -#. [src.orders.views.1161115149] - dialog header +#. [src.products.views.1731766393] - dialog header +#. defaultMessage is: +#. Delete Image +#: build/locale/src/products/views/ProductImage.json +msgctxt "dialog header" +msgid "Delete Image" +msgstr "" + +#. [src.orders.views.OrderDraftList.1161115149] - dialog header #. defaultMessage is: #. Delete Order Drafts -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog header" msgid "Delete Order Drafts" msgstr "" @@ -2772,10 +2838,10 @@ msgctxt "dialog header" msgid "Delete Product Type" msgstr "" -#. [src.productTypes.views.4080551769] - dialog header +#. [src.productTypes.views.ProductTypeList.4080551769] - dialog header #. defaultMessage is: #. Delete Product Types -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog header" msgid "Delete Product Types" msgstr "" @@ -2804,10 +2870,10 @@ msgctxt "dialog header" msgid "Delete Sale" msgstr "" -#. [src.discounts.views.2809303671] - dialog header +#. [src.discounts.views.SaleList.2809303671] - dialog header #. defaultMessage is: #. Delete Sales -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog header" msgid "Delete Sales" msgstr "" @@ -2821,9 +2887,13 @@ msgctxt "custom search delete, dialog header" msgid "Delete Search" msgstr "" +#. [src.components.Filter.2173195312] - button +#. defaultMessage is: +#. Delete Search #. [src.components.TableFilter.2173195312] - button #. defaultMessage is: #. Delete Search +#: build/locale/src/components/Filter/FilterSearch.json #: build/locale/src/components/TableFilter/FilterChips.json msgctxt "button" msgid "Delete Search" @@ -2890,10 +2960,10 @@ msgctxt "dialog header" msgid "Delete Voucher" msgstr "" -#. [src.discounts.views.367317371] - dialog header +#. [src.discounts.views.VoucherList.367317371] - dialog header #. defaultMessage is: #. Delete Vouchers -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog header" msgid "Delete Vouchers" msgstr "" @@ -2927,11 +2997,11 @@ msgstr "" #. [src.categories.views.712767046] - dialog title #. defaultMessage is: #. Delete categories -#. [src.categories.views.712767046] - dialog title +#. [src.categories.views.CategoryList.712767046] - dialog title #. defaultMessage is: #. Delete categories #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "dialog title" msgid "Delete categories" msgstr "" @@ -2948,10 +3018,10 @@ msgctxt "dialog title" msgid "Delete category" msgstr "Elimina categoria" -#. [src.collections.views.3817188998] - dialog title +#. [src.collections.views.CollectionList.3817188998] - dialog title #. defaultMessage is: #. Delete collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Delete collections" msgstr "" @@ -2964,14 +3034,31 @@ msgctxt "dialog header" msgid "Delete customer" msgstr "" -#. [src.customers.views.1946482599] - dialog header +#. [src.customers.views.CustomerList.1946482599] - dialog header #. defaultMessage is: #. Delete customers -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "dialog header" msgid "Delete customers" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.632633254] - dialog header +#. defaultMessage is: +#. Delete draft order +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "dialog header" +msgid "Delete draft order" +msgstr "" + +#. [src.shipping.views.ShippingZoneDetails.1947090060] - unassign country, +#. dialog header +#. defaultMessage is: +#. Delete from shipping zone +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country, dialog header" +msgid "Delete from shipping zone" +msgstr "" + #. [src.collections.views.942133001] - dialog title #. defaultMessage is: #. Delete image @@ -3032,6 +3119,14 @@ msgctxt "description" msgid "Deleted collection" msgstr "Eliminata collezione" +#. [src.orders.views.OrderDraftList.1648805446] +#. defaultMessage is: +#. Deleted draft orders +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json +msgctxt "description" +msgid "Deleted draft orders" +msgstr "" + #. [menuListDeletedMenu] #. defaultMessage is: #. Deleted menu @@ -3631,14 +3726,6 @@ msgctxt "order history message" msgid "Fulfilled {quantity} items" msgstr "" -#. [src.orders.components.OrderListFilter.2943502192] - order -#. defaultMessage is: -#. Fulfillment Status -#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json -msgctxt "order" -msgid "Fulfillment Status" -msgstr "" - #. [src.orders.components.OrderHistory.3081292385] - order history message #. defaultMessage is: #. Fulfillment confirmation was sent to customer @@ -3795,12 +3882,12 @@ msgctxt "description" msgid "If empty, the preview shows what will be autogenerated." msgstr "" -#. [src.attributes.components.AttributeProperties.2519239682] +#. [src.attributes.components.AttributeProperties.4048785456] #. defaultMessage is: -#. If enable this attribute can be used as a column in product table. +#. If enabled this attribute can be used as a column in product table. #: build/locale/src/attributes/components/AttributeProperties/AttributeProperties.json msgctxt "description" -msgid "If enable this attribute can be used as a column in product table." +msgid "If enabled this attribute can be used as a column in product table." msgstr "" #. [src.attributes.components.AttributeProperties.787251583] @@ -3906,6 +3993,22 @@ msgctxt "product variant stock" msgid "Inventory" msgstr "" +#. [src.staff.components.StaffAddMemberDialog.1481503299] - dialog header +#. defaultMessage is: +#. Invite Staff Member +#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json +msgctxt "dialog header" +msgid "Invite Staff Member" +msgstr "" + +#. [src.staff.components.StaffListPage.797461521] - button +#. defaultMessage is: +#. Invite staff member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "button" +msgid "Invite staff member" +msgstr "" + #. [src.productTypes.components.ProductTypeShipping.2143413921] - switch #. button #. defaultMessage is: @@ -4258,6 +4361,14 @@ msgctxt "voucher requirement" msgid "Minimum quantity of items" msgstr "" +#. [src.configuration.1233229030] +#. defaultMessage is: +#. Miscellaneous +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Miscellaneous" +msgstr "" + #. [src.attributes.components.AttributeDetails.3334509011] - product attribute #. type #. defaultMessage is: @@ -5090,6 +5201,14 @@ msgctxt "description" msgid "Order History" msgstr "" +#. [src.orders.components.OrderListFilter.2222765704] +#. defaultMessage is: +#. Order Status +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +msgctxt "description" +msgid "Order Status" +msgstr "" + #. [src.orders.components.OrderHistory.1230178536] - order history message #. defaultMessage is: #. Order address was updated @@ -5106,13 +5225,13 @@ msgctxt "order history message" msgid "Order confirmation was sent to customer" msgstr "" -#. [src.orders.views.1872939752] +#. [src.orders.views.OrderDraftList.1872939752] #. defaultMessage is: #. Order draft succesfully created #. [src.orders.views.OrderList.1872939752] #. defaultMessage is: #. Order draft succesfully created -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json #: build/locale/src/orders/views/OrderList/OrderList.json msgctxt "description" msgid "Order draft succesfully created" @@ -5777,6 +5896,14 @@ msgctxt "description" msgid "Product Name" msgstr "" +#. [src.configuration.3655543906] +#. defaultMessage is: +#. Product Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Product Settings" +msgstr "" + #. [src.discounts.components.DiscountProducts.4257289053] #. defaultMessage is: #. Product Type @@ -5935,12 +6062,12 @@ msgctxt "order history message" msgid "Products were added to draft order" msgstr "" -#. [src.orders.components.OrderHistory.2574162126] - order history message +#. [src.orders.components.OrderHistory.4067959693] - order history message #. defaultMessage is: -#. Products were removed from draft order +#. Products were deleted from draft order #: build/locale/src/orders/components/OrderHistory/OrderHistory.json msgctxt "order history message" -msgid "Products were removed from draft order" +msgid "Products were deleted from draft order" msgstr "" #. [src.properties] @@ -5967,10 +6094,10 @@ msgctxt "description" msgid "Provided email address does not exist in our database." msgstr "" -#. [src.collections.views.1547167026] - publish collections +#. [src.collections.views.CollectionList.1547167026] - publish collections #. defaultMessage is: #. Publish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "publish collections" msgid "Publish" msgstr "Pubblicato" @@ -6007,10 +6134,10 @@ msgctxt "dialog header" msgid "Publish Products" msgstr "" -#. [src.collections.views.2823425739] - dialog title +#. [src.collections.views.CollectionList.2823425739] - dialog title #. defaultMessage is: #. Publish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Publish collections" msgstr "" @@ -6184,6 +6311,18 @@ msgctxt "shipping method price" msgid "Rate Price" msgstr "" +#. [src.orders.components.OrderListFilter.2415661583] - order status +#. defaultMessage is: +#. Ready to Capture +#. [src.orders.views.OrderList.readyToCapture] - order status +#. defaultMessage is: +#. Ready to Capture +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +#: build/locale/src/orders/views/OrderList/filters.json +msgctxt "order status" +msgid "Ready to Capture" +msgstr "" + #. [src.customers.components.CustomerOrders.3878642352] - section header #. defaultMessage is: #. Recent orders @@ -6232,22 +6371,14 @@ msgctxt "switch button" msgid "Release all stock allocated to this order" msgstr "" -#. [src.auth.components.LoginPage.3182284913] - login -#. defaultMessage is: -#. Remember me -#: build/locale/src/auth/components/LoginPage/LoginPage.json -msgctxt "login" -msgid "Remember me" -msgstr "" - #. [src.categories.views.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. -#. [src.categories.views.3488150607] +#. [src.categories.views.CategoryList.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "description" msgid "Remember this will also delete all products assigned to this category." msgstr "" @@ -6260,39 +6391,6 @@ msgctxt "button" msgid "Remove" msgstr "Rimuovi" -#. [src.products.views.490753666] - dialog header -#. defaultMessage is: -#. Remove Image -#: build/locale/src/products/views/ProductImage.json -msgctxt "dialog header" -msgid "Remove Image" -msgstr "" - -#. [src.orders.components.OrderDraftCancelDialog.500287069] - dialog header -#. defaultMessage is: -#. Remove draft order -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "dialog header" -msgid "Remove draft order" -msgstr "" - -#. [src.shipping.views.ShippingZoneDetails.254167659] - unassign country, -#. dialog header -#. defaultMessage is: -#. Remove from shipping zone -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country, dialog header" -msgid "Remove from shipping zone" -msgstr "" - -#. [src.orders.views.3880993240] -#. defaultMessage is: -#. Removed draft orders -#: build/locale/src/orders/views/OrderDraftList.json -msgctxt "description" -msgid "Removed draft orders" -msgstr "" - #. [src.pages.views.1457312643] #. defaultMessage is: #. Removed page @@ -6458,6 +6556,18 @@ msgctxt "button" msgid "Save" msgstr "Salva" +#. [src.components.Filter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#. [src.components.TableFilter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#: build/locale/src/components/Filter/FilterSearch.json +#: build/locale/src/components/TableFilter/FilterChips.json +msgctxt "button" +msgid "Save Custom Search" +msgstr "" + #. [src.components.SaveFilterTabDialog.1514415736] - save filter tab, header #. defaultMessage is: #. Save Custom Search @@ -6466,14 +6576,6 @@ msgctxt "save filter tab, header" msgid "Save Custom Search" msgstr "" -#. [src.components.TableFilter.1514415736] - button -#. defaultMessage is: -#. Save Custom Search -#: build/locale/src/components/TableFilter/FilterChips.json -msgctxt "button" -msgid "Save Custom Search" -msgstr "" - #. [src.products.components.ProductVariantCreatePage.2853608829] - button #. defaultMessage is: #. Save variant @@ -6490,6 +6592,14 @@ msgctxt "description" msgid "Saved changes" msgstr "" +#. [src.attributes.components.AttributeListPage.3916653510] +#. defaultMessage is: +#. Search Attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "description" +msgid "Search Attribute" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.902296540] #. defaultMessage is: #. Search Attributes @@ -6506,10 +6616,30 @@ msgctxt "description" msgid "Search Categories" msgstr "" +#. [src.categories.components.CategoryListPage.3841025483] +#. defaultMessage is: +#. Search Category +#. [src.translations.components.TranslationsEntitiesListPage.3841025483] +#. defaultMessage is: +#. Search Category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Category" +msgstr "" + +#. [src.collections.components.CollectionListPage.4057224233] +#. defaultMessage is: +#. Search Collection #. [src.components.AssignCollectionDialog.4057224233] #. defaultMessage is: #. Search Collection +#. [src.translations.components.TranslationsEntitiesListPage.4057224233] +#. defaultMessage is: +#. Search Collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json #: build/locale/src/components/AssignCollectionDialog/AssignCollectionDialog.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json msgctxt "description" msgid "Search Collection" msgstr "" @@ -6522,6 +6652,14 @@ msgctxt "description" msgid "Search Countries" msgstr "" +#. [src.customers.components.CustomerListPage.1643417013] +#. defaultMessage is: +#. Search Customer +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "description" +msgid "Search Customer" +msgstr "" + #. [src.orders.components.OrderCustomer.2433460203] #. defaultMessage is: #. Search Customers @@ -6530,6 +6668,14 @@ msgctxt "description" msgid "Search Customers" msgstr "" +#. [src.orders.components.OrderDraftListPage.77765281] +#. defaultMessage is: +#. Search Draft +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "description" +msgid "Search Draft" +msgstr "" + #. [src.translations.components.TranslationsCategoriesPage.1406947243] #. defaultMessage is: #. Search Engine Description @@ -6610,6 +6756,34 @@ msgctxt "description" msgid "Search Orders..." msgstr "" +#. [src.translations.components.TranslationsEntitiesListPage.2559018090] +#. defaultMessage is: +#. Search Page +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Page" +msgstr "" + +#. [src.translations.components.TranslationsEntitiesListPage.2105464697] +#. defaultMessage is: +#. Search Product +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product" +msgstr "" + +#. [src.productTypes.components.ProductTypeListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#. [src.translations.components.TranslationsEntitiesListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product Type" +msgstr "" + #. [src.components.AssignProductDialog.2850255786] #. defaultMessage is: #. Search Products @@ -6622,14 +6796,46 @@ msgctxt "description" msgid "Search Products" msgstr "" -#. [src.products.components.ProductListPage.3550330425] +#. [src.products.components.ProductListFilter.3550330425] #. defaultMessage is: #. Search Products... -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Search Products..." msgstr "" +#. [src.discounts.components.SaleListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#. [src.translations.components.TranslationsEntitiesListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Sale" +msgstr "" + +#. [src.staff.components.StaffListPage.61043583] +#. defaultMessage is: +#. Search Staff Member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "description" +msgid "Search Staff Member" +msgstr "" + +#. [src.discounts.components.VoucherListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#. [src.translations.components.TranslationsEntitiesListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Voucher" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.524117994] #. defaultMessage is: #. Search by attribute name @@ -6736,10 +6942,10 @@ msgctxt "description" msgid "Select all orders where:" msgstr "" -#. [src.products.components.ProductListPage.1421689426] +#. [src.products.components.ProductListFilter.1421689426] #. defaultMessage is: #. Select all products where: -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Select all products where:" msgstr "" @@ -6825,6 +7031,14 @@ msgctxt "description" msgid "Set plugin as Active" msgstr "" +#. [src.components.VisibilityCard.292404896] +#. defaultMessage is: +#. Set publication date +#: build/locale/src/components/VisibilityCard/VisibilityCard.json +msgctxt "description" +msgid "Set publication date" +msgstr "" + #. [src.discounts.shipment] - voucher discount #. defaultMessage is: #. Shipment @@ -7090,6 +7304,14 @@ msgctxt "staff section name" msgid "Staff Members" msgstr "" +#. [src.configuration.3140151600] +#. defaultMessage is: +#. Staff Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Staff Settings" +msgstr "" + #. [src.standard] - tax rate #. defaultMessage is: #. Standard @@ -8074,10 +8296,10 @@ msgctxt "payment status" msgid "Unpaid" msgstr "" -#. [src.collections.views.2237014112] - unpublish collections +#. [src.collections.views.CollectionList.2237014112] - unpublish collections #. defaultMessage is: #. Unpublish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "unpublish collections" msgid "Unpublish" msgstr "Non pubblicare" @@ -8114,10 +8336,10 @@ msgctxt "dialog header" msgid "Unpublish Products" msgstr "" -#. [src.collections.views.2637364047] - dialog title +#. [src.collections.views.CollectionList.2637364047] - dialog title #. defaultMessage is: #. Unpublish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Unpublish collections" msgstr "" @@ -8617,6 +8839,22 @@ msgctxt "description" msgid "ZIP / Postal code" msgstr "" +#. [src.productTypes.components.ProductTypeListPage.3479705616] - button +#. defaultMessage is: +#. create product type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "button" +msgid "create product type" +msgstr "" + +#. [src.staff.views.1308770978] - dialog header +#. defaultMessage is: +#. delete Staff User +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "dialog header" +msgid "delete Staff User" +msgstr "" + #. [orderPaymentVATDoesNotApply] - vat not included in order price #. defaultMessage is: #. does not apply @@ -8690,19 +8928,35 @@ msgctxt "product status is set as" msgid "is set as" msgstr "" -#. [src.staff.views.2240444792] - dialog header -#. defaultMessage is: -#. remove Staff User -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "dialog header" -msgid "remove Staff User" -msgstr "" - -#. [src.components.VisibilityCard.1815688500] +#. [src.collections.components.CollectionCreatePage.1815688500] - collection #. defaultMessage is: #. since {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.1815688500] - collection +#. defaultMessage is: +#. since {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "since {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.1815688500] - page +#. defaultMessage is: +#. since {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "since {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#. [src.products.components.ProductUpdatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "since {date}" msgstr "" @@ -8730,11 +8984,35 @@ msgctxt "weight" msgid "to {value} {unit}" msgstr "" -#. [src.components.VisibilityCard.2001551496] +#. [src.collections.components.CollectionCreatePage.2001551496] - collection #. defaultMessage is: #. will be visible from {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.2001551496] - collection +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "will be visible from {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.2001551496] - page +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "will be visible from {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#. [src.products.components.ProductUpdatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "will be visible from {date}" msgstr "" diff --git a/locale/ja.json b/locale/ja.json index 6524ea627..82ce29b6a 100644 --- a/locale/ja.json +++ b/locale/ja.json @@ -1 +1 @@ -{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.350498821":"","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.2519239682":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"名前","src.categories.components.CategoryProducts.636461959":"名前","src.collections.components.CollectionProducts.636461959":"名前","src.products.components.ProductDetailsForm.636461959":"名前","src.collections.components.CollectionDetails.636461959":"名前","src.components.ProductList.636461959":"名前","src.discounts.components.SaleInfo.636461959":"名前","src.discounts.components.SaleList.636461959":"名前","src.discounts.components.SaleSummary.636461959":"名前","menuItemDialogNameLabel":"名前","src.products.components.ProductVariants.636461959":"名前","src.shipping.components.ShippingZoneRates.636461959":"名前","src.shipping.components.ShippingZonesList.636461959":"名前","src.staff.components.StaffList.636461959":"名前","src.translations.components.TranslationsEntitiesList.636461959":"名前","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.254756045":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.3182284913":"","src.auth.components.LoginPage.109182747":"ログイン","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"","src.categories.views.2004894945":"","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.3229914152":"","src.categories.components.CategoryList.435697837":"","src.categories.components.CategoryList.2159874182":"","src.categories.components.CategoryUpdatePage.2159874182":"","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.228151782":"カテゴリー追加","src.categories.components.CategoryProducts.2968663655":"商品","src.categories.components.CategoryUpdatePage.2968663655":"商品","src.discounts.components.DiscountCategories.2968663655":"商品","src.discounts.components.DiscountCollections.2968663655":"商品","src.products":"商品","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryProducts.3554578821":"","src.categories.components.CategoryProductsCard.3554578821":"","src.categories.components.CategoryProducts.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProducts.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.categories.components.CategoryProductsCard.4164156574":"","src.categories.views.1754466114":"","src.categories.views.1140231710":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.712767046":"","src.categories.views.299584400":"","src.categories.views.844574071":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.collections.components.CollectionCreatePage.3958681866":"","src.collections.components.CollectionListPage.3958681866":"","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"","src.availability":"","src.collections.components.CollectionList.3640454975":"公開済","src.collections.components.CollectionProducts.3640454975":"公開済","src.discounts.components.DiscountProducts.3640454975":"公開済","src.components.ProductList.3640454975":"公開済","src.products.components.ProductListPage.3640454975":"公開済","src.pages.components.PageList.3640454975":"公開済","src.products.views.ProductList.published":"公開済","src.collections.components.CollectionList.2341910657":"非公開","src.collections.components.CollectionProducts.2341910657":"非公開","src.discounts.components.DiscountProducts.2341910657":"非公開","src.components.ProductList.2341910657":"非公開","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.686910896":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"","src.collections.views.2402899582":"","src.collections.views.2237014112":"非公開","src.pages.views.2237014112":"非公開","src.products.views.ProductList.2237014112":"非公開","src.collections.views.1547167026":"公開","src.pages.views.1547167026":"公開","src.products.views.ProductList.1547167026":"公開","src.collections.views.2823425739":"","src.collections.views.1348793822":"","src.collections.views.2637364047":"","src.collections.views.3944356444":"","src.collections.views.3817188998":"","src.collections.views.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"ログアウト","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.4057224233":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"","src.components.ErrorMessageCard.2845142593":"","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.FilterBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"追加","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.ProductList.1134347598":"価格","src.orders.components.OrderDraftDetailsProducts.1134347598":"価格","src.orders.components.OrderFulfillment.1134347598":"価格","src.products.components.ProductListPage.1134347598":"価格","src.products.components.ProductPricing.1134347598":"価格","src.orders.components.OrderUnfulfilledItems.1134347598":"価格","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"価格","src.shipping.components.ShippingZoneRates.1134347598":"価格","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"","src.pages.components.PageList.1459686496":"","src.products.components.ProductListFilter.1459686496":"","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"","src.products.views.ProductList.hidden":"","src.components.VisibilityCard.1815688500":"","src.components.VisibilityCard.2001551496":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","configurationMenuStaff":"","configurationMenuShipping":"","configurationMenuTaxes":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","src.customers.components.CustomerAddress.1320082647":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"請求先住所","src.customers.components.CustomerAddresses.3517722732":"配送先住所","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"住所","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"","src.orders.components.OrderCustomerNote.1520756907":"","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"備考","src.customers.components.CustomerDetails.577013340":"備考","src.customers.components.CustomerCreatePage.1934221653":"","src.customers.components.CustomerListPage.1934221653":"","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerOrders.3878642352":"","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"日付","src.orders.components.OrderDraftList.4205493358":"日付","src.orders.components.OrderList.4205493358":"日付","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"状態","src.orders.components.OrderListFilter.1756106276":"状態","src.products.components.ProductListFilter.1756106276":"状態","src.products.components.ProductVariants.1756106276":"状態","src.customers.components.CustomerOrders.878013594":"合計","src.orders.components.OrderDraftDetailsProducts.878013594":"合計","src.orders.components.OrderDraftDetailsSummary.878013594":"合計","src.orders.components.OrderDraftList.878013594":"合計","src.orders.components.OrderFulfillment.878013594":"合計","src.orders.components.OrderUnfulfilledItems.878013594":"合計","src.orders.components.OrderList.878013594":"合計","src.orders.components.OrderPayment.878013594":"合計","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.1946482599":"","src.customers.views.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"値","src.discounts.components.SaleSummary.1148029984":"値","src.discounts.components.VoucherList.1148029984":"値","src.discounts.components.VoucherSummary.1148029984":"値","src.discounts.components.VoucherValue.1148029984":"値","src.products.components.ProductAttributes.1148029984":"値","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.1742771332":"","src.discounts.components.SalePricing.1099355007":"","src.products.components.ProductPricing.1099355007":"","src.products.components.ProductVariantPrice.1099355007":"","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"","src.discounts.components.VoucherSummary.78726751":"","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.1536809153":"クーポン追加","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"","src.discounts.shipment":"","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.2809303671":"","src.discounts.views.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.367317371":"","src.discounts.views.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"キャンセル","src.orders.views.OrderList.3528672691":"キャンセル","src.confirm":"","src.delete":"","src.edit":"編集","src.manage":"","src.remove":"削除","src.save":"保存","src.show":"","src.undo":"","src.attributes":"","src.products.components.ProductAttributes.4153345096":"","src.categories":"カテゴリー","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"設定","src.customers":"顧客","src.draftOrders":"","src.home":"ホーム","src.navigation":"","src.orders":"注文","src.pages":"","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"販売","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"","src.taxes.components.CountryListPage.3955023266":"","src.translations":"","src.vouchers":"クーポン","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"支払済","src.partiallyPaid":"","src.partiallyRefunded":"","src.refunded":"","src.unpaid":"","src.cancelled":"キャンセル済","src.draft":"","src.fulfilled":"","src.orders.views.OrderList.fulfilled":"","src.orders.components.OrderListFilter.1712863026":"","src.partiallyFulfilled":"","src.unfulfilled":"","src.orders.views.OrderList.unfulfilled":"","src.orders.components.OrderListFilter.1751787272":"","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","src.1395232177":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"リンク","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"","src.orders.components.OrderDetailsPage.1854613983":"","src.orders.components.OrderDraftPage.1854613983":"","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"顧客","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"顧客","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"","src.orders.components.OrderCustomerEditDialog.1411666943":"","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.500287069":"","src.orders.components.OrderDraftCancelDialog.3199827590":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"商品","src.orders.components.OrderUnfulfilledItems.1895667608":"商品","src.orders.components.OrderDraftDetailsProducts.2796503714":"数量","src.orders.components.OrderFulfillment.2796503714":"数量","src.orders.components.OrderFulfillmentDialog.2796503714":"数量","src.orders.components.OrderUnfulfilledItems.2796503714":"数量","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"小計","src.orders.components.OrderPayment.781550514":"小計","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"","src.orders.components.OrderListPage.2826235371":"","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"","src.orders.components.OrderFulfillmentCancelDialog.732594284":"","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"SKU","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.2574162126":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"支払い","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2943502192":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"お届け先住所","src.productTypes.components.ProductTypeShipping.1325966144":"お届け先住所","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"お届け先住所","src.orders.components.OrderPayment.3768782744":"","src.orders.components.OrderPayment.2320183694":"","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"","src.orders.components.OrderPayment.2845258362":"","src.orders.components.OrderPayment.2444197639":"","src.orders.components.OrderPayment.3500506678":"","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"金額","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.2775402904":"","src.products.components.ProductListPage.2775402904":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.3880993240":"","src.orders.views.1161115149":"","src.orders.views.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.755314116":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"","src.pages.components.PageList.1124600214":"","src.pages.components.PageInfo.1116746286":"","src.translations.components.TranslationsPagesPage.1116746286":"","src.pages.components.PageList.3478065224":"","src.pages.components.PageSlug.3478065224":"","src.productTypes.components.ProductTypeAttributes.3478065224":"","src.pages.components.PageList.3767550649":"","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.1767905232":"","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.3785394515":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"","src.products.components.ProductVariantImages.3240888698":"","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"在庫","src.products.components.ProductVariantStock.3841616483":"在庫","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListPage.821159718":"","src.products.components.ProductListPage.1421689426":"","src.products.components.ProductListPage.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"","prodictStockInventoryLabel":"","src.products.components.ProductVariantStock.3490038570":"","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"","src.products.components.ProductVariants.2153006789":"","src.products.components.ProductVariantNavigation.2845381934":"","src.products.components.ProductVariants.2845381934":"","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1542417144":"","src.products.views.1591632382":"","src.products.views.490753666":"","src.products.views.672103788":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.1694086800":"","src.products.views.ProductList.224127438":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.products.views.2178905289":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1756957616":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.889729490":"","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.4080551769":"","src.productTypes.views.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.352297149":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2474410767":"","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.254167659":"","src.shipping.views.ShippingZoneDetails.1790261672":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"キー","src.siteSettings.components.SiteSettingsKeys.2446088470":"キー","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.3490059488":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"許可","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.3247064221":"有効","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.802625341":"","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"","src.staff.views.2240444792":"","src.staff.views.2728048444":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file +{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.3824684885":"","src.attributes.components.AttributeListPage.2417065806":"","src.attributes.components.AttributeListPage.3916653510":"","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.4048785456":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"名前","src.categories.components.CategoryProductList.636461959":"名前","src.components.ProductList.636461959":"名前","src.products.components.ProductList.636461959":"名前","src.collections.components.CollectionDetails.636461959":"名前","src.collections.components.CollectionProducts.636461959":"名前","src.products.components.ProductDetailsForm.636461959":"名前","src.discounts.components.SaleInfo.636461959":"名前","src.discounts.components.SaleList.636461959":"名前","src.discounts.components.SaleSummary.636461959":"名前","menuItemDialogNameLabel":"名前","src.plugins.components.PluginsList.636461959":"名前","src.products.components.ProductVariants.636461959":"名前","src.shipping.components.ShippingZoneRates.636461959":"名前","src.shipping.components.ShippingZonesList.636461959":"名前","src.staff.components.StaffList.636461959":"名前","src.translations.components.TranslationsEntitiesList.636461959":"名前","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.351422234":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.109182747":"ログイン","src.auth.components.LoginPage.4028609483":"","src.auth.components.NewPasswordPage.1915811227":"","src.auth.components.NewPasswordPage.1254879564":"","src.auth.components.NewPasswordPage.2799926859":"","src.auth.components.NewPasswordPage.4253911811":"","src.auth.components.NewPasswordPage.2342634351":"","src.auth.components.ResetPasswordPage.2370700732":"","src.auth.components.ResetPasswordPage.3663311080":"","src.auth.components.ResetPasswordSuccessPage.4066297200":"","src.auth.components.ResetPasswordSuccessPage.2245157344":"","src.auth.views.2388238158":"","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"","src.categories.views.2004894945":"","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.2159874182":"","src.categories.components.CategoryUpdatePage.2159874182":"","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.1140231710":"","src.categories.views.1140231710":"","src.categories.components.CategoryListPage.4294878092":"","src.categories.components.CategoryListPage.3841025483":"","src.translations.components.TranslationsEntitiesListPage.3841025483":"","src.categories.components.CategoryProductList.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductList.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProductList.3640454975":"公開済","src.components.ProductList.3640454975":"公開済","src.products.components.ProductList.3640454975":"公開済","src.products.components.ProductListPage.3640454975":"公開済","productStatusLabel":"公開済","src.collections.components.CollectionList.3640454975":"公開済","src.collections.components.CollectionProducts.3640454975":"公開済","src.discounts.components.DiscountProducts.3640454975":"公開済","src.pages.components.PageList.3640454975":"公開済","src.products.views.ProductList.published":"公開済","src.categories.components.CategoryProductList.1134347598":"価格","src.orders.components.OrderFulfillment.1134347598":"価格","src.products.components.ProductList.1134347598":"価格","src.products.components.ProductListPage.1134347598":"価格","src.products.components.ProductPricing.1134347598":"価格","src.components.ProductList.1134347598":"価格","src.orders.components.OrderDraftDetailsProducts.1134347598":"価格","src.orders.components.OrderUnfulfilledItems.1134347598":"価格","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"価格","src.shipping.components.ShippingZoneRates.1134347598":"価格","src.categories.components.CategoryProductList.2341910657":"非公開","src.products.components.ProductList.2341910657":"非公開","src.collections.components.CollectionList.2341910657":"非公開","src.collections.components.CollectionProducts.2341910657":"非公開","src.discounts.components.DiscountProducts.2341910657":"非公開","src.components.ProductList.2341910657":"非公開","src.categories.components.CategoryProductList.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.products.components.ProductList.1657559629":"","src.categories.components.CategoryProducts.4164156574":"","src.categories.components.CategoryProducts.3554578821":"","src.categories.components.CategoryUpdatePage.2968663655":"商品","src.discounts.components.DiscountCategories.2968663655":"商品","src.discounts.components.DiscountCollections.2968663655":"商品","src.products":"商品","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryUpdatePage.3229914152":"","src.categories.components.CategoryUpdatePage.770296100":"","src.categories.views.1754466114":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.CategoryList.3488150607":"","src.categories.views.712767046":"","src.categories.views.CategoryList.712767046":"","src.categories.views.299584400":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.categories.views.CategoryList.2144707585":"","src.collections.components.CollectionCreatePage.3958681866":"","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionCreatePage.2001551496":"","src.collections.components.CollectionDetailsPage.2001551496":"","src.pages.components.PageDetailsPage.2001551496":"","src.products.components.ProductCreatePage.2001551496":"","src.products.components.ProductUpdatePage.2001551496":"","src.collections.components.CollectionCreatePage.1815688500":"","src.collections.components.CollectionDetailsPage.1815688500":"","src.pages.components.PageDetailsPage.1815688500":"","src.products.components.ProductCreatePage.1815688500":"","src.products.components.ProductUpdatePage.1815688500":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"","src.availability":"","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionListPage.686910896":"","src.collections.views.686910896":"","src.collections.components.CollectionListPage.1631917001":"","src.collections.components.CollectionListPage.4057224233":"","src.components.AssignCollectionDialog.4057224233":"","src.translations.components.TranslationsEntitiesListPage.4057224233":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"","src.collections.views.2402899582":"","src.collections.views.CollectionList.2237014112":"非公開","src.pages.views.2237014112":"非公開","src.products.views.ProductList.2237014112":"非公開","src.collections.views.CollectionList.1547167026":"公開","src.pages.views.1547167026":"公開","src.products.views.ProductList.1547167026":"公開","src.collections.views.CollectionList.2823425739":"","src.collections.views.CollectionList.1348793822":"","src.collections.views.CollectionList.2637364047":"","src.collections.views.CollectionList.3944356444":"","src.collections.views.CollectionList.3817188998":"","src.collections.views.CollectionList.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"ログアウト","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"","src.components.ErrorMessageCard.2845142593":"","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.Filter.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.Filter.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.FilterBar.2340527467":"","src.components.SearchBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"追加","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"","src.pages.components.PageList.1459686496":"","src.products.components.ProductListFilter.1459686496":"","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"","src.products.views.ProductList.hidden":"","src.components.VisibilityCard.292404896":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","src.configuration.2326418019":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","src.configuration.3655543906":"","configurationMenuShipping":"","configurationMenuTaxes":"","src.configuration.3140151600":"","configurationMenuStaff":"","src.configuration.1233229030":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","configurationPluginsPages":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"請求先住所","src.customers.components.CustomerAddresses.3517722732":"配送先住所","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"住所","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"","src.orders.components.OrderCustomerNote.1520756907":"","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"備考","src.customers.components.CustomerDetails.577013340":"備考","src.customers.components.CustomerCreatePage.1934221653":"","src.customers.components.CustomerListPage.1934221653":"","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerListPage.477293306":"","src.customers.components.CustomerListPage.1643417013":"","src.customers.components.CustomerOrders.3878642352":"","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"日付","src.orders.components.OrderDraftList.4205493358":"日付","src.orders.components.OrderList.4205493358":"日付","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"状態","src.orders.components.OrderListFilter.1756106276":"状態","src.plugins.components.PluginInfo.1756106276":"状態","src.products.components.ProductListFilter.1756106276":"状態","src.products.components.ProductVariants.1756106276":"状態","src.customers.components.CustomerOrders.878013594":"合計","src.orders.components.OrderDraftDetailsProducts.878013594":"合計","src.orders.components.OrderDraftDetailsSummary.878013594":"合計","src.orders.components.OrderDraftList.878013594":"合計","src.orders.components.OrderFulfillment.878013594":"合計","src.orders.components.OrderUnfulfilledItems.878013594":"合計","src.orders.components.OrderList.878013594":"合計","src.orders.components.OrderPayment.878013594":"合計","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.CustomerList.1946482599":"","src.customers.views.CustomerList.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","src.discounts.components.SaleListPage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"値","src.discounts.components.SaleSummary.1148029984":"値","src.discounts.components.VoucherList.1148029984":"値","src.discounts.components.VoucherSummary.1148029984":"値","src.discounts.components.VoucherValue.1148029984":"値","src.products.components.ProductAttributes.1148029984":"値","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.3907768880":"","src.discounts.components.SaleListPage.1866913828":"","src.translations.components.TranslationsEntitiesListPage.1866913828":"","src.discounts.components.SalePricing.1099355007":"","src.products.components.ProductPricing.1099355007":"","src.products.components.ProductVariantPrice.1099355007":"","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"","src.discounts.components.VoucherSummary.78726751":"","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.614836274":"","src.discounts.components.VoucherListPage.1112241061":"","src.discounts.components.VoucherListPage.1930485532":"","src.translations.components.TranslationsEntitiesListPage.1930485532":"","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"","src.discounts.shipment":"","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.SaleList.2809303671":"","src.discounts.views.SaleList.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.VoucherList.367317371":"","src.discounts.views.VoucherList.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.somethingWentWrong":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"キャンセル","src.orders.views.OrderList.3528672691":"キャンセル","src.confirm":"","src.delete":"","src.edit":"編集","src.manage":"","src.remove":"削除","src.save":"保存","src.show":"","src.undo":"","src.attributes":"","src.products.components.ProductAttributes.4153345096":"","src.categories":"カテゴリー","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"設定","src.customers":"顧客","src.draftOrders":"","src.home":"ホーム","src.navigation":"","src.orders":"注文","src.pages":"","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.plugins":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"販売","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"","src.taxes.components.CountryListPage.3955023266":"","src.translations":"","src.vouchers":"クーポン","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"支払済","src.partiallyPaid":"","src.partiallyRefunded":"","src.refunded":"","src.unpaid":"","src.cancelled":"キャンセル済","src.draft":"","src.fulfilled":"","src.orders.views.OrderList.fulfilled":"","src.orders.components.OrderListFilter.1712863026":"","src.partiallyFulfilled":"","src.unfulfilled":"","src.orders.views.OrderList.unfulfilled":"","src.orders.components.OrderListFilter.1751787272":"","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"リンク","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"","src.orders.components.OrderDetailsPage.1854613983":"","src.orders.components.OrderDraftPage.1854613983":"","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"顧客","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"顧客","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"","src.orders.components.OrderCustomerEditDialog.1411666943":"","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.632633254":"","src.orders.components.OrderDraftCancelDialog.36681973":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"商品","src.orders.components.OrderUnfulfilledItems.1895667608":"商品","src.orders.components.OrderDraftDetailsProducts.2796503714":"数量","src.orders.components.OrderFulfillment.2796503714":"数量","src.orders.components.OrderFulfillmentDialog.2796503714":"数量","src.orders.components.OrderUnfulfilledItems.2796503714":"数量","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"小計","src.orders.components.OrderPayment.781550514":"小計","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"","src.orders.components.OrderListPage.2826235371":"","src.orders.components.OrderDraftListPage.551325728":"","src.orders.components.OrderDraftListPage.77765281":"","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"","src.orders.components.OrderFulfillmentCancelDialog.732594284":"","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"SKU","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.4067959693":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"支払い","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2415661583":"","src.orders.views.OrderList.readyToCapture":"","src.orders.components.OrderListFilter.2222765704":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"お届け先住所","src.productTypes.components.ProductTypeShipping.1325966144":"お届け先住所","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"お届け先住所","src.orders.components.OrderPayment.3768782744":"","src.orders.components.OrderPayment.2320183694":"","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"","src.orders.components.OrderPayment.2845258362":"","src.orders.components.OrderPayment.2444197639":"","src.orders.components.OrderPayment.3500506678":"","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"金額","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.1542417144":"","src.products.components.ProductListPage.1542417144":"","src.products.views.1542417144":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.OrderDraftList.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.OrderDraftList.1648805446":"","src.orders.views.OrderDraftList.1161115149":"","src.orders.views.OrderDraftList.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.1068617485":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"","src.pages.components.PageList.1124600214":"","src.pages.components.PageInfo.1116746286":"","src.translations.components.TranslationsPagesPage.1116746286":"","src.pages.components.PageList.3478065224":"","src.pages.components.PageSlug.3478065224":"","src.productTypes.components.ProductTypeAttributes.3478065224":"","src.pages.components.PageList.3767550649":"","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.3785394515":"","src.pages.views.3785394515":"","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.plugins.components.PluginInfo.3425535100":"","src.plugins.components.PluginsDetailsPage.3425535100":"","src.plugins.components.PluginInfo.1049131348":"","src.plugins.components.PluginInfo.4013064767":"","src.plugins.components.PluginsDetailsPage.3352026836":"","src.plugins.components.PluginsDetailsPage.2277745418":"","src.plugins.components.PluginsDetailsPage.1970881031":"","src.plugins.components.PluginSettings.1970881031":"","src.plugins.components.PluginsDetailsPage.4241018152":"","src.plugins.components.PluginsList.3247064221":"有効","src.staff.components.StaffList.3247064221":"有効","src.plugins.components.PluginsList.4120604650":"","src.plugins.components.PluginsList.666641390":"","src.plugins.views.100549097":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"","src.products.components.ProductVariantImages.3240888698":"","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"在庫","src.products.components.ProductVariantStock.3841616483":"在庫","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListFilter.821159718":"","src.products.components.ProductListFilter.1421689426":"","src.products.components.ProductListFilter.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"","prodictStockInventoryLabel":"","src.products.components.ProductVariantStock.3490038570":"","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"","src.products.components.ProductVariants.2153006789":"","src.products.components.ProductVariantNavigation.2845381934":"","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.3989383405":"","src.products.views.3989383405":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1591632382":"","src.products.views.1731766393":"","src.products.views.2880386427":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1217376589":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.3479705616":"","src.productTypes.components.ProductTypeListPage.1776073799":"","src.productTypes.components.ProductTypeListPage.3420445375":"","src.translations.components.TranslationsEntitiesListPage.3420445375":"","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.ProductTypeList.4080551769":"","src.productTypes.views.ProductTypeList.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRates.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2673544109":"","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.1947090060":"","src.shipping.views.ShippingZoneDetails.131963671":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"キー","src.siteSettings.components.SiteSettingsKeys.2446088470":"キー","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.1481503299":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"許可","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.797461521":"","src.staff.components.StaffListPage.2852350932":"","src.staff.components.StaffListPage.61043583":"","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"","src.staff.views.1308770978":"","src.staff.views.8878988":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.2105464697":"","src.translations.components.TranslationsEntitiesListPage.2559018090":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file diff --git a/locale/ja.po b/locale/ja.po index d3416890d..17548bdd6 100644 --- a/locale/ja.po +++ b/locale/ja.po @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"POT-Creation-Date: 2019-09-06T13:56:36.897Z\n" +"POT-Creation-Date: 2019-09-16T15:25:09.340Z\n" "Last-Translator: Saito Kotaro, 2019\n" "Language-Team: Japanese (https://www.transifex.com/mirumee/teams/34782/ja/)\n" "MIME-Version: 1.0\n" @@ -142,22 +142,6 @@ msgctxt "create new menu item, header" msgid "Add Item" msgstr "" -#. [menuCreateDialogHeader] - dialog header -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json -msgctxt "dialog header" -msgid "Add Menu" -msgstr "" - -#. [menuListPageAddMenu] - button -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json -msgctxt "button" -msgid "Add Menu" -msgstr "" - #. [src.siteSettings.components.SiteSettingsKeyDialog.1238948746] - dialog #. header #. defaultMessage is: @@ -167,14 +151,6 @@ msgctxt "dialog header" msgid "Add New Authorization Key" msgstr "" -#. [src.pages.components.PageDetailsPage.755314116] - page header -#. defaultMessage is: -#. Add Page -#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json -msgctxt "page header" -msgid "Add Page" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.2892088870] - dialog header #. defaultMessage is: #. Add Price Rate @@ -183,38 +159,6 @@ msgctxt "dialog header" msgid "Add Price Rate" msgstr "" -#. [src.orders.components.OrderProductAddDialog.2775402904] - dialog header -#. defaultMessage is: -#. Add Product -#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json -msgctxt "dialog header" -msgid "Add Product" -msgstr "" - -#. [src.products.components.ProductListPage.2775402904] - button -#. defaultMessage is: -#. Add Product -#: build/locale/src/products/components/ProductListPage/ProductListPage.json -msgctxt "button" -msgid "Add Product" -msgstr "" - -#. [src.discounts.components.SaleListPage.1742771332] - button -#. defaultMessage is: -#. Add Sale -#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json -msgctxt "button" -msgid "Add Sale" -msgstr "" - -#. [src.staff.components.StaffAddMemberDialog.3490059488] - dialog header -#. defaultMessage is: -#. Add Staff Member -#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json -msgctxt "dialog header" -msgid "Add Staff Member" -msgstr "" - #. [src.attributes.components.AttributeValueEditDialog.1841790893] - add #. attribute value #. defaultMessage is: @@ -224,14 +168,6 @@ msgctxt "add attribute value" msgid "Add Value" msgstr "" -#. [src.products.views.2178905289] - header -#. defaultMessage is: -#. Add Variant -#: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "header" -msgid "Add Variant" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.1397795758] - add weight #. based shipping method, dialog header #. defaultMessage is: @@ -249,14 +185,6 @@ msgctxt "button" msgid "Add address" msgstr "" -#. [src.attributes.components.AttributeListPage.350498821] - button -#. defaultMessage is: -#. Add attribute -#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json -msgctxt "button" -msgid "Add attribute" -msgstr "" - #. [src.siteSettings.components.SiteSettingsKeyDialog.50561933] - button #. defaultMessage is: #. Add authentication @@ -265,14 +193,6 @@ msgctxt "button" msgid "Add authentication" msgstr "" -#. [src.categories.components.CategoryListPage.228151782] - button -#. defaultMessage is: -#. Add category -#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json -msgctxt "button" -msgid "Add category" -msgstr "カテゴリー追加" - #. [src.collections.components.CollectionCreatePage.3958681866] - page header #. defaultMessage is: #. Add collection @@ -281,14 +201,6 @@ msgctxt "page header" msgid "Add collection" msgstr "" -#. [src.collections.components.CollectionListPage.3958681866] - button -#. defaultMessage is: -#. Add collection -#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json -msgctxt "button" -msgid "Add collection" -msgstr "" - #. [src.customers.components.CustomerCreatePage.1934221653] - page header #. defaultMessage is: #. Add customer @@ -321,14 +233,6 @@ msgctxt "button" msgid "Add key" msgstr "" -#. [menuItemsAddItem] - add new menu item -#. defaultMessage is: -#. Add new item -#: build/locale/src/navigation/components/MenuItems/MenuItems.json -msgctxt "add new menu item" -msgid "Add new item" -msgstr "" - #. [menuItemsPlaceholder] #. defaultMessage is: #. Add new menu item to begin creating menu @@ -363,14 +267,6 @@ msgctxt "button" msgid "Add or Edit Link" msgstr "" -#. [src.pages.components.PageListPage.1767905232] - button -#. defaultMessage is: -#. Add page -#: build/locale/src/pages/components/PageListPage/PageListPage.json -msgctxt "button" -msgid "Add page" -msgstr "" - #. [src.categories.components.CategoryProducts.3554578821] - button #. defaultMessage is: #. Add product @@ -379,14 +275,6 @@ msgctxt "button" msgid "Add product" msgstr "" -#. [src.productTypes.components.ProductTypeListPage.889729490] - button -#. defaultMessage is: -#. Add product type -#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json -msgctxt "button" -msgid "Add product type" -msgstr "" - #. [src.orders.components.OrderDraftDetails.2528459381] - button #. defaultMessage is: #. Add products @@ -395,14 +283,6 @@ msgctxt "button" msgid "Add products" msgstr "" -#. [src.shipping.components.ShippingZoneRates.352297149] - button -#. defaultMessage is: -#. Add rate -#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json -msgctxt "button" -msgid "Add rate" -msgstr "" - #. [src.categories.components.CategoryCreatePage.2563994280] #. defaultMessage is: #. Add search engine title and description to make this category easier to @@ -464,30 +344,6 @@ msgctxt "button" msgid "Add shipping carrier" msgstr "" -#. [src.shipping.components.ShippingZonesList.2474410767] - button -#. defaultMessage is: -#. Add shipping zone -#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json -msgctxt "button" -msgid "Add shipping zone" -msgstr "" - -#. [src.staff.components.StaffListPage.802625341] - button -#. defaultMessage is: -#. Add staff member -#: build/locale/src/staff/components/StaffListPage/StaffListPage.json -msgctxt "button" -msgid "Add staff member" -msgstr "" - -#. [src.categories.components.CategoryList.435697837] - button -#. defaultMessage is: -#. Add subcategory -#: build/locale/src/categories/components/CategoryList/CategoryList.json -msgctxt "button" -msgid "Add subcategory" -msgstr "" - #. [src.attributes.components.AttributeProperties.673770329] - add attribute #. as column in product list table #. defaultMessage is: @@ -515,35 +371,14 @@ msgctxt "dialog header" msgid "Add tracking code" msgstr "" -#. [src.attributes.components.AttributeValues.254756045] - add attribute value -#. button -#. defaultMessage is: -#. Add value -#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json -msgctxt "add attribute value button" -msgid "Add value" -msgstr "" - #. [src.products.components.ProductVariantNavigation.2845381934] - button #. defaultMessage is: #. Add variant -#. [src.products.components.ProductVariants.2845381934] - button -#. defaultMessage is: -#. Add variant #: build/locale/src/products/components/ProductVariantNavigation/ProductVariantNavigation.json -#: build/locale/src/products/components/ProductVariants/ProductVariants.json msgctxt "button" msgid "Add variant" msgstr "" -#. [src.discounts.components.VoucherListPage.1536809153] - button -#. defaultMessage is: -#. Add voucher -#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json -msgctxt "button" -msgid "Add voucher" -msgstr "クーポン追加" - #. [src.attributes.views.AttributeDetails.634268988] - added new attribute #. value #. defaultMessage is: @@ -601,14 +436,6 @@ msgctxt "description" msgid "Address line 2" msgstr "" -#. [src.customers.components.CustomerAddress.1320082647] - addres card header -#. defaultMessage is: -#. Address {addressNumber} -#: build/locale/src/customers/components/CustomerAddress/CustomerAddress.json -msgctxt "addres card header" -msgid "Address {addressNumber}" -msgstr "" - #. [src.attributes.components.AttributeValues.1565474525] - attribute values #. list: slug column header #. defaultMessage is: @@ -658,6 +485,46 @@ msgctxt "tax rate" msgid "Agricultural supplies" msgstr "" +#. [src.attributes.components.AttributeListPage.2417065806] - tab name +#. defaultMessage is: +#. All Attributes +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "tab name" +msgid "All Attributes" +msgstr "" + +#. [src.categories.components.CategoryListPage.4294878092] - tab name +#. defaultMessage is: +#. All Categories +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "tab name" +msgid "All Categories" +msgstr "" + +#. [src.collections.components.CollectionListPage.1631917001] - tab name +#. defaultMessage is: +#. All Collections +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "tab name" +msgid "All Collections" +msgstr "" + +#. [src.customers.components.CustomerListPage.477293306] - tab name +#. defaultMessage is: +#. All Customers +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "tab name" +msgid "All Customers" +msgstr "" + +#. [src.orders.components.OrderDraftListPage.551325728] - tab name +#. defaultMessage is: +#. All Drafts +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "tab name" +msgid "All Drafts" +msgstr "" + #. [src.orders.components.OrderListPage.875489544] - tab name #. defaultMessage is: #. All Orders @@ -675,22 +542,54 @@ msgctxt "section header" msgid "All Photos" msgstr "" -#. [src.products.components.ProductListPage.821159718] - tab name +#. [src.productTypes.components.ProductTypeListPage.1776073799] - tab name +#. defaultMessage is: +#. All Product Types +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "tab name" +msgid "All Product Types" +msgstr "" + +#. [src.products.components.ProductListFilter.821159718] - tab name #. defaultMessage is: #. All Products -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "tab name" msgid "All Products" msgstr "" -#. [src.categories.components.CategoryList.3229914152] - section header +#. [src.discounts.components.SaleListPage.3907768880] - tab name +#. defaultMessage is: +#. All Sales +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "tab name" +msgid "All Sales" +msgstr "" + +#. [src.staff.components.StaffListPage.2852350932] - tab name +#. defaultMessage is: +#. All Staff Members +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "tab name" +msgid "All Staff Members" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.3229914152] - section header #. defaultMessage is: #. All Subcategories -#: build/locale/src/categories/components/CategoryList/CategoryList.json +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json msgctxt "section header" msgid "All Subcategories" msgstr "" +#. [src.discounts.components.VoucherListPage.1112241061] - tab name +#. defaultMessage is: +#. All Vouchers +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "tab name" +msgid "All Vouchers" +msgstr "" + #. [src.taxes.components.TaxConfiguration.142803418] #. defaultMessage is: #. All products prices are entered with tax included @@ -798,6 +697,14 @@ msgctxt "description" msgid "Are you sure you want to delete collection's image?" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.36681973] +#. defaultMessage is: +#. Are you sure you want to delete draft #{number}? +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "description" +msgid "Are you sure you want to delete draft #{number}?" +msgstr "" + #. [menuDetailsDeleteMenuContent] #. defaultMessage is: #. Are you sure you want to delete menu {menuName}? @@ -814,6 +721,14 @@ msgctxt "description" msgid "Are you sure you want to delete this address from users address book?" msgstr "" +#. [src.products.views.2880386427] +#. defaultMessage is: +#. Are you sure you want to delete this image? +#: build/locale/src/products/views/ProductImage.json +msgctxt "description" +msgid "Are you sure you want to delete this image?" +msgstr "" + #. [src.attributes.components.AttributeDeleteDialog.3738429348] - dialog #. content #. defaultMessage is: @@ -864,12 +779,7 @@ msgstr "" #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this attribute} #. other{{displayQuantity} categories}}? -#. [src.categories.views.844574071] -#. defaultMessage is: -#. Are you sure you want to delete {counter,plural,one{this attribute} -#. other{{displayQuantity} categories}}? #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this attribute} " @@ -887,22 +797,33 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.2497542455] +#. [src.categories.views.CategoryList.2144707585] +#. defaultMessage is: +#. Are you sure you want to delete {counter,plural,one{this category} +#. other{{displayQuantity} categories}}? +#: build/locale/src/categories/views/CategoryList/CategoryList.json +msgctxt "description" +msgid "" +"Are you sure you want to delete {counter,plural,one{this category} " +"other{{displayQuantity} categories}}?" +msgstr "" + +#. [src.collections.views.CollectionList.2497542455] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this collection} " "other{{displayQuantity} collections}}?" msgstr "" -#. [src.customers.views.409347866] +#. [src.customers.views.CustomerList.409347866] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this customer} #. other{{displayQuantity} customers}}? -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this customer} " @@ -920,11 +841,11 @@ msgid "" "other{{displayQuantity} menus}}?" msgstr "" -#. [src.orders.views.1389231130] - dialog content +#. [src.orders.views.OrderDraftList.1389231130] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this order draft} #. other{{displayQuantity} orderDrafts}}? -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this order draft} " @@ -942,11 +863,11 @@ msgid "" "other{{displayQuantity} pages}}?" msgstr "" -#. [src.productTypes.views.2294091098] - dialog content +#. [src.productTypes.views.ProductTypeList.2294091098] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this product type} #. other{{displayQuantity} product types}}? -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this product type} " @@ -964,11 +885,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.discounts.views.2516361175] - dialog content +#. [src.discounts.views.SaleList.2516361175] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this sale} #. other{{displayQuantity} sales}}? -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this sale} " @@ -997,17 +918,33 @@ msgid "" "other{{displayQuantity} variants}}?" msgstr "" -#. [src.discounts.views.1791926983] - dialog content +#. [src.discounts.views.VoucherList.1791926983] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this voucher} #. other{{displayQuantity} vouchers}}? -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this voucher} " "other{{displayQuantity} vouchers}}?" msgstr "" +#. [src.shipping.views.ShippingZoneDetails.131963671] - unassign country +#. defaultMessage is: +#. Are you sure you want to delete {countryName} from this shipping zone? +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country" +msgid "Are you sure you want to delete {countryName} from this shipping zone?" +msgstr "" + +#. [src.staff.views.8878988] +#. defaultMessage is: +#. Are you sure you want to delete {email} from staff members? +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "description" +msgid "Are you sure you want to delete {email} from staff members?" +msgstr "" + #. [src.customers.views.1927691511] - delete customer, dialog content #. defaultMessage is: #. Are you sure you want to delete {email}? @@ -1122,11 +1059,11 @@ msgctxt "description" msgid "Are you sure you want to mark this order as paid?" msgstr "" -#. [src.collections.views.1348793822] +#. [src.collections.views.CollectionList.1348793822] #. defaultMessage is: #. Are you sure you want to publish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to publish {counter,plural,one{this collection} " @@ -1155,30 +1092,6 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.orders.components.OrderDraftCancelDialog.3199827590] -#. defaultMessage is: -#. Are you sure you want to remove draft #{number}? -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "description" -msgid "Are you sure you want to remove draft #{number}?" -msgstr "" - -#. [src.products.views.672103788] -#. defaultMessage is: -#. Are you sure you want to remove this image? -#: build/locale/src/products/views/ProductImage.json -msgctxt "description" -msgid "Are you sure you want to remove this image?" -msgstr "" - -#. [src.shipping.views.ShippingZoneDetails.1790261672] - unassign country -#. defaultMessage is: -#. Are you sure you want to remove {countryName} from this shipping zone? -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country" -msgid "Are you sure you want to remove {countryName} from this shipping zone?" -msgstr "" - #. [src.staff.views.3945766678] #. defaultMessage is: #. Are you sure you want to remove {email} avatar? @@ -1187,14 +1100,6 @@ msgctxt "description" msgid "Are you sure you want to remove {email} avatar?" msgstr "" -#. [src.staff.views.2728048444] -#. defaultMessage is: -#. Are you sure you want to remove {email} from staff members? -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "description" -msgid "Are you sure you want to remove {email} from staff members?" -msgstr "" - #. [src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450] #. defaultMessage is: #. Are you sure you want to unassign {attributeName} from {productTypeName}? @@ -1275,11 +1180,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.3944356444] +#. [src.collections.views.CollectionList.3944356444] #. defaultMessage is: #. Are you sure you want to unpublish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to unpublish {counter,plural,one{this collection} " @@ -1440,6 +1345,15 @@ msgctxt "button" msgid "Assign products" msgstr "" +#. [src.attributes.components.AttributeValues.351422234] - assign attribute +#. value button +#. defaultMessage is: +#. Assign value +#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json +msgctxt "assign attribute value button" +msgid "Assign value" +msgstr "" + #. [src.attributes.components.AttributeDetails.3605174225] - attribute's slug #. short code label #. defaultMessage is: @@ -1518,6 +1432,14 @@ msgctxt "product attributes, section header" msgid "Attributes" msgstr "" +#. [src.configuration.2326418019] +#. defaultMessage is: +#. Attributes and Product Typess +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Attributes and Product Typess" +msgstr "" + #. [src.attributes.views.AttributeList.3218248395] - deleted multiple #. attributes #. defaultMessage is: @@ -2301,6 +2223,22 @@ msgctxt "description" msgid "Country area" msgstr "" +#. [menuCreateDialogHeader] - dialog header +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json +msgctxt "dialog header" +msgid "Create Menu" +msgstr "" + +#. [menuListPageAddMenu] - button +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json +msgctxt "button" +msgid "Create Menu" +msgstr "" + #. [src.attributes.components.AttributePage.2855501559] - page title #. defaultMessage is: #. Create New Attribute @@ -2325,6 +2263,30 @@ msgctxt "header" msgid "Create New Shipping Zone" msgstr "" +#. [src.pages.components.PageDetailsPage.1068617485] - page header +#. defaultMessage is: +#. Create Page +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page header" +msgid "Create Page" +msgstr "" + +#. [src.orders.components.OrderProductAddDialog.1542417144] - dialog header +#. defaultMessage is: +#. Create Product +#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json +msgctxt "dialog header" +msgid "Create Product" +msgstr "" + +#. [src.products.components.ProductListPage.1542417144] - button +#. defaultMessage is: +#. Create Product +#: build/locale/src/products/components/ProductListPage/ProductListPage.json +msgctxt "button" +msgid "Create Product" +msgstr "" + #. [src.products.views.1542417144] - window title #. defaultMessage is: #. Create Product @@ -2357,11 +2319,19 @@ msgctxt "page header" msgid "Create Sale" msgstr "" -#. [src.products.views.2362587265] - window title +#. [src.discounts.components.SaleListPage.3866518732] - button +#. defaultMessage is: +#. Create Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "button" +msgid "Create Sale" +msgstr "" + +#. [src.products.views.2362587265] - header #. defaultMessage is: #. Create Variant #: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "window title" +msgctxt "header" msgid "Create Variant" msgstr "" @@ -2373,6 +2343,22 @@ msgctxt "page header" msgid "Create Voucher" msgstr "" +#. [src.attributes.components.AttributeListPage.3824684885] - button +#. defaultMessage is: +#. Create attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "button" +msgid "Create attribute" +msgstr "" + +#. [src.categories.components.CategoryListPage.1140231710] - button +#. defaultMessage is: +#. Create category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "button" +msgid "Create category" +msgstr "" + #. [src.categories.views.1140231710] - window title #. defaultMessage is: #. Create category @@ -2381,6 +2367,14 @@ msgctxt "window title" msgid "Create category" msgstr "" +#. [src.collections.components.CollectionListPage.686910896] - button +#. defaultMessage is: +#. Create collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "button" +msgid "Create collection" +msgstr "" + #. [src.collections.views.686910896] - window title #. defaultMessage is: #. Create collection @@ -2397,6 +2391,14 @@ msgctxt "window title" msgid "Create customer" msgstr "" +#. [menuItemsAddItem] - add new menu item +#. defaultMessage is: +#. Create new item +#: build/locale/src/navigation/components/MenuItems/MenuItems.json +msgctxt "add new menu item" +msgid "Create new item" +msgstr "" + #. [src.orders.components.OrderDraftListPage.2826235371] - button #. defaultMessage is: #. Create order @@ -2409,6 +2411,14 @@ msgctxt "button" msgid "Create order" msgstr "" +#. [src.pages.components.PageListPage.3785394515] - button +#. defaultMessage is: +#. Create page +#: build/locale/src/pages/components/PageListPage/PageListPage.json +msgctxt "button" +msgid "Create page" +msgstr "" + #. [src.pages.views.3785394515] - header #. defaultMessage is: #. Create page @@ -2420,11 +2430,55 @@ msgstr "" #. [src.shipping.components.ShippingZoneRateDialog.16061680] - button #. defaultMessage is: #. Create rate +#. [src.shipping.components.ShippingZoneRates.16061680] - button +#. defaultMessage is: +#. Create rate #: build/locale/src/shipping/components/ShippingZoneRateDialog/ShippingZoneRateDialog.json +#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json msgctxt "button" msgid "Create rate" msgstr "" +#. [src.shipping.components.ShippingZonesList.2673544109] - button +#. defaultMessage is: +#. Create shipping zone +#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json +msgctxt "button" +msgid "Create shipping zone" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.770296100] - button +#. defaultMessage is: +#. Create subcategory +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json +msgctxt "button" +msgid "Create subcategory" +msgstr "" + +#. [src.products.components.ProductVariants.3989383405] - button +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/components/ProductVariants/ProductVariants.json +msgctxt "button" +msgid "Create variant" +msgstr "" + +#. [src.products.views.3989383405] - window title +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/views/ProductVariantCreate.json +msgctxt "window title" +msgid "Create variant" +msgstr "" + +#. [src.discounts.components.VoucherListPage.614836274] - button +#. defaultMessage is: +#. Create voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "button" +msgid "Create voucher" +msgstr "" + #. [src.collections.views.1597339737] #. defaultMessage is: #. Created collection @@ -2471,7 +2525,11 @@ msgstr "" #. [src.components.FilterBar.2340527467] #. defaultMessage is: #. Custom Filter +#. [src.components.SearchBar.2340527467] +#. defaultMessage is: +#. Custom Filter #: build/locale/src/components/FilterBar/FilterBar.json +#: build/locale/src/components/SearchBar/SearchBar.json msgctxt "description" msgid "Custom Filter" msgstr "" @@ -2727,10 +2785,18 @@ msgctxt "dialog title" msgid "Delete Collection" msgstr "" -#. [src.orders.views.1161115149] - dialog header +#. [src.products.views.1731766393] - dialog header +#. defaultMessage is: +#. Delete Image +#: build/locale/src/products/views/ProductImage.json +msgctxt "dialog header" +msgid "Delete Image" +msgstr "" + +#. [src.orders.views.OrderDraftList.1161115149] - dialog header #. defaultMessage is: #. Delete Order Drafts -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog header" msgid "Delete Order Drafts" msgstr "" @@ -2768,10 +2834,10 @@ msgctxt "dialog header" msgid "Delete Product Type" msgstr "" -#. [src.productTypes.views.4080551769] - dialog header +#. [src.productTypes.views.ProductTypeList.4080551769] - dialog header #. defaultMessage is: #. Delete Product Types -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog header" msgid "Delete Product Types" msgstr "" @@ -2800,10 +2866,10 @@ msgctxt "dialog header" msgid "Delete Sale" msgstr "" -#. [src.discounts.views.2809303671] - dialog header +#. [src.discounts.views.SaleList.2809303671] - dialog header #. defaultMessage is: #. Delete Sales -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog header" msgid "Delete Sales" msgstr "" @@ -2817,9 +2883,13 @@ msgctxt "custom search delete, dialog header" msgid "Delete Search" msgstr "" +#. [src.components.Filter.2173195312] - button +#. defaultMessage is: +#. Delete Search #. [src.components.TableFilter.2173195312] - button #. defaultMessage is: #. Delete Search +#: build/locale/src/components/Filter/FilterSearch.json #: build/locale/src/components/TableFilter/FilterChips.json msgctxt "button" msgid "Delete Search" @@ -2886,10 +2956,10 @@ msgctxt "dialog header" msgid "Delete Voucher" msgstr "" -#. [src.discounts.views.367317371] - dialog header +#. [src.discounts.views.VoucherList.367317371] - dialog header #. defaultMessage is: #. Delete Vouchers -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog header" msgid "Delete Vouchers" msgstr "" @@ -2923,11 +2993,11 @@ msgstr "" #. [src.categories.views.712767046] - dialog title #. defaultMessage is: #. Delete categories -#. [src.categories.views.712767046] - dialog title +#. [src.categories.views.CategoryList.712767046] - dialog title #. defaultMessage is: #. Delete categories #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "dialog title" msgid "Delete categories" msgstr "" @@ -2944,10 +3014,10 @@ msgctxt "dialog title" msgid "Delete category" msgstr "" -#. [src.collections.views.3817188998] - dialog title +#. [src.collections.views.CollectionList.3817188998] - dialog title #. defaultMessage is: #. Delete collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Delete collections" msgstr "" @@ -2960,14 +3030,31 @@ msgctxt "dialog header" msgid "Delete customer" msgstr "" -#. [src.customers.views.1946482599] - dialog header +#. [src.customers.views.CustomerList.1946482599] - dialog header #. defaultMessage is: #. Delete customers -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "dialog header" msgid "Delete customers" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.632633254] - dialog header +#. defaultMessage is: +#. Delete draft order +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "dialog header" +msgid "Delete draft order" +msgstr "" + +#. [src.shipping.views.ShippingZoneDetails.1947090060] - unassign country, +#. dialog header +#. defaultMessage is: +#. Delete from shipping zone +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country, dialog header" +msgid "Delete from shipping zone" +msgstr "" + #. [src.collections.views.942133001] - dialog title #. defaultMessage is: #. Delete image @@ -3028,6 +3115,14 @@ msgctxt "description" msgid "Deleted collection" msgstr "" +#. [src.orders.views.OrderDraftList.1648805446] +#. defaultMessage is: +#. Deleted draft orders +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json +msgctxt "description" +msgid "Deleted draft orders" +msgstr "" + #. [menuListDeletedMenu] #. defaultMessage is: #. Deleted menu @@ -3627,14 +3722,6 @@ msgctxt "order history message" msgid "Fulfilled {quantity} items" msgstr "" -#. [src.orders.components.OrderListFilter.2943502192] - order -#. defaultMessage is: -#. Fulfillment Status -#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json -msgctxt "order" -msgid "Fulfillment Status" -msgstr "" - #. [src.orders.components.OrderHistory.3081292385] - order history message #. defaultMessage is: #. Fulfillment confirmation was sent to customer @@ -3791,12 +3878,12 @@ msgctxt "description" msgid "If empty, the preview shows what will be autogenerated." msgstr "" -#. [src.attributes.components.AttributeProperties.2519239682] +#. [src.attributes.components.AttributeProperties.4048785456] #. defaultMessage is: -#. If enable this attribute can be used as a column in product table. +#. If enabled this attribute can be used as a column in product table. #: build/locale/src/attributes/components/AttributeProperties/AttributeProperties.json msgctxt "description" -msgid "If enable this attribute can be used as a column in product table." +msgid "If enabled this attribute can be used as a column in product table." msgstr "" #. [src.attributes.components.AttributeProperties.787251583] @@ -3902,6 +3989,22 @@ msgctxt "product variant stock" msgid "Inventory" msgstr "" +#. [src.staff.components.StaffAddMemberDialog.1481503299] - dialog header +#. defaultMessage is: +#. Invite Staff Member +#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json +msgctxt "dialog header" +msgid "Invite Staff Member" +msgstr "" + +#. [src.staff.components.StaffListPage.797461521] - button +#. defaultMessage is: +#. Invite staff member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "button" +msgid "Invite staff member" +msgstr "" + #. [src.productTypes.components.ProductTypeShipping.2143413921] - switch #. button #. defaultMessage is: @@ -4254,6 +4357,14 @@ msgctxt "voucher requirement" msgid "Minimum quantity of items" msgstr "" +#. [src.configuration.1233229030] +#. defaultMessage is: +#. Miscellaneous +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Miscellaneous" +msgstr "" + #. [src.attributes.components.AttributeDetails.3334509011] - product attribute #. type #. defaultMessage is: @@ -5086,6 +5197,14 @@ msgctxt "description" msgid "Order History" msgstr "" +#. [src.orders.components.OrderListFilter.2222765704] +#. defaultMessage is: +#. Order Status +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +msgctxt "description" +msgid "Order Status" +msgstr "" + #. [src.orders.components.OrderHistory.1230178536] - order history message #. defaultMessage is: #. Order address was updated @@ -5102,13 +5221,13 @@ msgctxt "order history message" msgid "Order confirmation was sent to customer" msgstr "" -#. [src.orders.views.1872939752] +#. [src.orders.views.OrderDraftList.1872939752] #. defaultMessage is: #. Order draft succesfully created #. [src.orders.views.OrderList.1872939752] #. defaultMessage is: #. Order draft succesfully created -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json #: build/locale/src/orders/views/OrderList/OrderList.json msgctxt "description" msgid "Order draft succesfully created" @@ -5773,6 +5892,14 @@ msgctxt "description" msgid "Product Name" msgstr "" +#. [src.configuration.3655543906] +#. defaultMessage is: +#. Product Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Product Settings" +msgstr "" + #. [src.discounts.components.DiscountProducts.4257289053] #. defaultMessage is: #. Product Type @@ -5931,12 +6058,12 @@ msgctxt "order history message" msgid "Products were added to draft order" msgstr "" -#. [src.orders.components.OrderHistory.2574162126] - order history message +#. [src.orders.components.OrderHistory.4067959693] - order history message #. defaultMessage is: -#. Products were removed from draft order +#. Products were deleted from draft order #: build/locale/src/orders/components/OrderHistory/OrderHistory.json msgctxt "order history message" -msgid "Products were removed from draft order" +msgid "Products were deleted from draft order" msgstr "" #. [src.properties] @@ -5963,10 +6090,10 @@ msgctxt "description" msgid "Provided email address does not exist in our database." msgstr "" -#. [src.collections.views.1547167026] - publish collections +#. [src.collections.views.CollectionList.1547167026] - publish collections #. defaultMessage is: #. Publish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "publish collections" msgid "Publish" msgstr "公開" @@ -6003,10 +6130,10 @@ msgctxt "dialog header" msgid "Publish Products" msgstr "" -#. [src.collections.views.2823425739] - dialog title +#. [src.collections.views.CollectionList.2823425739] - dialog title #. defaultMessage is: #. Publish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Publish collections" msgstr "" @@ -6180,6 +6307,18 @@ msgctxt "shipping method price" msgid "Rate Price" msgstr "" +#. [src.orders.components.OrderListFilter.2415661583] - order status +#. defaultMessage is: +#. Ready to Capture +#. [src.orders.views.OrderList.readyToCapture] - order status +#. defaultMessage is: +#. Ready to Capture +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +#: build/locale/src/orders/views/OrderList/filters.json +msgctxt "order status" +msgid "Ready to Capture" +msgstr "" + #. [src.customers.components.CustomerOrders.3878642352] - section header #. defaultMessage is: #. Recent orders @@ -6228,22 +6367,14 @@ msgctxt "switch button" msgid "Release all stock allocated to this order" msgstr "" -#. [src.auth.components.LoginPage.3182284913] - login -#. defaultMessage is: -#. Remember me -#: build/locale/src/auth/components/LoginPage/LoginPage.json -msgctxt "login" -msgid "Remember me" -msgstr "" - #. [src.categories.views.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. -#. [src.categories.views.3488150607] +#. [src.categories.views.CategoryList.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "description" msgid "Remember this will also delete all products assigned to this category." msgstr "" @@ -6256,39 +6387,6 @@ msgctxt "button" msgid "Remove" msgstr "削除" -#. [src.products.views.490753666] - dialog header -#. defaultMessage is: -#. Remove Image -#: build/locale/src/products/views/ProductImage.json -msgctxt "dialog header" -msgid "Remove Image" -msgstr "" - -#. [src.orders.components.OrderDraftCancelDialog.500287069] - dialog header -#. defaultMessage is: -#. Remove draft order -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "dialog header" -msgid "Remove draft order" -msgstr "" - -#. [src.shipping.views.ShippingZoneDetails.254167659] - unassign country, -#. dialog header -#. defaultMessage is: -#. Remove from shipping zone -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country, dialog header" -msgid "Remove from shipping zone" -msgstr "" - -#. [src.orders.views.3880993240] -#. defaultMessage is: -#. Removed draft orders -#: build/locale/src/orders/views/OrderDraftList.json -msgctxt "description" -msgid "Removed draft orders" -msgstr "" - #. [src.pages.views.1457312643] #. defaultMessage is: #. Removed page @@ -6454,6 +6552,18 @@ msgctxt "button" msgid "Save" msgstr "保存" +#. [src.components.Filter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#. [src.components.TableFilter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#: build/locale/src/components/Filter/FilterSearch.json +#: build/locale/src/components/TableFilter/FilterChips.json +msgctxt "button" +msgid "Save Custom Search" +msgstr "" + #. [src.components.SaveFilterTabDialog.1514415736] - save filter tab, header #. defaultMessage is: #. Save Custom Search @@ -6462,14 +6572,6 @@ msgctxt "save filter tab, header" msgid "Save Custom Search" msgstr "" -#. [src.components.TableFilter.1514415736] - button -#. defaultMessage is: -#. Save Custom Search -#: build/locale/src/components/TableFilter/FilterChips.json -msgctxt "button" -msgid "Save Custom Search" -msgstr "" - #. [src.products.components.ProductVariantCreatePage.2853608829] - button #. defaultMessage is: #. Save variant @@ -6486,6 +6588,14 @@ msgctxt "description" msgid "Saved changes" msgstr "" +#. [src.attributes.components.AttributeListPage.3916653510] +#. defaultMessage is: +#. Search Attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "description" +msgid "Search Attribute" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.902296540] #. defaultMessage is: #. Search Attributes @@ -6502,10 +6612,30 @@ msgctxt "description" msgid "Search Categories" msgstr "" +#. [src.categories.components.CategoryListPage.3841025483] +#. defaultMessage is: +#. Search Category +#. [src.translations.components.TranslationsEntitiesListPage.3841025483] +#. defaultMessage is: +#. Search Category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Category" +msgstr "" + +#. [src.collections.components.CollectionListPage.4057224233] +#. defaultMessage is: +#. Search Collection #. [src.components.AssignCollectionDialog.4057224233] #. defaultMessage is: #. Search Collection +#. [src.translations.components.TranslationsEntitiesListPage.4057224233] +#. defaultMessage is: +#. Search Collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json #: build/locale/src/components/AssignCollectionDialog/AssignCollectionDialog.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json msgctxt "description" msgid "Search Collection" msgstr "" @@ -6518,6 +6648,14 @@ msgctxt "description" msgid "Search Countries" msgstr "" +#. [src.customers.components.CustomerListPage.1643417013] +#. defaultMessage is: +#. Search Customer +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "description" +msgid "Search Customer" +msgstr "" + #. [src.orders.components.OrderCustomer.2433460203] #. defaultMessage is: #. Search Customers @@ -6526,6 +6664,14 @@ msgctxt "description" msgid "Search Customers" msgstr "" +#. [src.orders.components.OrderDraftListPage.77765281] +#. defaultMessage is: +#. Search Draft +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "description" +msgid "Search Draft" +msgstr "" + #. [src.translations.components.TranslationsCategoriesPage.1406947243] #. defaultMessage is: #. Search Engine Description @@ -6606,6 +6752,34 @@ msgctxt "description" msgid "Search Orders..." msgstr "" +#. [src.translations.components.TranslationsEntitiesListPage.2559018090] +#. defaultMessage is: +#. Search Page +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Page" +msgstr "" + +#. [src.translations.components.TranslationsEntitiesListPage.2105464697] +#. defaultMessage is: +#. Search Product +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product" +msgstr "" + +#. [src.productTypes.components.ProductTypeListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#. [src.translations.components.TranslationsEntitiesListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product Type" +msgstr "" + #. [src.components.AssignProductDialog.2850255786] #. defaultMessage is: #. Search Products @@ -6618,14 +6792,46 @@ msgctxt "description" msgid "Search Products" msgstr "" -#. [src.products.components.ProductListPage.3550330425] +#. [src.products.components.ProductListFilter.3550330425] #. defaultMessage is: #. Search Products... -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Search Products..." msgstr "" +#. [src.discounts.components.SaleListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#. [src.translations.components.TranslationsEntitiesListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Sale" +msgstr "" + +#. [src.staff.components.StaffListPage.61043583] +#. defaultMessage is: +#. Search Staff Member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "description" +msgid "Search Staff Member" +msgstr "" + +#. [src.discounts.components.VoucherListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#. [src.translations.components.TranslationsEntitiesListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Voucher" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.524117994] #. defaultMessage is: #. Search by attribute name @@ -6732,10 +6938,10 @@ msgctxt "description" msgid "Select all orders where:" msgstr "" -#. [src.products.components.ProductListPage.1421689426] +#. [src.products.components.ProductListFilter.1421689426] #. defaultMessage is: #. Select all products where: -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Select all products where:" msgstr "" @@ -6821,6 +7027,14 @@ msgctxt "description" msgid "Set plugin as Active" msgstr "" +#. [src.components.VisibilityCard.292404896] +#. defaultMessage is: +#. Set publication date +#: build/locale/src/components/VisibilityCard/VisibilityCard.json +msgctxt "description" +msgid "Set publication date" +msgstr "" + #. [src.discounts.shipment] - voucher discount #. defaultMessage is: #. Shipment @@ -7086,6 +7300,14 @@ msgctxt "staff section name" msgid "Staff Members" msgstr "" +#. [src.configuration.3140151600] +#. defaultMessage is: +#. Staff Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Staff Settings" +msgstr "" + #. [src.standard] - tax rate #. defaultMessage is: #. Standard @@ -8070,10 +8292,10 @@ msgctxt "payment status" msgid "Unpaid" msgstr "" -#. [src.collections.views.2237014112] - unpublish collections +#. [src.collections.views.CollectionList.2237014112] - unpublish collections #. defaultMessage is: #. Unpublish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "unpublish collections" msgid "Unpublish" msgstr "非公開" @@ -8110,10 +8332,10 @@ msgctxt "dialog header" msgid "Unpublish Products" msgstr "" -#. [src.collections.views.2637364047] - dialog title +#. [src.collections.views.CollectionList.2637364047] - dialog title #. defaultMessage is: #. Unpublish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Unpublish collections" msgstr "" @@ -8613,6 +8835,22 @@ msgctxt "description" msgid "ZIP / Postal code" msgstr "" +#. [src.productTypes.components.ProductTypeListPage.3479705616] - button +#. defaultMessage is: +#. create product type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "button" +msgid "create product type" +msgstr "" + +#. [src.staff.views.1308770978] - dialog header +#. defaultMessage is: +#. delete Staff User +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "dialog header" +msgid "delete Staff User" +msgstr "" + #. [orderPaymentVATDoesNotApply] - vat not included in order price #. defaultMessage is: #. does not apply @@ -8686,19 +8924,35 @@ msgctxt "product status is set as" msgid "is set as" msgstr "" -#. [src.staff.views.2240444792] - dialog header -#. defaultMessage is: -#. remove Staff User -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "dialog header" -msgid "remove Staff User" -msgstr "" - -#. [src.components.VisibilityCard.1815688500] +#. [src.collections.components.CollectionCreatePage.1815688500] - collection #. defaultMessage is: #. since {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.1815688500] - collection +#. defaultMessage is: +#. since {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "since {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.1815688500] - page +#. defaultMessage is: +#. since {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "since {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#. [src.products.components.ProductUpdatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "since {date}" msgstr "" @@ -8726,11 +8980,35 @@ msgctxt "weight" msgid "to {value} {unit}" msgstr "" -#. [src.components.VisibilityCard.2001551496] +#. [src.collections.components.CollectionCreatePage.2001551496] - collection #. defaultMessage is: #. will be visible from {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.2001551496] - collection +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "will be visible from {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.2001551496] - page +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "will be visible from {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#. [src.products.components.ProductUpdatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "will be visible from {date}" msgstr "" diff --git a/locale/ko.json b/locale/ko.json index a42c3335c..e5bbe68c9 100644 --- a/locale/ko.json +++ b/locale/ko.json @@ -1 +1 @@ -{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"속성 삭제","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.350498821":"속성 추가","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.2519239682":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"이름","src.categories.components.CategoryProducts.636461959":"이름","src.collections.components.CollectionProducts.636461959":"이름","src.products.components.ProductDetailsForm.636461959":"이름","src.collections.components.CollectionDetails.636461959":"이름","src.components.ProductList.636461959":"이름","src.discounts.components.SaleInfo.636461959":"이름","src.discounts.components.SaleList.636461959":"이름","src.discounts.components.SaleSummary.636461959":"이름","menuItemDialogNameLabel":"이름","src.products.components.ProductVariants.636461959":"이름","src.shipping.components.ShippingZoneRates.636461959":"이름","src.shipping.components.ShippingZonesList.636461959":"이름","src.staff.components.StaffList.636461959":"이름","src.translations.components.TranslationsEntitiesList.636461959":"이름","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.254756045":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.3182284913":"","src.auth.components.LoginPage.109182747":"로그인","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"카테고리 삭제","src.categories.views.2004894945":"카테고리 삭제","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.3229914152":"","src.categories.components.CategoryList.435697837":"","src.categories.components.CategoryList.2159874182":"보조 카테고리","src.categories.components.CategoryUpdatePage.2159874182":"보조 카테고리","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.228151782":"카테고리 추가","src.categories.components.CategoryProducts.2968663655":"상품","src.categories.components.CategoryUpdatePage.2968663655":"상품","src.discounts.components.DiscountCategories.2968663655":"상품","src.discounts.components.DiscountCollections.2968663655":"상품","src.products":"상품","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryProducts.3554578821":"상품 추가","src.categories.components.CategoryProductsCard.3554578821":"상품 추가","src.categories.components.CategoryProducts.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProducts.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.categories.components.CategoryProductsCard.4164156574":"","src.categories.views.1754466114":"","src.categories.views.1140231710":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.712767046":"","src.categories.views.299584400":"","src.categories.views.844574071":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.collections.components.CollectionCreatePage.3958681866":"컬렉션 추가","src.collections.components.CollectionListPage.3958681866":"컬렉션 추가","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"가용성","src.availability":"","src.collections.components.CollectionList.3640454975":"퍼블리싱 됨","src.collections.components.CollectionProducts.3640454975":"퍼블리싱 됨","src.discounts.components.DiscountProducts.3640454975":"퍼블리싱 됨","src.components.ProductList.3640454975":"퍼블리싱 됨","src.products.components.ProductListPage.3640454975":"퍼블리싱 됨","src.pages.components.PageList.3640454975":"퍼블리싱 됨","src.products.views.ProductList.published":"퍼블리싱 됨","src.collections.components.CollectionList.2341910657":"퍼블리싱 안됨","src.collections.components.CollectionProducts.2341910657":"퍼블리싱 안됨","src.discounts.components.DiscountProducts.2341910657":"퍼블리싱 안됨","src.components.ProductList.2341910657":"퍼블리싱 안됨","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.686910896":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"이미지 삭제","src.collections.views.2402899582":"","src.collections.views.2237014112":"퍼블리싱 취소","src.pages.views.2237014112":"퍼블리싱 취소","src.products.views.ProductList.2237014112":"퍼블리싱 취소","src.collections.views.1547167026":"퍼블리싱","src.pages.views.1547167026":"퍼블리싱","src.products.views.ProductList.1547167026":"퍼블리싱","src.collections.views.2823425739":"","src.collections.views.1348793822":"","src.collections.views.2637364047":"","src.collections.views.3944356444":"","src.collections.views.3817188998":"","src.collections.views.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"로그아웃","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.4057224233":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"에러","src.components.ErrorMessageCard.2845142593":"에러","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.FilterBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"추가","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.ProductList.1134347598":"가격","src.orders.components.OrderDraftDetailsProducts.1134347598":"가격","src.orders.components.OrderFulfillment.1134347598":"가격","src.products.components.ProductListPage.1134347598":"가격","src.products.components.ProductPricing.1134347598":"가격","src.orders.components.OrderUnfulfilledItems.1134347598":"가격","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"가격","src.shipping.components.ShippingZoneRates.1134347598":"가격","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"가시성","src.pages.components.PageList.1459686496":"가시성","src.products.components.ProductListFilter.1459686496":"가시성","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"숨김","src.products.views.ProductList.hidden":"숨김","src.components.VisibilityCard.1815688500":"","src.components.VisibilityCard.2001551496":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","configurationMenuStaff":"","configurationMenuShipping":"","configurationMenuTaxes":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","src.customers.components.CustomerAddress.1320082647":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"결제 주소","src.customers.components.CustomerAddresses.3517722732":"배송 주소","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"주소","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"","src.orders.components.OrderCustomerNote.1520756907":"","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"노트","src.customers.components.CustomerDetails.577013340":"노트","src.customers.components.CustomerCreatePage.1934221653":"고객추가","src.customers.components.CustomerListPage.1934221653":"고객추가","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerOrders.3878642352":"최근주문","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"날짜","src.orders.components.OrderDraftList.4205493358":"날짜","src.orders.components.OrderList.4205493358":"날짜","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"상태","src.orders.components.OrderListFilter.1756106276":"상태","src.products.components.ProductListFilter.1756106276":"상태","src.products.components.ProductVariants.1756106276":"상태","src.customers.components.CustomerOrders.878013594":"합계","src.orders.components.OrderDraftDetailsProducts.878013594":"합계","src.orders.components.OrderDraftDetailsSummary.878013594":"합계","src.orders.components.OrderDraftList.878013594":"합계","src.orders.components.OrderFulfillment.878013594":"합계","src.orders.components.OrderUnfulfilledItems.878013594":"합계","src.orders.components.OrderList.878013594":"합계","src.orders.components.OrderPayment.878013594":"합계","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"주소 삭제","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.1946482599":"","src.customers.views.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"가격","src.discounts.components.SaleSummary.1148029984":"가격","src.discounts.components.VoucherList.1148029984":"가격","src.discounts.components.VoucherSummary.1148029984":"가격","src.discounts.components.VoucherValue.1148029984":"가격","src.products.components.ProductAttributes.1148029984":"가격","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.1742771332":"","src.discounts.components.SalePricing.1099355007":"가격","src.products.components.ProductPricing.1099355007":"가격","src.products.components.ProductVariantPrice.1099355007":"가격","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"국가","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"","src.discounts.components.VoucherSummary.78726751":"","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.1536809153":"바우처 추가","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"특정 제품","src.discounts.shipment":"배송","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.2809303671":"","src.discounts.views.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.367317371":"","src.discounts.views.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"취소","src.orders.views.OrderList.3528672691":"취소","src.confirm":"","src.delete":"삭제","src.edit":"수정","src.manage":"","src.remove":"제거","src.save":"저장","src.show":"","src.undo":"","src.attributes":"속성","src.products.components.ProductAttributes.4153345096":"속성","src.categories":"카테고리","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"컬렉션","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"설정","src.customers":"고객","src.draftOrders":"","src.home":"홈","src.navigation":"네비게이션","src.orders":"주문","src.pages":"페이지","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"판매","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"세금","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"세금","src.taxes.components.CountryListPage.3955023266":"세금","src.translations":"","src.vouchers":"바우처","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"결제 완료","src.partiallyPaid":"","src.partiallyRefunded":"","src.refunded":"완전히 환불 됨","src.unpaid":"","src.cancelled":"취소","src.draft":"임시","src.fulfilled":"완료","src.orders.views.OrderList.fulfilled":"완료","src.orders.components.OrderListFilter.1712863026":"완료","src.partiallyFulfilled":"부분 미완료","src.unfulfilled":"미완료","src.orders.views.OrderList.unfulfilled":"미완료","src.orders.components.OrderListFilter.1751787272":"미완료","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","src.1395232177":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"주문취소","src.orders.components.OrderDetailsPage.1854613983":"주문취소","src.orders.components.OrderDraftPage.1854613983":"주문취소","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"고객","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"고객","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"배송주소와 같음","src.orders.components.OrderCustomerEditDialog.1411666943":"고객정보 수정","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.500287069":"임시 주문 제거","src.orders.components.OrderDraftCancelDialog.3199827590":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"제품","src.orders.components.OrderUnfulfilledItems.1895667608":"제품","src.orders.components.OrderDraftDetailsProducts.2796503714":"수량","src.orders.components.OrderFulfillment.2796503714":"수량","src.orders.components.OrderFulfillmentDialog.2796503714":"수량","src.orders.components.OrderUnfulfilledItems.2796503714":"수량","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"부분 합계","src.orders.components.OrderPayment.781550514":"부분 합계","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"주문 생성","src.orders.components.OrderListPage.2826235371":"주문 생성","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"추적 추가","src.orders.components.OrderFulfillmentCancelDialog.732594284":"","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"재고 관리 코드","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"송장 번호","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.2574162126":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"주문 전액 지불","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"주문되었습니다","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"결제","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2943502192":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"배송","src.productTypes.components.ProductTypeShipping.1325966144":"배송","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"배송","src.orders.components.OrderPayment.3768782744":"사전승인된 금액","src.orders.components.OrderPayment.2320183694":"지정된 금액","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"캡쳐","src.orders.components.OrderPayment.2845258362":"환불","src.orders.components.OrderPayment.2444197639":"무효","src.orders.components.OrderPayment.3500506678":"결제로 표시","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"총액","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.2775402904":"","src.products.components.ProductListPage.2775402904":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.3880993240":"","src.orders.views.1161115149":"","src.orders.views.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.755314116":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"제목","src.pages.components.PageList.1124600214":"제목","src.pages.components.PageInfo.1116746286":"","src.translations.components.TranslationsPagesPage.1116746286":"","src.pages.components.PageList.3478065224":"","src.pages.components.PageSlug.3478065224":"","src.productTypes.components.ProductTypeAttributes.3478065224":"","src.pages.components.PageList.3767550649":"","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.1767905232":"페이지 추가","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.3785394515":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"가격","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"이미지","src.products.components.ProductVariantImages.3240888698":"이미지","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"재고","src.products.components.ProductVariantStock.3841616483":"재고","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListPage.821159718":"","src.products.components.ProductListPage.1421689426":"","src.products.components.ProductListPage.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"재고","prodictStockInventoryLabel":"재고","src.products.components.ProductVariantStock.3490038570":"재고","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"옵션 삭제","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"옵션","src.products.components.ProductVariants.2153006789":"옵션","src.products.components.ProductVariantNavigation.2845381934":"옵션 추가","src.products.components.ProductVariants.2845381934":"옵션 추가","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1542417144":"","src.products.views.1591632382":"","src.products.views.490753666":"","src.products.views.672103788":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.1694086800":"","src.products.views.ProductList.224127438":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.products.views.2178905289":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1756957616":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.889729490":"상품 타입 추가","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.4080551769":"","src.productTypes.views.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.352297149":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2474410767":"","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.254167659":"","src.shipping.views.ShippingZoneDetails.1790261672":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"키","src.siteSettings.components.SiteSettingsKeys.2446088470":"키","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.3490059488":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"권한","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.3247064221":"활성화","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.802625341":"스태프 멤버 추가","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"","src.staff.views.2240444792":"","src.staff.views.2728048444":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file +{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"속성 삭제","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.3824684885":"","src.attributes.components.AttributeListPage.2417065806":"","src.attributes.components.AttributeListPage.3916653510":"","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.4048785456":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"이름","src.categories.components.CategoryProductList.636461959":"이름","src.components.ProductList.636461959":"이름","src.products.components.ProductList.636461959":"이름","src.collections.components.CollectionDetails.636461959":"이름","src.collections.components.CollectionProducts.636461959":"이름","src.products.components.ProductDetailsForm.636461959":"이름","src.discounts.components.SaleInfo.636461959":"이름","src.discounts.components.SaleList.636461959":"이름","src.discounts.components.SaleSummary.636461959":"이름","menuItemDialogNameLabel":"이름","src.plugins.components.PluginsList.636461959":"이름","src.products.components.ProductVariants.636461959":"이름","src.shipping.components.ShippingZoneRates.636461959":"이름","src.shipping.components.ShippingZonesList.636461959":"이름","src.staff.components.StaffList.636461959":"이름","src.translations.components.TranslationsEntitiesList.636461959":"이름","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.351422234":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.109182747":"로그인","src.auth.components.LoginPage.4028609483":"","src.auth.components.NewPasswordPage.1915811227":"","src.auth.components.NewPasswordPage.1254879564":"","src.auth.components.NewPasswordPage.2799926859":"","src.auth.components.NewPasswordPage.4253911811":"","src.auth.components.NewPasswordPage.2342634351":"","src.auth.components.ResetPasswordPage.2370700732":"","src.auth.components.ResetPasswordPage.3663311080":"","src.auth.components.ResetPasswordSuccessPage.4066297200":"","src.auth.components.ResetPasswordSuccessPage.2245157344":"","src.auth.views.2388238158":"","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"카테고리 삭제","src.categories.views.2004894945":"카테고리 삭제","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.2159874182":"보조 카테고리","src.categories.components.CategoryUpdatePage.2159874182":"보조 카테고리","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.1140231710":"","src.categories.views.1140231710":"","src.categories.components.CategoryListPage.4294878092":"","src.categories.components.CategoryListPage.3841025483":"","src.translations.components.TranslationsEntitiesListPage.3841025483":"","src.categories.components.CategoryProductList.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductList.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProductList.3640454975":"퍼블리싱 됨","src.components.ProductList.3640454975":"퍼블리싱 됨","src.products.components.ProductList.3640454975":"퍼블리싱 됨","src.products.components.ProductListPage.3640454975":"퍼블리싱 됨","productStatusLabel":"퍼블리싱 됨","src.collections.components.CollectionList.3640454975":"퍼블리싱 됨","src.collections.components.CollectionProducts.3640454975":"퍼블리싱 됨","src.discounts.components.DiscountProducts.3640454975":"퍼블리싱 됨","src.pages.components.PageList.3640454975":"퍼블리싱 됨","src.products.views.ProductList.published":"퍼블리싱 됨","src.categories.components.CategoryProductList.1134347598":"가격","src.orders.components.OrderFulfillment.1134347598":"가격","src.products.components.ProductList.1134347598":"가격","src.products.components.ProductListPage.1134347598":"가격","src.products.components.ProductPricing.1134347598":"가격","src.components.ProductList.1134347598":"가격","src.orders.components.OrderDraftDetailsProducts.1134347598":"가격","src.orders.components.OrderUnfulfilledItems.1134347598":"가격","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"가격","src.shipping.components.ShippingZoneRates.1134347598":"가격","src.categories.components.CategoryProductList.2341910657":"퍼블리싱 안됨","src.products.components.ProductList.2341910657":"퍼블리싱 안됨","src.collections.components.CollectionList.2341910657":"퍼블리싱 안됨","src.collections.components.CollectionProducts.2341910657":"퍼블리싱 안됨","src.discounts.components.DiscountProducts.2341910657":"퍼블리싱 안됨","src.components.ProductList.2341910657":"퍼블리싱 안됨","src.categories.components.CategoryProductList.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.products.components.ProductList.1657559629":"","src.categories.components.CategoryProducts.4164156574":"","src.categories.components.CategoryProducts.3554578821":"상품 추가","src.categories.components.CategoryUpdatePage.2968663655":"상품","src.discounts.components.DiscountCategories.2968663655":"상품","src.discounts.components.DiscountCollections.2968663655":"상품","src.products":"상품","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryUpdatePage.3229914152":"","src.categories.components.CategoryUpdatePage.770296100":"","src.categories.views.1754466114":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.CategoryList.3488150607":"","src.categories.views.712767046":"","src.categories.views.CategoryList.712767046":"","src.categories.views.299584400":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.categories.views.CategoryList.2144707585":"","src.collections.components.CollectionCreatePage.3958681866":"컬렉션 추가","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionCreatePage.2001551496":"","src.collections.components.CollectionDetailsPage.2001551496":"","src.pages.components.PageDetailsPage.2001551496":"","src.products.components.ProductCreatePage.2001551496":"","src.products.components.ProductUpdatePage.2001551496":"","src.collections.components.CollectionCreatePage.1815688500":"","src.collections.components.CollectionDetailsPage.1815688500":"","src.pages.components.PageDetailsPage.1815688500":"","src.products.components.ProductCreatePage.1815688500":"","src.products.components.ProductUpdatePage.1815688500":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"가용성","src.availability":"","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionListPage.686910896":"","src.collections.views.686910896":"","src.collections.components.CollectionListPage.1631917001":"","src.collections.components.CollectionListPage.4057224233":"","src.components.AssignCollectionDialog.4057224233":"","src.translations.components.TranslationsEntitiesListPage.4057224233":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"이미지 삭제","src.collections.views.2402899582":"","src.collections.views.CollectionList.2237014112":"퍼블리싱 취소","src.pages.views.2237014112":"퍼블리싱 취소","src.products.views.ProductList.2237014112":"퍼블리싱 취소","src.collections.views.CollectionList.1547167026":"퍼블리싱","src.pages.views.1547167026":"퍼블리싱","src.products.views.ProductList.1547167026":"퍼블리싱","src.collections.views.CollectionList.2823425739":"","src.collections.views.CollectionList.1348793822":"","src.collections.views.CollectionList.2637364047":"","src.collections.views.CollectionList.3944356444":"","src.collections.views.CollectionList.3817188998":"","src.collections.views.CollectionList.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"로그아웃","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"에러","src.components.ErrorMessageCard.2845142593":"에러","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.Filter.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.Filter.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.FilterBar.2340527467":"","src.components.SearchBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"추가","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"가시성","src.pages.components.PageList.1459686496":"가시성","src.products.components.ProductListFilter.1459686496":"가시성","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"숨김","src.products.views.ProductList.hidden":"숨김","src.components.VisibilityCard.292404896":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","src.configuration.2326418019":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","src.configuration.3655543906":"","configurationMenuShipping":"","configurationMenuTaxes":"","src.configuration.3140151600":"","configurationMenuStaff":"","src.configuration.1233229030":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","configurationPluginsPages":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"결제 주소","src.customers.components.CustomerAddresses.3517722732":"배송 주소","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"주소","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"","src.orders.components.OrderCustomerNote.1520756907":"","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"노트","src.customers.components.CustomerDetails.577013340":"노트","src.customers.components.CustomerCreatePage.1934221653":"고객추가","src.customers.components.CustomerListPage.1934221653":"고객추가","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerListPage.477293306":"","src.customers.components.CustomerListPage.1643417013":"","src.customers.components.CustomerOrders.3878642352":"최근주문","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"날짜","src.orders.components.OrderDraftList.4205493358":"날짜","src.orders.components.OrderList.4205493358":"날짜","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"상태","src.orders.components.OrderListFilter.1756106276":"상태","src.plugins.components.PluginInfo.1756106276":"상태","src.products.components.ProductListFilter.1756106276":"상태","src.products.components.ProductVariants.1756106276":"상태","src.customers.components.CustomerOrders.878013594":"합계","src.orders.components.OrderDraftDetailsProducts.878013594":"합계","src.orders.components.OrderDraftDetailsSummary.878013594":"합계","src.orders.components.OrderDraftList.878013594":"합계","src.orders.components.OrderFulfillment.878013594":"합계","src.orders.components.OrderUnfulfilledItems.878013594":"합계","src.orders.components.OrderList.878013594":"합계","src.orders.components.OrderPayment.878013594":"합계","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"주소 삭제","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.CustomerList.1946482599":"","src.customers.views.CustomerList.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","src.discounts.components.SaleListPage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"가격","src.discounts.components.SaleSummary.1148029984":"가격","src.discounts.components.VoucherList.1148029984":"가격","src.discounts.components.VoucherSummary.1148029984":"가격","src.discounts.components.VoucherValue.1148029984":"가격","src.products.components.ProductAttributes.1148029984":"가격","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.3907768880":"","src.discounts.components.SaleListPage.1866913828":"","src.translations.components.TranslationsEntitiesListPage.1866913828":"","src.discounts.components.SalePricing.1099355007":"가격","src.products.components.ProductPricing.1099355007":"가격","src.products.components.ProductVariantPrice.1099355007":"가격","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"국가","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"","src.discounts.components.VoucherSummary.78726751":"","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.614836274":"","src.discounts.components.VoucherListPage.1112241061":"","src.discounts.components.VoucherListPage.1930485532":"","src.translations.components.TranslationsEntitiesListPage.1930485532":"","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"특정 제품","src.discounts.shipment":"배송","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.SaleList.2809303671":"","src.discounts.views.SaleList.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.VoucherList.367317371":"","src.discounts.views.VoucherList.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.somethingWentWrong":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"취소","src.orders.views.OrderList.3528672691":"취소","src.confirm":"","src.delete":"삭제","src.edit":"수정","src.manage":"","src.remove":"제거","src.save":"저장","src.show":"","src.undo":"","src.attributes":"속성","src.products.components.ProductAttributes.4153345096":"속성","src.categories":"카테고리","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"컬렉션","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"설정","src.customers":"고객","src.draftOrders":"","src.home":"홈","src.navigation":"네비게이션","src.orders":"주문","src.pages":"페이지","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.plugins":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"판매","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"세금","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"세금","src.taxes.components.CountryListPage.3955023266":"세금","src.translations":"","src.vouchers":"바우처","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"결제 완료","src.partiallyPaid":"","src.partiallyRefunded":"","src.refunded":"완전히 환불 됨","src.unpaid":"","src.cancelled":"취소","src.draft":"임시","src.fulfilled":"완료","src.orders.views.OrderList.fulfilled":"완료","src.orders.components.OrderListFilter.1712863026":"완료","src.partiallyFulfilled":"부분 미완료","src.unfulfilled":"미완료","src.orders.views.OrderList.unfulfilled":"미완료","src.orders.components.OrderListFilter.1751787272":"미완료","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"주문취소","src.orders.components.OrderDetailsPage.1854613983":"주문취소","src.orders.components.OrderDraftPage.1854613983":"주문취소","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"고객","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"고객","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"배송주소와 같음","src.orders.components.OrderCustomerEditDialog.1411666943":"고객정보 수정","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.632633254":"","src.orders.components.OrderDraftCancelDialog.36681973":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"제품","src.orders.components.OrderUnfulfilledItems.1895667608":"제품","src.orders.components.OrderDraftDetailsProducts.2796503714":"수량","src.orders.components.OrderFulfillment.2796503714":"수량","src.orders.components.OrderFulfillmentDialog.2796503714":"수량","src.orders.components.OrderUnfulfilledItems.2796503714":"수량","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"부분 합계","src.orders.components.OrderPayment.781550514":"부분 합계","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"주문 생성","src.orders.components.OrderListPage.2826235371":"주문 생성","src.orders.components.OrderDraftListPage.551325728":"","src.orders.components.OrderDraftListPage.77765281":"","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"추적 추가","src.orders.components.OrderFulfillmentCancelDialog.732594284":"","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"재고 관리 코드","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"송장 번호","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.4067959693":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"주문 전액 지불","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"주문되었습니다","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"결제","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2415661583":"","src.orders.views.OrderList.readyToCapture":"","src.orders.components.OrderListFilter.2222765704":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"배송","src.productTypes.components.ProductTypeShipping.1325966144":"배송","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"배송","src.orders.components.OrderPayment.3768782744":"사전승인된 금액","src.orders.components.OrderPayment.2320183694":"지정된 금액","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"캡쳐","src.orders.components.OrderPayment.2845258362":"환불","src.orders.components.OrderPayment.2444197639":"무효","src.orders.components.OrderPayment.3500506678":"결제로 표시","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"총액","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.1542417144":"","src.products.components.ProductListPage.1542417144":"","src.products.views.1542417144":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.OrderDraftList.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.OrderDraftList.1648805446":"","src.orders.views.OrderDraftList.1161115149":"","src.orders.views.OrderDraftList.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.1068617485":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"제목","src.pages.components.PageList.1124600214":"제목","src.pages.components.PageInfo.1116746286":"","src.translations.components.TranslationsPagesPage.1116746286":"","src.pages.components.PageList.3478065224":"","src.pages.components.PageSlug.3478065224":"","src.productTypes.components.ProductTypeAttributes.3478065224":"","src.pages.components.PageList.3767550649":"","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.3785394515":"","src.pages.views.3785394515":"","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.plugins.components.PluginInfo.3425535100":"","src.plugins.components.PluginsDetailsPage.3425535100":"","src.plugins.components.PluginInfo.1049131348":"","src.plugins.components.PluginInfo.4013064767":"","src.plugins.components.PluginsDetailsPage.3352026836":"","src.plugins.components.PluginsDetailsPage.2277745418":"","src.plugins.components.PluginsDetailsPage.1970881031":"","src.plugins.components.PluginSettings.1970881031":"","src.plugins.components.PluginsDetailsPage.4241018152":"","src.plugins.components.PluginsList.3247064221":"활성화","src.staff.components.StaffList.3247064221":"활성화","src.plugins.components.PluginsList.4120604650":"","src.plugins.components.PluginsList.666641390":"","src.plugins.views.100549097":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"가격","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"이미지","src.products.components.ProductVariantImages.3240888698":"이미지","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"재고","src.products.components.ProductVariantStock.3841616483":"재고","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListFilter.821159718":"","src.products.components.ProductListFilter.1421689426":"","src.products.components.ProductListFilter.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"재고","prodictStockInventoryLabel":"재고","src.products.components.ProductVariantStock.3490038570":"재고","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"옵션 삭제","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"옵션","src.products.components.ProductVariants.2153006789":"옵션","src.products.components.ProductVariantNavigation.2845381934":"옵션 추가","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.3989383405":"","src.products.views.3989383405":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1591632382":"","src.products.views.1731766393":"","src.products.views.2880386427":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1217376589":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.3479705616":"","src.productTypes.components.ProductTypeListPage.1776073799":"","src.productTypes.components.ProductTypeListPage.3420445375":"","src.translations.components.TranslationsEntitiesListPage.3420445375":"","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.ProductTypeList.4080551769":"","src.productTypes.views.ProductTypeList.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRates.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2673544109":"","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.1947090060":"","src.shipping.views.ShippingZoneDetails.131963671":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"키","src.siteSettings.components.SiteSettingsKeys.2446088470":"키","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.1481503299":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"권한","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.797461521":"","src.staff.components.StaffListPage.2852350932":"","src.staff.components.StaffListPage.61043583":"","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"","src.staff.views.1308770978":"","src.staff.views.8878988":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.2105464697":"","src.translations.components.TranslationsEntitiesListPage.2559018090":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file diff --git a/locale/ko.po b/locale/ko.po index 53e25ea25..db90d8cd0 100644 --- a/locale/ko.po +++ b/locale/ko.po @@ -6,7 +6,7 @@ # msgid "" msgstr "" -"POT-Creation-Date: 2019-09-06T13:56:36.897Z\n" +"POT-Creation-Date: 2019-09-16T15:25:09.340Z\n" "Last-Translator: Jihan Chung , 2019\n" "Language-Team: Korean (https://www.transifex.com/mirumee/teams/34782/ko/)\n" "MIME-Version: 1.0\n" @@ -144,22 +144,6 @@ msgctxt "create new menu item, header" msgid "Add Item" msgstr "" -#. [menuCreateDialogHeader] - dialog header -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json -msgctxt "dialog header" -msgid "Add Menu" -msgstr "" - -#. [menuListPageAddMenu] - button -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json -msgctxt "button" -msgid "Add Menu" -msgstr "" - #. [src.siteSettings.components.SiteSettingsKeyDialog.1238948746] - dialog #. header #. defaultMessage is: @@ -169,14 +153,6 @@ msgctxt "dialog header" msgid "Add New Authorization Key" msgstr "" -#. [src.pages.components.PageDetailsPage.755314116] - page header -#. defaultMessage is: -#. Add Page -#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json -msgctxt "page header" -msgid "Add Page" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.2892088870] - dialog header #. defaultMessage is: #. Add Price Rate @@ -185,38 +161,6 @@ msgctxt "dialog header" msgid "Add Price Rate" msgstr "" -#. [src.orders.components.OrderProductAddDialog.2775402904] - dialog header -#. defaultMessage is: -#. Add Product -#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json -msgctxt "dialog header" -msgid "Add Product" -msgstr "" - -#. [src.products.components.ProductListPage.2775402904] - button -#. defaultMessage is: -#. Add Product -#: build/locale/src/products/components/ProductListPage/ProductListPage.json -msgctxt "button" -msgid "Add Product" -msgstr "" - -#. [src.discounts.components.SaleListPage.1742771332] - button -#. defaultMessage is: -#. Add Sale -#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json -msgctxt "button" -msgid "Add Sale" -msgstr "" - -#. [src.staff.components.StaffAddMemberDialog.3490059488] - dialog header -#. defaultMessage is: -#. Add Staff Member -#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json -msgctxt "dialog header" -msgid "Add Staff Member" -msgstr "" - #. [src.attributes.components.AttributeValueEditDialog.1841790893] - add #. attribute value #. defaultMessage is: @@ -226,14 +170,6 @@ msgctxt "add attribute value" msgid "Add Value" msgstr "" -#. [src.products.views.2178905289] - header -#. defaultMessage is: -#. Add Variant -#: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "header" -msgid "Add Variant" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.1397795758] - add weight #. based shipping method, dialog header #. defaultMessage is: @@ -251,14 +187,6 @@ msgctxt "button" msgid "Add address" msgstr "" -#. [src.attributes.components.AttributeListPage.350498821] - button -#. defaultMessage is: -#. Add attribute -#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json -msgctxt "button" -msgid "Add attribute" -msgstr "속성 추가" - #. [src.siteSettings.components.SiteSettingsKeyDialog.50561933] - button #. defaultMessage is: #. Add authentication @@ -267,14 +195,6 @@ msgctxt "button" msgid "Add authentication" msgstr "" -#. [src.categories.components.CategoryListPage.228151782] - button -#. defaultMessage is: -#. Add category -#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json -msgctxt "button" -msgid "Add category" -msgstr "카테고리 추가" - #. [src.collections.components.CollectionCreatePage.3958681866] - page header #. defaultMessage is: #. Add collection @@ -283,14 +203,6 @@ msgctxt "page header" msgid "Add collection" msgstr "컬렉션 추가" -#. [src.collections.components.CollectionListPage.3958681866] - button -#. defaultMessage is: -#. Add collection -#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json -msgctxt "button" -msgid "Add collection" -msgstr "컬렉션 추가" - #. [src.customers.components.CustomerCreatePage.1934221653] - page header #. defaultMessage is: #. Add customer @@ -323,14 +235,6 @@ msgctxt "button" msgid "Add key" msgstr "" -#. [menuItemsAddItem] - add new menu item -#. defaultMessage is: -#. Add new item -#: build/locale/src/navigation/components/MenuItems/MenuItems.json -msgctxt "add new menu item" -msgid "Add new item" -msgstr "" - #. [menuItemsPlaceholder] #. defaultMessage is: #. Add new menu item to begin creating menu @@ -365,14 +269,6 @@ msgctxt "button" msgid "Add or Edit Link" msgstr "" -#. [src.pages.components.PageListPage.1767905232] - button -#. defaultMessage is: -#. Add page -#: build/locale/src/pages/components/PageListPage/PageListPage.json -msgctxt "button" -msgid "Add page" -msgstr "페이지 추가" - #. [src.categories.components.CategoryProducts.3554578821] - button #. defaultMessage is: #. Add product @@ -381,14 +277,6 @@ msgctxt "button" msgid "Add product" msgstr "상품 추가" -#. [src.productTypes.components.ProductTypeListPage.889729490] - button -#. defaultMessage is: -#. Add product type -#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json -msgctxt "button" -msgid "Add product type" -msgstr "상품 타입 추가" - #. [src.orders.components.OrderDraftDetails.2528459381] - button #. defaultMessage is: #. Add products @@ -397,14 +285,6 @@ msgctxt "button" msgid "Add products" msgstr "" -#. [src.shipping.components.ShippingZoneRates.352297149] - button -#. defaultMessage is: -#. Add rate -#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json -msgctxt "button" -msgid "Add rate" -msgstr "" - #. [src.categories.components.CategoryCreatePage.2563994280] #. defaultMessage is: #. Add search engine title and description to make this category easier to @@ -466,30 +346,6 @@ msgctxt "button" msgid "Add shipping carrier" msgstr "" -#. [src.shipping.components.ShippingZonesList.2474410767] - button -#. defaultMessage is: -#. Add shipping zone -#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json -msgctxt "button" -msgid "Add shipping zone" -msgstr "" - -#. [src.staff.components.StaffListPage.802625341] - button -#. defaultMessage is: -#. Add staff member -#: build/locale/src/staff/components/StaffListPage/StaffListPage.json -msgctxt "button" -msgid "Add staff member" -msgstr "스태프 멤버 추가" - -#. [src.categories.components.CategoryList.435697837] - button -#. defaultMessage is: -#. Add subcategory -#: build/locale/src/categories/components/CategoryList/CategoryList.json -msgctxt "button" -msgid "Add subcategory" -msgstr "" - #. [src.attributes.components.AttributeProperties.673770329] - add attribute #. as column in product list table #. defaultMessage is: @@ -517,35 +373,14 @@ msgctxt "dialog header" msgid "Add tracking code" msgstr "" -#. [src.attributes.components.AttributeValues.254756045] - add attribute value -#. button -#. defaultMessage is: -#. Add value -#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json -msgctxt "add attribute value button" -msgid "Add value" -msgstr "" - #. [src.products.components.ProductVariantNavigation.2845381934] - button #. defaultMessage is: #. Add variant -#. [src.products.components.ProductVariants.2845381934] - button -#. defaultMessage is: -#. Add variant #: build/locale/src/products/components/ProductVariantNavigation/ProductVariantNavigation.json -#: build/locale/src/products/components/ProductVariants/ProductVariants.json msgctxt "button" msgid "Add variant" msgstr "옵션 추가" -#. [src.discounts.components.VoucherListPage.1536809153] - button -#. defaultMessage is: -#. Add voucher -#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json -msgctxt "button" -msgid "Add voucher" -msgstr "바우처 추가" - #. [src.attributes.views.AttributeDetails.634268988] - added new attribute #. value #. defaultMessage is: @@ -603,14 +438,6 @@ msgctxt "description" msgid "Address line 2" msgstr "" -#. [src.customers.components.CustomerAddress.1320082647] - addres card header -#. defaultMessage is: -#. Address {addressNumber} -#: build/locale/src/customers/components/CustomerAddress/CustomerAddress.json -msgctxt "addres card header" -msgid "Address {addressNumber}" -msgstr "" - #. [src.attributes.components.AttributeValues.1565474525] - attribute values #. list: slug column header #. defaultMessage is: @@ -660,6 +487,46 @@ msgctxt "tax rate" msgid "Agricultural supplies" msgstr "" +#. [src.attributes.components.AttributeListPage.2417065806] - tab name +#. defaultMessage is: +#. All Attributes +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "tab name" +msgid "All Attributes" +msgstr "" + +#. [src.categories.components.CategoryListPage.4294878092] - tab name +#. defaultMessage is: +#. All Categories +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "tab name" +msgid "All Categories" +msgstr "" + +#. [src.collections.components.CollectionListPage.1631917001] - tab name +#. defaultMessage is: +#. All Collections +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "tab name" +msgid "All Collections" +msgstr "" + +#. [src.customers.components.CustomerListPage.477293306] - tab name +#. defaultMessage is: +#. All Customers +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "tab name" +msgid "All Customers" +msgstr "" + +#. [src.orders.components.OrderDraftListPage.551325728] - tab name +#. defaultMessage is: +#. All Drafts +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "tab name" +msgid "All Drafts" +msgstr "" + #. [src.orders.components.OrderListPage.875489544] - tab name #. defaultMessage is: #. All Orders @@ -677,22 +544,54 @@ msgctxt "section header" msgid "All Photos" msgstr "" -#. [src.products.components.ProductListPage.821159718] - tab name +#. [src.productTypes.components.ProductTypeListPage.1776073799] - tab name +#. defaultMessage is: +#. All Product Types +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "tab name" +msgid "All Product Types" +msgstr "" + +#. [src.products.components.ProductListFilter.821159718] - tab name #. defaultMessage is: #. All Products -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "tab name" msgid "All Products" msgstr "" -#. [src.categories.components.CategoryList.3229914152] - section header +#. [src.discounts.components.SaleListPage.3907768880] - tab name +#. defaultMessage is: +#. All Sales +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "tab name" +msgid "All Sales" +msgstr "" + +#. [src.staff.components.StaffListPage.2852350932] - tab name +#. defaultMessage is: +#. All Staff Members +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "tab name" +msgid "All Staff Members" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.3229914152] - section header #. defaultMessage is: #. All Subcategories -#: build/locale/src/categories/components/CategoryList/CategoryList.json +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json msgctxt "section header" msgid "All Subcategories" msgstr "" +#. [src.discounts.components.VoucherListPage.1112241061] - tab name +#. defaultMessage is: +#. All Vouchers +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "tab name" +msgid "All Vouchers" +msgstr "" + #. [src.taxes.components.TaxConfiguration.142803418] #. defaultMessage is: #. All products prices are entered with tax included @@ -800,6 +699,14 @@ msgctxt "description" msgid "Are you sure you want to delete collection's image?" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.36681973] +#. defaultMessage is: +#. Are you sure you want to delete draft #{number}? +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "description" +msgid "Are you sure you want to delete draft #{number}?" +msgstr "" + #. [menuDetailsDeleteMenuContent] #. defaultMessage is: #. Are you sure you want to delete menu {menuName}? @@ -816,6 +723,14 @@ msgctxt "description" msgid "Are you sure you want to delete this address from users address book?" msgstr "" +#. [src.products.views.2880386427] +#. defaultMessage is: +#. Are you sure you want to delete this image? +#: build/locale/src/products/views/ProductImage.json +msgctxt "description" +msgid "Are you sure you want to delete this image?" +msgstr "" + #. [src.attributes.components.AttributeDeleteDialog.3738429348] - dialog #. content #. defaultMessage is: @@ -866,12 +781,7 @@ msgstr "" #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this attribute} #. other{{displayQuantity} categories}}? -#. [src.categories.views.844574071] -#. defaultMessage is: -#. Are you sure you want to delete {counter,plural,one{this attribute} -#. other{{displayQuantity} categories}}? #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this attribute} " @@ -889,22 +799,33 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.2497542455] +#. [src.categories.views.CategoryList.2144707585] +#. defaultMessage is: +#. Are you sure you want to delete {counter,plural,one{this category} +#. other{{displayQuantity} categories}}? +#: build/locale/src/categories/views/CategoryList/CategoryList.json +msgctxt "description" +msgid "" +"Are you sure you want to delete {counter,plural,one{this category} " +"other{{displayQuantity} categories}}?" +msgstr "" + +#. [src.collections.views.CollectionList.2497542455] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this collection} " "other{{displayQuantity} collections}}?" msgstr "" -#. [src.customers.views.409347866] +#. [src.customers.views.CustomerList.409347866] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this customer} #. other{{displayQuantity} customers}}? -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this customer} " @@ -922,11 +843,11 @@ msgid "" "other{{displayQuantity} menus}}?" msgstr "" -#. [src.orders.views.1389231130] - dialog content +#. [src.orders.views.OrderDraftList.1389231130] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this order draft} #. other{{displayQuantity} orderDrafts}}? -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this order draft} " @@ -944,11 +865,11 @@ msgid "" "other{{displayQuantity} pages}}?" msgstr "" -#. [src.productTypes.views.2294091098] - dialog content +#. [src.productTypes.views.ProductTypeList.2294091098] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this product type} #. other{{displayQuantity} product types}}? -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this product type} " @@ -966,11 +887,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.discounts.views.2516361175] - dialog content +#. [src.discounts.views.SaleList.2516361175] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this sale} #. other{{displayQuantity} sales}}? -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this sale} " @@ -999,17 +920,33 @@ msgid "" "other{{displayQuantity} variants}}?" msgstr "" -#. [src.discounts.views.1791926983] - dialog content +#. [src.discounts.views.VoucherList.1791926983] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this voucher} #. other{{displayQuantity} vouchers}}? -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this voucher} " "other{{displayQuantity} vouchers}}?" msgstr "" +#. [src.shipping.views.ShippingZoneDetails.131963671] - unassign country +#. defaultMessage is: +#. Are you sure you want to delete {countryName} from this shipping zone? +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country" +msgid "Are you sure you want to delete {countryName} from this shipping zone?" +msgstr "" + +#. [src.staff.views.8878988] +#. defaultMessage is: +#. Are you sure you want to delete {email} from staff members? +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "description" +msgid "Are you sure you want to delete {email} from staff members?" +msgstr "" + #. [src.customers.views.1927691511] - delete customer, dialog content #. defaultMessage is: #. Are you sure you want to delete {email}? @@ -1124,11 +1061,11 @@ msgctxt "description" msgid "Are you sure you want to mark this order as paid?" msgstr "" -#. [src.collections.views.1348793822] +#. [src.collections.views.CollectionList.1348793822] #. defaultMessage is: #. Are you sure you want to publish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to publish {counter,plural,one{this collection} " @@ -1157,30 +1094,6 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.orders.components.OrderDraftCancelDialog.3199827590] -#. defaultMessage is: -#. Are you sure you want to remove draft #{number}? -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "description" -msgid "Are you sure you want to remove draft #{number}?" -msgstr "" - -#. [src.products.views.672103788] -#. defaultMessage is: -#. Are you sure you want to remove this image? -#: build/locale/src/products/views/ProductImage.json -msgctxt "description" -msgid "Are you sure you want to remove this image?" -msgstr "" - -#. [src.shipping.views.ShippingZoneDetails.1790261672] - unassign country -#. defaultMessage is: -#. Are you sure you want to remove {countryName} from this shipping zone? -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country" -msgid "Are you sure you want to remove {countryName} from this shipping zone?" -msgstr "" - #. [src.staff.views.3945766678] #. defaultMessage is: #. Are you sure you want to remove {email} avatar? @@ -1189,14 +1102,6 @@ msgctxt "description" msgid "Are you sure you want to remove {email} avatar?" msgstr "" -#. [src.staff.views.2728048444] -#. defaultMessage is: -#. Are you sure you want to remove {email} from staff members? -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "description" -msgid "Are you sure you want to remove {email} from staff members?" -msgstr "" - #. [src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450] #. defaultMessage is: #. Are you sure you want to unassign {attributeName} from {productTypeName}? @@ -1277,11 +1182,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.3944356444] +#. [src.collections.views.CollectionList.3944356444] #. defaultMessage is: #. Are you sure you want to unpublish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to unpublish {counter,plural,one{this collection} " @@ -1442,6 +1347,15 @@ msgctxt "button" msgid "Assign products" msgstr "" +#. [src.attributes.components.AttributeValues.351422234] - assign attribute +#. value button +#. defaultMessage is: +#. Assign value +#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json +msgctxt "assign attribute value button" +msgid "Assign value" +msgstr "" + #. [src.attributes.components.AttributeDetails.3605174225] - attribute's slug #. short code label #. defaultMessage is: @@ -1520,6 +1434,14 @@ msgctxt "product attributes, section header" msgid "Attributes" msgstr "속성" +#. [src.configuration.2326418019] +#. defaultMessage is: +#. Attributes and Product Typess +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Attributes and Product Typess" +msgstr "" + #. [src.attributes.views.AttributeList.3218248395] - deleted multiple #. attributes #. defaultMessage is: @@ -2303,6 +2225,22 @@ msgctxt "description" msgid "Country area" msgstr "" +#. [menuCreateDialogHeader] - dialog header +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json +msgctxt "dialog header" +msgid "Create Menu" +msgstr "" + +#. [menuListPageAddMenu] - button +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json +msgctxt "button" +msgid "Create Menu" +msgstr "" + #. [src.attributes.components.AttributePage.2855501559] - page title #. defaultMessage is: #. Create New Attribute @@ -2327,6 +2265,30 @@ msgctxt "header" msgid "Create New Shipping Zone" msgstr "" +#. [src.pages.components.PageDetailsPage.1068617485] - page header +#. defaultMessage is: +#. Create Page +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page header" +msgid "Create Page" +msgstr "" + +#. [src.orders.components.OrderProductAddDialog.1542417144] - dialog header +#. defaultMessage is: +#. Create Product +#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json +msgctxt "dialog header" +msgid "Create Product" +msgstr "" + +#. [src.products.components.ProductListPage.1542417144] - button +#. defaultMessage is: +#. Create Product +#: build/locale/src/products/components/ProductListPage/ProductListPage.json +msgctxt "button" +msgid "Create Product" +msgstr "" + #. [src.products.views.1542417144] - window title #. defaultMessage is: #. Create Product @@ -2359,11 +2321,19 @@ msgctxt "page header" msgid "Create Sale" msgstr "" -#. [src.products.views.2362587265] - window title +#. [src.discounts.components.SaleListPage.3866518732] - button +#. defaultMessage is: +#. Create Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "button" +msgid "Create Sale" +msgstr "" + +#. [src.products.views.2362587265] - header #. defaultMessage is: #. Create Variant #: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "window title" +msgctxt "header" msgid "Create Variant" msgstr "" @@ -2375,6 +2345,22 @@ msgctxt "page header" msgid "Create Voucher" msgstr "" +#. [src.attributes.components.AttributeListPage.3824684885] - button +#. defaultMessage is: +#. Create attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "button" +msgid "Create attribute" +msgstr "" + +#. [src.categories.components.CategoryListPage.1140231710] - button +#. defaultMessage is: +#. Create category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "button" +msgid "Create category" +msgstr "" + #. [src.categories.views.1140231710] - window title #. defaultMessage is: #. Create category @@ -2383,6 +2369,14 @@ msgctxt "window title" msgid "Create category" msgstr "" +#. [src.collections.components.CollectionListPage.686910896] - button +#. defaultMessage is: +#. Create collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "button" +msgid "Create collection" +msgstr "" + #. [src.collections.views.686910896] - window title #. defaultMessage is: #. Create collection @@ -2399,6 +2393,14 @@ msgctxt "window title" msgid "Create customer" msgstr "" +#. [menuItemsAddItem] - add new menu item +#. defaultMessage is: +#. Create new item +#: build/locale/src/navigation/components/MenuItems/MenuItems.json +msgctxt "add new menu item" +msgid "Create new item" +msgstr "" + #. [src.orders.components.OrderDraftListPage.2826235371] - button #. defaultMessage is: #. Create order @@ -2411,6 +2413,14 @@ msgctxt "button" msgid "Create order" msgstr "주문 생성" +#. [src.pages.components.PageListPage.3785394515] - button +#. defaultMessage is: +#. Create page +#: build/locale/src/pages/components/PageListPage/PageListPage.json +msgctxt "button" +msgid "Create page" +msgstr "" + #. [src.pages.views.3785394515] - header #. defaultMessage is: #. Create page @@ -2422,11 +2432,55 @@ msgstr "" #. [src.shipping.components.ShippingZoneRateDialog.16061680] - button #. defaultMessage is: #. Create rate +#. [src.shipping.components.ShippingZoneRates.16061680] - button +#. defaultMessage is: +#. Create rate #: build/locale/src/shipping/components/ShippingZoneRateDialog/ShippingZoneRateDialog.json +#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json msgctxt "button" msgid "Create rate" msgstr "" +#. [src.shipping.components.ShippingZonesList.2673544109] - button +#. defaultMessage is: +#. Create shipping zone +#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json +msgctxt "button" +msgid "Create shipping zone" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.770296100] - button +#. defaultMessage is: +#. Create subcategory +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json +msgctxt "button" +msgid "Create subcategory" +msgstr "" + +#. [src.products.components.ProductVariants.3989383405] - button +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/components/ProductVariants/ProductVariants.json +msgctxt "button" +msgid "Create variant" +msgstr "" + +#. [src.products.views.3989383405] - window title +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/views/ProductVariantCreate.json +msgctxt "window title" +msgid "Create variant" +msgstr "" + +#. [src.discounts.components.VoucherListPage.614836274] - button +#. defaultMessage is: +#. Create voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "button" +msgid "Create voucher" +msgstr "" + #. [src.collections.views.1597339737] #. defaultMessage is: #. Created collection @@ -2473,7 +2527,11 @@ msgstr "" #. [src.components.FilterBar.2340527467] #. defaultMessage is: #. Custom Filter +#. [src.components.SearchBar.2340527467] +#. defaultMessage is: +#. Custom Filter #: build/locale/src/components/FilterBar/FilterBar.json +#: build/locale/src/components/SearchBar/SearchBar.json msgctxt "description" msgid "Custom Filter" msgstr "" @@ -2729,10 +2787,18 @@ msgctxt "dialog title" msgid "Delete Collection" msgstr "" -#. [src.orders.views.1161115149] - dialog header +#. [src.products.views.1731766393] - dialog header +#. defaultMessage is: +#. Delete Image +#: build/locale/src/products/views/ProductImage.json +msgctxt "dialog header" +msgid "Delete Image" +msgstr "" + +#. [src.orders.views.OrderDraftList.1161115149] - dialog header #. defaultMessage is: #. Delete Order Drafts -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog header" msgid "Delete Order Drafts" msgstr "" @@ -2770,10 +2836,10 @@ msgctxt "dialog header" msgid "Delete Product Type" msgstr "" -#. [src.productTypes.views.4080551769] - dialog header +#. [src.productTypes.views.ProductTypeList.4080551769] - dialog header #. defaultMessage is: #. Delete Product Types -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog header" msgid "Delete Product Types" msgstr "" @@ -2802,10 +2868,10 @@ msgctxt "dialog header" msgid "Delete Sale" msgstr "" -#. [src.discounts.views.2809303671] - dialog header +#. [src.discounts.views.SaleList.2809303671] - dialog header #. defaultMessage is: #. Delete Sales -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog header" msgid "Delete Sales" msgstr "" @@ -2819,9 +2885,13 @@ msgctxt "custom search delete, dialog header" msgid "Delete Search" msgstr "" +#. [src.components.Filter.2173195312] - button +#. defaultMessage is: +#. Delete Search #. [src.components.TableFilter.2173195312] - button #. defaultMessage is: #. Delete Search +#: build/locale/src/components/Filter/FilterSearch.json #: build/locale/src/components/TableFilter/FilterChips.json msgctxt "button" msgid "Delete Search" @@ -2888,10 +2958,10 @@ msgctxt "dialog header" msgid "Delete Voucher" msgstr "" -#. [src.discounts.views.367317371] - dialog header +#. [src.discounts.views.VoucherList.367317371] - dialog header #. defaultMessage is: #. Delete Vouchers -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog header" msgid "Delete Vouchers" msgstr "" @@ -2925,11 +2995,11 @@ msgstr "" #. [src.categories.views.712767046] - dialog title #. defaultMessage is: #. Delete categories -#. [src.categories.views.712767046] - dialog title +#. [src.categories.views.CategoryList.712767046] - dialog title #. defaultMessage is: #. Delete categories #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "dialog title" msgid "Delete categories" msgstr "" @@ -2946,10 +3016,10 @@ msgctxt "dialog title" msgid "Delete category" msgstr "카테고리 삭제" -#. [src.collections.views.3817188998] - dialog title +#. [src.collections.views.CollectionList.3817188998] - dialog title #. defaultMessage is: #. Delete collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Delete collections" msgstr "" @@ -2962,14 +3032,31 @@ msgctxt "dialog header" msgid "Delete customer" msgstr "" -#. [src.customers.views.1946482599] - dialog header +#. [src.customers.views.CustomerList.1946482599] - dialog header #. defaultMessage is: #. Delete customers -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "dialog header" msgid "Delete customers" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.632633254] - dialog header +#. defaultMessage is: +#. Delete draft order +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "dialog header" +msgid "Delete draft order" +msgstr "" + +#. [src.shipping.views.ShippingZoneDetails.1947090060] - unassign country, +#. dialog header +#. defaultMessage is: +#. Delete from shipping zone +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country, dialog header" +msgid "Delete from shipping zone" +msgstr "" + #. [src.collections.views.942133001] - dialog title #. defaultMessage is: #. Delete image @@ -3030,6 +3117,14 @@ msgctxt "description" msgid "Deleted collection" msgstr "컬렉션 삭제" +#. [src.orders.views.OrderDraftList.1648805446] +#. defaultMessage is: +#. Deleted draft orders +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json +msgctxt "description" +msgid "Deleted draft orders" +msgstr "" + #. [menuListDeletedMenu] #. defaultMessage is: #. Deleted menu @@ -3629,14 +3724,6 @@ msgctxt "order history message" msgid "Fulfilled {quantity} items" msgstr "" -#. [src.orders.components.OrderListFilter.2943502192] - order -#. defaultMessage is: -#. Fulfillment Status -#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json -msgctxt "order" -msgid "Fulfillment Status" -msgstr "" - #. [src.orders.components.OrderHistory.3081292385] - order history message #. defaultMessage is: #. Fulfillment confirmation was sent to customer @@ -3793,12 +3880,12 @@ msgctxt "description" msgid "If empty, the preview shows what will be autogenerated." msgstr "" -#. [src.attributes.components.AttributeProperties.2519239682] +#. [src.attributes.components.AttributeProperties.4048785456] #. defaultMessage is: -#. If enable this attribute can be used as a column in product table. +#. If enabled this attribute can be used as a column in product table. #: build/locale/src/attributes/components/AttributeProperties/AttributeProperties.json msgctxt "description" -msgid "If enable this attribute can be used as a column in product table." +msgid "If enabled this attribute can be used as a column in product table." msgstr "" #. [src.attributes.components.AttributeProperties.787251583] @@ -3904,6 +3991,22 @@ msgctxt "product variant stock" msgid "Inventory" msgstr "재고" +#. [src.staff.components.StaffAddMemberDialog.1481503299] - dialog header +#. defaultMessage is: +#. Invite Staff Member +#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json +msgctxt "dialog header" +msgid "Invite Staff Member" +msgstr "" + +#. [src.staff.components.StaffListPage.797461521] - button +#. defaultMessage is: +#. Invite staff member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "button" +msgid "Invite staff member" +msgstr "" + #. [src.productTypes.components.ProductTypeShipping.2143413921] - switch #. button #. defaultMessage is: @@ -4256,6 +4359,14 @@ msgctxt "voucher requirement" msgid "Minimum quantity of items" msgstr "" +#. [src.configuration.1233229030] +#. defaultMessage is: +#. Miscellaneous +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Miscellaneous" +msgstr "" + #. [src.attributes.components.AttributeDetails.3334509011] - product attribute #. type #. defaultMessage is: @@ -5088,6 +5199,14 @@ msgctxt "description" msgid "Order History" msgstr "" +#. [src.orders.components.OrderListFilter.2222765704] +#. defaultMessage is: +#. Order Status +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +msgctxt "description" +msgid "Order Status" +msgstr "" + #. [src.orders.components.OrderHistory.1230178536] - order history message #. defaultMessage is: #. Order address was updated @@ -5104,13 +5223,13 @@ msgctxt "order history message" msgid "Order confirmation was sent to customer" msgstr "" -#. [src.orders.views.1872939752] +#. [src.orders.views.OrderDraftList.1872939752] #. defaultMessage is: #. Order draft succesfully created #. [src.orders.views.OrderList.1872939752] #. defaultMessage is: #. Order draft succesfully created -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json #: build/locale/src/orders/views/OrderList/OrderList.json msgctxt "description" msgid "Order draft succesfully created" @@ -5775,6 +5894,14 @@ msgctxt "description" msgid "Product Name" msgstr "" +#. [src.configuration.3655543906] +#. defaultMessage is: +#. Product Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Product Settings" +msgstr "" + #. [src.discounts.components.DiscountProducts.4257289053] #. defaultMessage is: #. Product Type @@ -5933,12 +6060,12 @@ msgctxt "order history message" msgid "Products were added to draft order" msgstr "" -#. [src.orders.components.OrderHistory.2574162126] - order history message +#. [src.orders.components.OrderHistory.4067959693] - order history message #. defaultMessage is: -#. Products were removed from draft order +#. Products were deleted from draft order #: build/locale/src/orders/components/OrderHistory/OrderHistory.json msgctxt "order history message" -msgid "Products were removed from draft order" +msgid "Products were deleted from draft order" msgstr "" #. [src.properties] @@ -5965,10 +6092,10 @@ msgctxt "description" msgid "Provided email address does not exist in our database." msgstr "" -#. [src.collections.views.1547167026] - publish collections +#. [src.collections.views.CollectionList.1547167026] - publish collections #. defaultMessage is: #. Publish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "publish collections" msgid "Publish" msgstr "퍼블리싱" @@ -6005,10 +6132,10 @@ msgctxt "dialog header" msgid "Publish Products" msgstr "" -#. [src.collections.views.2823425739] - dialog title +#. [src.collections.views.CollectionList.2823425739] - dialog title #. defaultMessage is: #. Publish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Publish collections" msgstr "" @@ -6182,6 +6309,18 @@ msgctxt "shipping method price" msgid "Rate Price" msgstr "" +#. [src.orders.components.OrderListFilter.2415661583] - order status +#. defaultMessage is: +#. Ready to Capture +#. [src.orders.views.OrderList.readyToCapture] - order status +#. defaultMessage is: +#. Ready to Capture +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +#: build/locale/src/orders/views/OrderList/filters.json +msgctxt "order status" +msgid "Ready to Capture" +msgstr "" + #. [src.customers.components.CustomerOrders.3878642352] - section header #. defaultMessage is: #. Recent orders @@ -6230,22 +6369,14 @@ msgctxt "switch button" msgid "Release all stock allocated to this order" msgstr "" -#. [src.auth.components.LoginPage.3182284913] - login -#. defaultMessage is: -#. Remember me -#: build/locale/src/auth/components/LoginPage/LoginPage.json -msgctxt "login" -msgid "Remember me" -msgstr "" - #. [src.categories.views.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. -#. [src.categories.views.3488150607] +#. [src.categories.views.CategoryList.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "description" msgid "Remember this will also delete all products assigned to this category." msgstr "" @@ -6258,39 +6389,6 @@ msgctxt "button" msgid "Remove" msgstr "제거" -#. [src.products.views.490753666] - dialog header -#. defaultMessage is: -#. Remove Image -#: build/locale/src/products/views/ProductImage.json -msgctxt "dialog header" -msgid "Remove Image" -msgstr "" - -#. [src.orders.components.OrderDraftCancelDialog.500287069] - dialog header -#. defaultMessage is: -#. Remove draft order -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "dialog header" -msgid "Remove draft order" -msgstr "임시 주문 제거" - -#. [src.shipping.views.ShippingZoneDetails.254167659] - unassign country, -#. dialog header -#. defaultMessage is: -#. Remove from shipping zone -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country, dialog header" -msgid "Remove from shipping zone" -msgstr "" - -#. [src.orders.views.3880993240] -#. defaultMessage is: -#. Removed draft orders -#: build/locale/src/orders/views/OrderDraftList.json -msgctxt "description" -msgid "Removed draft orders" -msgstr "" - #. [src.pages.views.1457312643] #. defaultMessage is: #. Removed page @@ -6456,6 +6554,18 @@ msgctxt "button" msgid "Save" msgstr "저장" +#. [src.components.Filter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#. [src.components.TableFilter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#: build/locale/src/components/Filter/FilterSearch.json +#: build/locale/src/components/TableFilter/FilterChips.json +msgctxt "button" +msgid "Save Custom Search" +msgstr "" + #. [src.components.SaveFilterTabDialog.1514415736] - save filter tab, header #. defaultMessage is: #. Save Custom Search @@ -6464,14 +6574,6 @@ msgctxt "save filter tab, header" msgid "Save Custom Search" msgstr "" -#. [src.components.TableFilter.1514415736] - button -#. defaultMessage is: -#. Save Custom Search -#: build/locale/src/components/TableFilter/FilterChips.json -msgctxt "button" -msgid "Save Custom Search" -msgstr "" - #. [src.products.components.ProductVariantCreatePage.2853608829] - button #. defaultMessage is: #. Save variant @@ -6488,6 +6590,14 @@ msgctxt "description" msgid "Saved changes" msgstr "" +#. [src.attributes.components.AttributeListPage.3916653510] +#. defaultMessage is: +#. Search Attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "description" +msgid "Search Attribute" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.902296540] #. defaultMessage is: #. Search Attributes @@ -6504,10 +6614,30 @@ msgctxt "description" msgid "Search Categories" msgstr "" +#. [src.categories.components.CategoryListPage.3841025483] +#. defaultMessage is: +#. Search Category +#. [src.translations.components.TranslationsEntitiesListPage.3841025483] +#. defaultMessage is: +#. Search Category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Category" +msgstr "" + +#. [src.collections.components.CollectionListPage.4057224233] +#. defaultMessage is: +#. Search Collection #. [src.components.AssignCollectionDialog.4057224233] #. defaultMessage is: #. Search Collection +#. [src.translations.components.TranslationsEntitiesListPage.4057224233] +#. defaultMessage is: +#. Search Collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json #: build/locale/src/components/AssignCollectionDialog/AssignCollectionDialog.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json msgctxt "description" msgid "Search Collection" msgstr "" @@ -6520,6 +6650,14 @@ msgctxt "description" msgid "Search Countries" msgstr "" +#. [src.customers.components.CustomerListPage.1643417013] +#. defaultMessage is: +#. Search Customer +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "description" +msgid "Search Customer" +msgstr "" + #. [src.orders.components.OrderCustomer.2433460203] #. defaultMessage is: #. Search Customers @@ -6528,6 +6666,14 @@ msgctxt "description" msgid "Search Customers" msgstr "" +#. [src.orders.components.OrderDraftListPage.77765281] +#. defaultMessage is: +#. Search Draft +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "description" +msgid "Search Draft" +msgstr "" + #. [src.translations.components.TranslationsCategoriesPage.1406947243] #. defaultMessage is: #. Search Engine Description @@ -6608,6 +6754,34 @@ msgctxt "description" msgid "Search Orders..." msgstr "" +#. [src.translations.components.TranslationsEntitiesListPage.2559018090] +#. defaultMessage is: +#. Search Page +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Page" +msgstr "" + +#. [src.translations.components.TranslationsEntitiesListPage.2105464697] +#. defaultMessage is: +#. Search Product +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product" +msgstr "" + +#. [src.productTypes.components.ProductTypeListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#. [src.translations.components.TranslationsEntitiesListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product Type" +msgstr "" + #. [src.components.AssignProductDialog.2850255786] #. defaultMessage is: #. Search Products @@ -6620,14 +6794,46 @@ msgctxt "description" msgid "Search Products" msgstr "" -#. [src.products.components.ProductListPage.3550330425] +#. [src.products.components.ProductListFilter.3550330425] #. defaultMessage is: #. Search Products... -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Search Products..." msgstr "" +#. [src.discounts.components.SaleListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#. [src.translations.components.TranslationsEntitiesListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Sale" +msgstr "" + +#. [src.staff.components.StaffListPage.61043583] +#. defaultMessage is: +#. Search Staff Member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "description" +msgid "Search Staff Member" +msgstr "" + +#. [src.discounts.components.VoucherListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#. [src.translations.components.TranslationsEntitiesListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Voucher" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.524117994] #. defaultMessage is: #. Search by attribute name @@ -6734,10 +6940,10 @@ msgctxt "description" msgid "Select all orders where:" msgstr "" -#. [src.products.components.ProductListPage.1421689426] +#. [src.products.components.ProductListFilter.1421689426] #. defaultMessage is: #. Select all products where: -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Select all products where:" msgstr "" @@ -6823,6 +7029,14 @@ msgctxt "description" msgid "Set plugin as Active" msgstr "" +#. [src.components.VisibilityCard.292404896] +#. defaultMessage is: +#. Set publication date +#: build/locale/src/components/VisibilityCard/VisibilityCard.json +msgctxt "description" +msgid "Set publication date" +msgstr "" + #. [src.discounts.shipment] - voucher discount #. defaultMessage is: #. Shipment @@ -7088,6 +7302,14 @@ msgctxt "staff section name" msgid "Staff Members" msgstr "" +#. [src.configuration.3140151600] +#. defaultMessage is: +#. Staff Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Staff Settings" +msgstr "" + #. [src.standard] - tax rate #. defaultMessage is: #. Standard @@ -8072,10 +8294,10 @@ msgctxt "payment status" msgid "Unpaid" msgstr "" -#. [src.collections.views.2237014112] - unpublish collections +#. [src.collections.views.CollectionList.2237014112] - unpublish collections #. defaultMessage is: #. Unpublish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "unpublish collections" msgid "Unpublish" msgstr "퍼블리싱 취소" @@ -8112,10 +8334,10 @@ msgctxt "dialog header" msgid "Unpublish Products" msgstr "" -#. [src.collections.views.2637364047] - dialog title +#. [src.collections.views.CollectionList.2637364047] - dialog title #. defaultMessage is: #. Unpublish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Unpublish collections" msgstr "" @@ -8615,6 +8837,22 @@ msgctxt "description" msgid "ZIP / Postal code" msgstr "" +#. [src.productTypes.components.ProductTypeListPage.3479705616] - button +#. defaultMessage is: +#. create product type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "button" +msgid "create product type" +msgstr "" + +#. [src.staff.views.1308770978] - dialog header +#. defaultMessage is: +#. delete Staff User +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "dialog header" +msgid "delete Staff User" +msgstr "" + #. [orderPaymentVATDoesNotApply] - vat not included in order price #. defaultMessage is: #. does not apply @@ -8688,19 +8926,35 @@ msgctxt "product status is set as" msgid "is set as" msgstr "" -#. [src.staff.views.2240444792] - dialog header -#. defaultMessage is: -#. remove Staff User -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "dialog header" -msgid "remove Staff User" -msgstr "" - -#. [src.components.VisibilityCard.1815688500] +#. [src.collections.components.CollectionCreatePage.1815688500] - collection #. defaultMessage is: #. since {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.1815688500] - collection +#. defaultMessage is: +#. since {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "since {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.1815688500] - page +#. defaultMessage is: +#. since {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "since {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#. [src.products.components.ProductUpdatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "since {date}" msgstr "" @@ -8728,11 +8982,35 @@ msgctxt "weight" msgid "to {value} {unit}" msgstr "" -#. [src.components.VisibilityCard.2001551496] +#. [src.collections.components.CollectionCreatePage.2001551496] - collection #. defaultMessage is: #. will be visible from {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.2001551496] - collection +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "will be visible from {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.2001551496] - page +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "will be visible from {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#. [src.products.components.ProductUpdatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "will be visible from {date}" msgstr "" diff --git a/locale/mn.json b/locale/mn.json index e7589d814..3f2097b79 100644 --- a/locale/mn.json +++ b/locale/mn.json @@ -1 +1 @@ -{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.350498821":"","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.2519239682":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"Нэр","src.categories.components.CategoryProducts.636461959":"Нэр","src.collections.components.CollectionProducts.636461959":"Нэр","src.products.components.ProductDetailsForm.636461959":"Нэр","src.collections.components.CollectionDetails.636461959":"Нэр","src.components.ProductList.636461959":"Нэр","src.discounts.components.SaleInfo.636461959":"Нэр","src.discounts.components.SaleList.636461959":"Нэр","src.discounts.components.SaleSummary.636461959":"Нэр","menuItemDialogNameLabel":"Нэр","src.products.components.ProductVariants.636461959":"Нэр","src.shipping.components.ShippingZoneRates.636461959":"Нэр","src.shipping.components.ShippingZonesList.636461959":"Нэр","src.staff.components.StaffList.636461959":"Нэр","src.translations.components.TranslationsEntitiesList.636461959":"Нэр","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.254756045":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.3182284913":"","src.auth.components.LoginPage.109182747":"","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"","src.categories.views.2004894945":"","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.3229914152":"","src.categories.components.CategoryList.435697837":"","src.categories.components.CategoryList.2159874182":"","src.categories.components.CategoryUpdatePage.2159874182":"","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.228151782":"","src.categories.components.CategoryProducts.2968663655":"Бараа","src.categories.components.CategoryUpdatePage.2968663655":"Бараа","src.discounts.components.DiscountCategories.2968663655":"Бараа","src.discounts.components.DiscountCollections.2968663655":"Бараа","src.products":"Бараа","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryProducts.3554578821":"","src.categories.components.CategoryProductsCard.3554578821":"","src.categories.components.CategoryProducts.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProducts.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.categories.components.CategoryProductsCard.4164156574":"","src.categories.views.1754466114":"","src.categories.views.1140231710":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.712767046":"","src.categories.views.299584400":"","src.categories.views.844574071":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.collections.components.CollectionCreatePage.3958681866":"","src.collections.components.CollectionListPage.3958681866":"","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"","src.availability":"","src.collections.components.CollectionList.3640454975":"Нийтлэгдсэн","src.collections.components.CollectionProducts.3640454975":"Нийтлэгдсэн","src.discounts.components.DiscountProducts.3640454975":"Нийтлэгдсэн","src.components.ProductList.3640454975":"Нийтлэгдсэн","src.products.components.ProductListPage.3640454975":"Нийтлэгдсэн","src.pages.components.PageList.3640454975":"Нийтлэгдсэн","src.products.views.ProductList.published":"Нийтлэгдсэн","src.collections.components.CollectionList.2341910657":"Нийтлэгдээгүй","src.collections.components.CollectionProducts.2341910657":"Нийтлэгдээгүй","src.discounts.components.DiscountProducts.2341910657":"Нийтлэгдээгүй","src.components.ProductList.2341910657":"Нийтлэгдээгүй","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.686910896":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"","src.collections.views.2402899582":"","src.collections.views.2237014112":"","src.pages.views.2237014112":"","src.products.views.ProductList.2237014112":"","src.collections.views.1547167026":"","src.pages.views.1547167026":"","src.products.views.ProductList.1547167026":"","src.collections.views.2823425739":"","src.collections.views.1348793822":"","src.collections.views.2637364047":"","src.collections.views.3944356444":"","src.collections.views.3817188998":"","src.collections.views.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.4057224233":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"","src.components.ErrorMessageCard.2845142593":"","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.FilterBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.ProductList.1134347598":"","src.orders.components.OrderDraftDetailsProducts.1134347598":"","src.orders.components.OrderFulfillment.1134347598":"","src.products.components.ProductListPage.1134347598":"","src.products.components.ProductPricing.1134347598":"","src.orders.components.OrderUnfulfilledItems.1134347598":"","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"","src.shipping.components.ShippingZoneRates.1134347598":"","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"","src.pages.components.PageList.1459686496":"","src.products.components.ProductListFilter.1459686496":"","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"","src.products.views.ProductList.hidden":"","src.components.VisibilityCard.1815688500":"","src.components.VisibilityCard.2001551496":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","configurationMenuStaff":"","configurationMenuShipping":"","configurationMenuTaxes":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","src.customers.components.CustomerAddress.1320082647":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"","src.customers.components.CustomerAddresses.3517722732":"","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"Тэмдэглэлүүд","src.orders.components.OrderCustomerNote.1520756907":"Тэмдэглэлүүд","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"Тэмдэглэл","src.customers.components.CustomerDetails.577013340":"Тэмдэглэл","src.customers.components.CustomerCreatePage.1934221653":"","src.customers.components.CustomerListPage.1934221653":"","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerOrders.3878642352":"","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"","src.orders.components.OrderDraftList.4205493358":"","src.orders.components.OrderList.4205493358":"","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"","src.orders.components.OrderListFilter.1756106276":"","src.products.components.ProductListFilter.1756106276":"","src.products.components.ProductVariants.1756106276":"","src.customers.components.CustomerOrders.878013594":"","src.orders.components.OrderDraftDetailsProducts.878013594":"","src.orders.components.OrderDraftDetailsSummary.878013594":"","src.orders.components.OrderDraftList.878013594":"","src.orders.components.OrderFulfillment.878013594":"","src.orders.components.OrderUnfulfilledItems.878013594":"","src.orders.components.OrderList.878013594":"","src.orders.components.OrderPayment.878013594":"","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.1946482599":"","src.customers.views.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"","src.discounts.components.SaleSummary.1148029984":"","src.discounts.components.VoucherList.1148029984":"","src.discounts.components.VoucherSummary.1148029984":"","src.discounts.components.VoucherValue.1148029984":"","src.products.components.ProductAttributes.1148029984":"","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.1742771332":"","src.discounts.components.SalePricing.1099355007":"","src.products.components.ProductPricing.1099355007":"","src.products.components.ProductVariantPrice.1099355007":"","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"","src.discounts.components.VoucherSummary.78726751":"","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.1536809153":"","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"","src.discounts.shipment":"","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.2809303671":"","src.discounts.views.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.367317371":"","src.discounts.views.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"","src.orders.views.OrderList.3528672691":"","src.confirm":"","src.delete":"","src.edit":"","src.manage":"","src.remove":"","src.save":"","src.show":"","src.undo":"","src.attributes":"","src.products.components.ProductAttributes.4153345096":"","src.categories":"","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"","src.customers":"","src.draftOrders":"","src.home":"","src.navigation":"","src.orders":"","src.pages":"","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"","src.taxes.components.CountryListPage.3955023266":"","src.translations":"","src.vouchers":"","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"","src.partiallyPaid":"","src.partiallyRefunded":"","src.refunded":"","src.unpaid":"","src.cancelled":"","src.draft":"","src.fulfilled":"","src.orders.views.OrderList.fulfilled":"","src.orders.components.OrderListFilter.1712863026":"","src.partiallyFulfilled":"","src.unfulfilled":"","src.orders.views.OrderList.unfulfilled":"","src.orders.components.OrderListFilter.1751787272":"","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","src.1395232177":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"","src.orders.components.OrderDetailsPage.1854613983":"","src.orders.components.OrderDraftPage.1854613983":"","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"","src.orders.components.OrderCustomerEditDialog.1411666943":"","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.500287069":"","src.orders.components.OrderDraftCancelDialog.3199827590":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"","src.orders.components.OrderUnfulfilledItems.1895667608":"","src.orders.components.OrderDraftDetailsProducts.2796503714":"","src.orders.components.OrderFulfillment.2796503714":"","src.orders.components.OrderFulfillmentDialog.2796503714":"","src.orders.components.OrderUnfulfilledItems.2796503714":"","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"","src.orders.components.OrderPayment.781550514":"","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"","src.orders.components.OrderListPage.2826235371":"","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"","src.orders.components.OrderFulfillmentCancelDialog.732594284":"","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.2574162126":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2943502192":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"","src.productTypes.components.ProductTypeShipping.1325966144":"","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"","src.orders.components.OrderPayment.3768782744":"","src.orders.components.OrderPayment.2320183694":"","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"","src.orders.components.OrderPayment.2845258362":"","src.orders.components.OrderPayment.2444197639":"","src.orders.components.OrderPayment.3500506678":"","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.2775402904":"","src.products.components.ProductListPage.2775402904":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.3880993240":"","src.orders.views.1161115149":"","src.orders.views.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.755314116":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"","src.pages.components.PageList.1124600214":"","src.pages.components.PageInfo.1116746286":"","src.translations.components.TranslationsPagesPage.1116746286":"","src.pages.components.PageList.3478065224":"","src.pages.components.PageSlug.3478065224":"","src.productTypes.components.ProductTypeAttributes.3478065224":"","src.pages.components.PageList.3767550649":"","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.1767905232":"","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.3785394515":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"","src.products.components.ProductVariantImages.3240888698":"","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"","src.products.components.ProductVariantStock.3841616483":"","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListPage.821159718":"","src.products.components.ProductListPage.1421689426":"","src.products.components.ProductListPage.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"","prodictStockInventoryLabel":"","src.products.components.ProductVariantStock.3490038570":"","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"","src.products.components.ProductVariants.2153006789":"","src.products.components.ProductVariantNavigation.2845381934":"","src.products.components.ProductVariants.2845381934":"","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1542417144":"","src.products.views.1591632382":"","src.products.views.490753666":"","src.products.views.672103788":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.1694086800":"","src.products.views.ProductList.224127438":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.products.views.2178905289":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1756957616":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.889729490":"","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.4080551769":"","src.productTypes.views.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.352297149":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2474410767":"","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.254167659":"","src.shipping.views.ShippingZoneDetails.1790261672":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"","src.siteSettings.components.SiteSettingsKeys.2446088470":"","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.3490059488":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.3247064221":"Идэвхтэй","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.802625341":"","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"Хэрэглэгч идэвхтэй байна","src.staff.views.2240444792":"","src.staff.views.2728048444":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file +{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.3824684885":"","src.attributes.components.AttributeListPage.2417065806":"","src.attributes.components.AttributeListPage.3916653510":"","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.4048785456":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"Нэр","src.categories.components.CategoryProductList.636461959":"Нэр","src.components.ProductList.636461959":"Нэр","src.products.components.ProductList.636461959":"Нэр","src.collections.components.CollectionDetails.636461959":"Нэр","src.collections.components.CollectionProducts.636461959":"Нэр","src.products.components.ProductDetailsForm.636461959":"Нэр","src.discounts.components.SaleInfo.636461959":"Нэр","src.discounts.components.SaleList.636461959":"Нэр","src.discounts.components.SaleSummary.636461959":"Нэр","menuItemDialogNameLabel":"Нэр","src.plugins.components.PluginsList.636461959":"Нэр","src.products.components.ProductVariants.636461959":"Нэр","src.shipping.components.ShippingZoneRates.636461959":"Нэр","src.shipping.components.ShippingZonesList.636461959":"Нэр","src.staff.components.StaffList.636461959":"Нэр","src.translations.components.TranslationsEntitiesList.636461959":"Нэр","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.351422234":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.109182747":"","src.auth.components.LoginPage.4028609483":"","src.auth.components.NewPasswordPage.1915811227":"","src.auth.components.NewPasswordPage.1254879564":"","src.auth.components.NewPasswordPage.2799926859":"","src.auth.components.NewPasswordPage.4253911811":"","src.auth.components.NewPasswordPage.2342634351":"","src.auth.components.ResetPasswordPage.2370700732":"","src.auth.components.ResetPasswordPage.3663311080":"","src.auth.components.ResetPasswordSuccessPage.4066297200":"","src.auth.components.ResetPasswordSuccessPage.2245157344":"","src.auth.views.2388238158":"","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"","src.categories.views.2004894945":"","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.2159874182":"","src.categories.components.CategoryUpdatePage.2159874182":"","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.1140231710":"","src.categories.views.1140231710":"","src.categories.components.CategoryListPage.4294878092":"","src.categories.components.CategoryListPage.3841025483":"","src.translations.components.TranslationsEntitiesListPage.3841025483":"","src.categories.components.CategoryProductList.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductList.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProductList.3640454975":"Нийтлэгдсэн","src.components.ProductList.3640454975":"Нийтлэгдсэн","src.products.components.ProductList.3640454975":"Нийтлэгдсэн","src.products.components.ProductListPage.3640454975":"Нийтлэгдсэн","productStatusLabel":"Нийтлэгдсэн","src.collections.components.CollectionList.3640454975":"Нийтлэгдсэн","src.collections.components.CollectionProducts.3640454975":"Нийтлэгдсэн","src.discounts.components.DiscountProducts.3640454975":"Нийтлэгдсэн","src.pages.components.PageList.3640454975":"Нийтлэгдсэн","src.products.views.ProductList.published":"Нийтлэгдсэн","src.categories.components.CategoryProductList.1134347598":"","src.orders.components.OrderFulfillment.1134347598":"","src.products.components.ProductList.1134347598":"","src.products.components.ProductListPage.1134347598":"","src.products.components.ProductPricing.1134347598":"","src.components.ProductList.1134347598":"","src.orders.components.OrderDraftDetailsProducts.1134347598":"","src.orders.components.OrderUnfulfilledItems.1134347598":"","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"","src.shipping.components.ShippingZoneRates.1134347598":"","src.categories.components.CategoryProductList.2341910657":"Нийтлэгдээгүй","src.products.components.ProductList.2341910657":"Нийтлэгдээгүй","src.collections.components.CollectionList.2341910657":"Нийтлэгдээгүй","src.collections.components.CollectionProducts.2341910657":"Нийтлэгдээгүй","src.discounts.components.DiscountProducts.2341910657":"Нийтлэгдээгүй","src.components.ProductList.2341910657":"Нийтлэгдээгүй","src.categories.components.CategoryProductList.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.products.components.ProductList.1657559629":"","src.categories.components.CategoryProducts.4164156574":"","src.categories.components.CategoryProducts.3554578821":"","src.categories.components.CategoryUpdatePage.2968663655":"Бараа","src.discounts.components.DiscountCategories.2968663655":"Бараа","src.discounts.components.DiscountCollections.2968663655":"Бараа","src.products":"Бараа","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryUpdatePage.3229914152":"","src.categories.components.CategoryUpdatePage.770296100":"","src.categories.views.1754466114":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.CategoryList.3488150607":"","src.categories.views.712767046":"","src.categories.views.CategoryList.712767046":"","src.categories.views.299584400":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.categories.views.CategoryList.2144707585":"","src.collections.components.CollectionCreatePage.3958681866":"","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionCreatePage.2001551496":"","src.collections.components.CollectionDetailsPage.2001551496":"","src.pages.components.PageDetailsPage.2001551496":"","src.products.components.ProductCreatePage.2001551496":"","src.products.components.ProductUpdatePage.2001551496":"","src.collections.components.CollectionCreatePage.1815688500":"","src.collections.components.CollectionDetailsPage.1815688500":"","src.pages.components.PageDetailsPage.1815688500":"","src.products.components.ProductCreatePage.1815688500":"","src.products.components.ProductUpdatePage.1815688500":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"","src.availability":"","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionListPage.686910896":"","src.collections.views.686910896":"","src.collections.components.CollectionListPage.1631917001":"","src.collections.components.CollectionListPage.4057224233":"","src.components.AssignCollectionDialog.4057224233":"","src.translations.components.TranslationsEntitiesListPage.4057224233":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"","src.collections.views.2402899582":"","src.collections.views.CollectionList.2237014112":"","src.pages.views.2237014112":"","src.products.views.ProductList.2237014112":"","src.collections.views.CollectionList.1547167026":"","src.pages.views.1547167026":"","src.products.views.ProductList.1547167026":"","src.collections.views.CollectionList.2823425739":"","src.collections.views.CollectionList.1348793822":"","src.collections.views.CollectionList.2637364047":"","src.collections.views.CollectionList.3944356444":"","src.collections.views.CollectionList.3817188998":"","src.collections.views.CollectionList.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"","src.components.ErrorMessageCard.2845142593":"","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.Filter.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.Filter.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.FilterBar.2340527467":"","src.components.SearchBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"","src.pages.components.PageList.1459686496":"","src.products.components.ProductListFilter.1459686496":"","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"","src.products.views.ProductList.hidden":"","src.components.VisibilityCard.292404896":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","src.configuration.2326418019":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","src.configuration.3655543906":"","configurationMenuShipping":"","configurationMenuTaxes":"","src.configuration.3140151600":"","configurationMenuStaff":"","src.configuration.1233229030":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","configurationPluginsPages":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"","src.customers.components.CustomerAddresses.3517722732":"","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"Тэмдэглэлүүд","src.orders.components.OrderCustomerNote.1520756907":"Тэмдэглэлүүд","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"Тэмдэглэл","src.customers.components.CustomerDetails.577013340":"Тэмдэглэл","src.customers.components.CustomerCreatePage.1934221653":"","src.customers.components.CustomerListPage.1934221653":"","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerListPage.477293306":"","src.customers.components.CustomerListPage.1643417013":"","src.customers.components.CustomerOrders.3878642352":"","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"","src.orders.components.OrderDraftList.4205493358":"","src.orders.components.OrderList.4205493358":"","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"","src.orders.components.OrderListFilter.1756106276":"","src.plugins.components.PluginInfo.1756106276":"","src.products.components.ProductListFilter.1756106276":"","src.products.components.ProductVariants.1756106276":"","src.customers.components.CustomerOrders.878013594":"","src.orders.components.OrderDraftDetailsProducts.878013594":"","src.orders.components.OrderDraftDetailsSummary.878013594":"","src.orders.components.OrderDraftList.878013594":"","src.orders.components.OrderFulfillment.878013594":"","src.orders.components.OrderUnfulfilledItems.878013594":"","src.orders.components.OrderList.878013594":"","src.orders.components.OrderPayment.878013594":"","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.CustomerList.1946482599":"","src.customers.views.CustomerList.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","src.discounts.components.SaleListPage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"","src.discounts.components.SaleSummary.1148029984":"","src.discounts.components.VoucherList.1148029984":"","src.discounts.components.VoucherSummary.1148029984":"","src.discounts.components.VoucherValue.1148029984":"","src.products.components.ProductAttributes.1148029984":"","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.3907768880":"","src.discounts.components.SaleListPage.1866913828":"","src.translations.components.TranslationsEntitiesListPage.1866913828":"","src.discounts.components.SalePricing.1099355007":"","src.products.components.ProductPricing.1099355007":"","src.products.components.ProductVariantPrice.1099355007":"","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"","src.discounts.components.VoucherSummary.78726751":"","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.614836274":"","src.discounts.components.VoucherListPage.1112241061":"","src.discounts.components.VoucherListPage.1930485532":"","src.translations.components.TranslationsEntitiesListPage.1930485532":"","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"","src.discounts.shipment":"","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.SaleList.2809303671":"","src.discounts.views.SaleList.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.VoucherList.367317371":"","src.discounts.views.VoucherList.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.somethingWentWrong":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"","src.orders.views.OrderList.3528672691":"","src.confirm":"","src.delete":"","src.edit":"","src.manage":"","src.remove":"","src.save":"","src.show":"","src.undo":"","src.attributes":"","src.products.components.ProductAttributes.4153345096":"","src.categories":"","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"","src.customers":"","src.draftOrders":"","src.home":"","src.navigation":"","src.orders":"","src.pages":"","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.plugins":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"","src.taxes.components.CountryListPage.3955023266":"","src.translations":"","src.vouchers":"","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"","src.partiallyPaid":"","src.partiallyRefunded":"","src.refunded":"","src.unpaid":"","src.cancelled":"","src.draft":"","src.fulfilled":"","src.orders.views.OrderList.fulfilled":"","src.orders.components.OrderListFilter.1712863026":"","src.partiallyFulfilled":"","src.unfulfilled":"","src.orders.views.OrderList.unfulfilled":"","src.orders.components.OrderListFilter.1751787272":"","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"","src.orders.components.OrderDetailsPage.1854613983":"","src.orders.components.OrderDraftPage.1854613983":"","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"","src.orders.components.OrderCustomerEditDialog.1411666943":"","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.632633254":"","src.orders.components.OrderDraftCancelDialog.36681973":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"","src.orders.components.OrderUnfulfilledItems.1895667608":"","src.orders.components.OrderDraftDetailsProducts.2796503714":"","src.orders.components.OrderFulfillment.2796503714":"","src.orders.components.OrderFulfillmentDialog.2796503714":"","src.orders.components.OrderUnfulfilledItems.2796503714":"","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"","src.orders.components.OrderPayment.781550514":"","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"","src.orders.components.OrderListPage.2826235371":"","src.orders.components.OrderDraftListPage.551325728":"","src.orders.components.OrderDraftListPage.77765281":"","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"","src.orders.components.OrderFulfillmentCancelDialog.732594284":"","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.4067959693":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2415661583":"","src.orders.views.OrderList.readyToCapture":"","src.orders.components.OrderListFilter.2222765704":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"","src.productTypes.components.ProductTypeShipping.1325966144":"","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"","src.orders.components.OrderPayment.3768782744":"","src.orders.components.OrderPayment.2320183694":"","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"","src.orders.components.OrderPayment.2845258362":"","src.orders.components.OrderPayment.2444197639":"","src.orders.components.OrderPayment.3500506678":"","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.1542417144":"","src.products.components.ProductListPage.1542417144":"","src.products.views.1542417144":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.OrderDraftList.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.OrderDraftList.1648805446":"","src.orders.views.OrderDraftList.1161115149":"","src.orders.views.OrderDraftList.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.1068617485":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"","src.pages.components.PageList.1124600214":"","src.pages.components.PageInfo.1116746286":"","src.translations.components.TranslationsPagesPage.1116746286":"","src.pages.components.PageList.3478065224":"","src.pages.components.PageSlug.3478065224":"","src.productTypes.components.ProductTypeAttributes.3478065224":"","src.pages.components.PageList.3767550649":"","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.3785394515":"","src.pages.views.3785394515":"","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.plugins.components.PluginInfo.3425535100":"","src.plugins.components.PluginsDetailsPage.3425535100":"","src.plugins.components.PluginInfo.1049131348":"","src.plugins.components.PluginInfo.4013064767":"","src.plugins.components.PluginsDetailsPage.3352026836":"","src.plugins.components.PluginsDetailsPage.2277745418":"","src.plugins.components.PluginsDetailsPage.1970881031":"","src.plugins.components.PluginSettings.1970881031":"","src.plugins.components.PluginsDetailsPage.4241018152":"","src.plugins.components.PluginsList.3247064221":"Идэвхтэй","src.staff.components.StaffList.3247064221":"Идэвхтэй","src.plugins.components.PluginsList.4120604650":"","src.plugins.components.PluginsList.666641390":"","src.plugins.views.100549097":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"","src.products.components.ProductVariantImages.3240888698":"","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"","src.products.components.ProductVariantStock.3841616483":"","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListFilter.821159718":"","src.products.components.ProductListFilter.1421689426":"","src.products.components.ProductListFilter.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"","prodictStockInventoryLabel":"","src.products.components.ProductVariantStock.3490038570":"","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"","src.products.components.ProductVariants.2153006789":"","src.products.components.ProductVariantNavigation.2845381934":"","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.3989383405":"","src.products.views.3989383405":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1591632382":"","src.products.views.1731766393":"","src.products.views.2880386427":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1217376589":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.3479705616":"","src.productTypes.components.ProductTypeListPage.1776073799":"","src.productTypes.components.ProductTypeListPage.3420445375":"","src.translations.components.TranslationsEntitiesListPage.3420445375":"","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.ProductTypeList.4080551769":"","src.productTypes.views.ProductTypeList.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRates.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2673544109":"","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.1947090060":"","src.shipping.views.ShippingZoneDetails.131963671":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"","src.siteSettings.components.SiteSettingsKeys.2446088470":"","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.1481503299":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.797461521":"","src.staff.components.StaffListPage.2852350932":"","src.staff.components.StaffListPage.61043583":"","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"Хэрэглэгч идэвхтэй байна","src.staff.views.1308770978":"","src.staff.views.8878988":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.2105464697":"","src.translations.components.TranslationsEntitiesListPage.2559018090":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file diff --git a/locale/mn.po b/locale/mn.po index 9b498cc47..d332f16fe 100644 --- a/locale/mn.po +++ b/locale/mn.po @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"POT-Creation-Date: 2019-09-06T13:56:36.897Z\n" +"POT-Creation-Date: 2019-09-16T15:25:09.340Z\n" "Last-Translator: Lkhagva , 2019\n" "Language-Team: Mongolian (https://www.transifex.com/mirumee/teams/34782/mn/)\n" "MIME-Version: 1.0\n" @@ -142,22 +142,6 @@ msgctxt "create new menu item, header" msgid "Add Item" msgstr "" -#. [menuCreateDialogHeader] - dialog header -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json -msgctxt "dialog header" -msgid "Add Menu" -msgstr "" - -#. [menuListPageAddMenu] - button -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json -msgctxt "button" -msgid "Add Menu" -msgstr "" - #. [src.siteSettings.components.SiteSettingsKeyDialog.1238948746] - dialog #. header #. defaultMessage is: @@ -167,14 +151,6 @@ msgctxt "dialog header" msgid "Add New Authorization Key" msgstr "" -#. [src.pages.components.PageDetailsPage.755314116] - page header -#. defaultMessage is: -#. Add Page -#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json -msgctxt "page header" -msgid "Add Page" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.2892088870] - dialog header #. defaultMessage is: #. Add Price Rate @@ -183,38 +159,6 @@ msgctxt "dialog header" msgid "Add Price Rate" msgstr "" -#. [src.orders.components.OrderProductAddDialog.2775402904] - dialog header -#. defaultMessage is: -#. Add Product -#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json -msgctxt "dialog header" -msgid "Add Product" -msgstr "" - -#. [src.products.components.ProductListPage.2775402904] - button -#. defaultMessage is: -#. Add Product -#: build/locale/src/products/components/ProductListPage/ProductListPage.json -msgctxt "button" -msgid "Add Product" -msgstr "" - -#. [src.discounts.components.SaleListPage.1742771332] - button -#. defaultMessage is: -#. Add Sale -#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json -msgctxt "button" -msgid "Add Sale" -msgstr "" - -#. [src.staff.components.StaffAddMemberDialog.3490059488] - dialog header -#. defaultMessage is: -#. Add Staff Member -#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json -msgctxt "dialog header" -msgid "Add Staff Member" -msgstr "" - #. [src.attributes.components.AttributeValueEditDialog.1841790893] - add #. attribute value #. defaultMessage is: @@ -224,14 +168,6 @@ msgctxt "add attribute value" msgid "Add Value" msgstr "" -#. [src.products.views.2178905289] - header -#. defaultMessage is: -#. Add Variant -#: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "header" -msgid "Add Variant" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.1397795758] - add weight #. based shipping method, dialog header #. defaultMessage is: @@ -249,14 +185,6 @@ msgctxt "button" msgid "Add address" msgstr "" -#. [src.attributes.components.AttributeListPage.350498821] - button -#. defaultMessage is: -#. Add attribute -#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json -msgctxt "button" -msgid "Add attribute" -msgstr "" - #. [src.siteSettings.components.SiteSettingsKeyDialog.50561933] - button #. defaultMessage is: #. Add authentication @@ -265,14 +193,6 @@ msgctxt "button" msgid "Add authentication" msgstr "" -#. [src.categories.components.CategoryListPage.228151782] - button -#. defaultMessage is: -#. Add category -#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json -msgctxt "button" -msgid "Add category" -msgstr "" - #. [src.collections.components.CollectionCreatePage.3958681866] - page header #. defaultMessage is: #. Add collection @@ -281,14 +201,6 @@ msgctxt "page header" msgid "Add collection" msgstr "" -#. [src.collections.components.CollectionListPage.3958681866] - button -#. defaultMessage is: -#. Add collection -#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json -msgctxt "button" -msgid "Add collection" -msgstr "" - #. [src.customers.components.CustomerCreatePage.1934221653] - page header #. defaultMessage is: #. Add customer @@ -321,14 +233,6 @@ msgctxt "button" msgid "Add key" msgstr "" -#. [menuItemsAddItem] - add new menu item -#. defaultMessage is: -#. Add new item -#: build/locale/src/navigation/components/MenuItems/MenuItems.json -msgctxt "add new menu item" -msgid "Add new item" -msgstr "" - #. [menuItemsPlaceholder] #. defaultMessage is: #. Add new menu item to begin creating menu @@ -363,14 +267,6 @@ msgctxt "button" msgid "Add or Edit Link" msgstr "" -#. [src.pages.components.PageListPage.1767905232] - button -#. defaultMessage is: -#. Add page -#: build/locale/src/pages/components/PageListPage/PageListPage.json -msgctxt "button" -msgid "Add page" -msgstr "" - #. [src.categories.components.CategoryProducts.3554578821] - button #. defaultMessage is: #. Add product @@ -379,14 +275,6 @@ msgctxt "button" msgid "Add product" msgstr "" -#. [src.productTypes.components.ProductTypeListPage.889729490] - button -#. defaultMessage is: -#. Add product type -#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json -msgctxt "button" -msgid "Add product type" -msgstr "" - #. [src.orders.components.OrderDraftDetails.2528459381] - button #. defaultMessage is: #. Add products @@ -395,14 +283,6 @@ msgctxt "button" msgid "Add products" msgstr "" -#. [src.shipping.components.ShippingZoneRates.352297149] - button -#. defaultMessage is: -#. Add rate -#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json -msgctxt "button" -msgid "Add rate" -msgstr "" - #. [src.categories.components.CategoryCreatePage.2563994280] #. defaultMessage is: #. Add search engine title and description to make this category easier to @@ -464,30 +344,6 @@ msgctxt "button" msgid "Add shipping carrier" msgstr "" -#. [src.shipping.components.ShippingZonesList.2474410767] - button -#. defaultMessage is: -#. Add shipping zone -#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json -msgctxt "button" -msgid "Add shipping zone" -msgstr "" - -#. [src.staff.components.StaffListPage.802625341] - button -#. defaultMessage is: -#. Add staff member -#: build/locale/src/staff/components/StaffListPage/StaffListPage.json -msgctxt "button" -msgid "Add staff member" -msgstr "" - -#. [src.categories.components.CategoryList.435697837] - button -#. defaultMessage is: -#. Add subcategory -#: build/locale/src/categories/components/CategoryList/CategoryList.json -msgctxt "button" -msgid "Add subcategory" -msgstr "" - #. [src.attributes.components.AttributeProperties.673770329] - add attribute #. as column in product list table #. defaultMessage is: @@ -515,35 +371,14 @@ msgctxt "dialog header" msgid "Add tracking code" msgstr "" -#. [src.attributes.components.AttributeValues.254756045] - add attribute value -#. button -#. defaultMessage is: -#. Add value -#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json -msgctxt "add attribute value button" -msgid "Add value" -msgstr "" - #. [src.products.components.ProductVariantNavigation.2845381934] - button #. defaultMessage is: #. Add variant -#. [src.products.components.ProductVariants.2845381934] - button -#. defaultMessage is: -#. Add variant #: build/locale/src/products/components/ProductVariantNavigation/ProductVariantNavigation.json -#: build/locale/src/products/components/ProductVariants/ProductVariants.json msgctxt "button" msgid "Add variant" msgstr "" -#. [src.discounts.components.VoucherListPage.1536809153] - button -#. defaultMessage is: -#. Add voucher -#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json -msgctxt "button" -msgid "Add voucher" -msgstr "" - #. [src.attributes.views.AttributeDetails.634268988] - added new attribute #. value #. defaultMessage is: @@ -601,14 +436,6 @@ msgctxt "description" msgid "Address line 2" msgstr "" -#. [src.customers.components.CustomerAddress.1320082647] - addres card header -#. defaultMessage is: -#. Address {addressNumber} -#: build/locale/src/customers/components/CustomerAddress/CustomerAddress.json -msgctxt "addres card header" -msgid "Address {addressNumber}" -msgstr "" - #. [src.attributes.components.AttributeValues.1565474525] - attribute values #. list: slug column header #. defaultMessage is: @@ -658,6 +485,46 @@ msgctxt "tax rate" msgid "Agricultural supplies" msgstr "" +#. [src.attributes.components.AttributeListPage.2417065806] - tab name +#. defaultMessage is: +#. All Attributes +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "tab name" +msgid "All Attributes" +msgstr "" + +#. [src.categories.components.CategoryListPage.4294878092] - tab name +#. defaultMessage is: +#. All Categories +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "tab name" +msgid "All Categories" +msgstr "" + +#. [src.collections.components.CollectionListPage.1631917001] - tab name +#. defaultMessage is: +#. All Collections +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "tab name" +msgid "All Collections" +msgstr "" + +#. [src.customers.components.CustomerListPage.477293306] - tab name +#. defaultMessage is: +#. All Customers +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "tab name" +msgid "All Customers" +msgstr "" + +#. [src.orders.components.OrderDraftListPage.551325728] - tab name +#. defaultMessage is: +#. All Drafts +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "tab name" +msgid "All Drafts" +msgstr "" + #. [src.orders.components.OrderListPage.875489544] - tab name #. defaultMessage is: #. All Orders @@ -675,22 +542,54 @@ msgctxt "section header" msgid "All Photos" msgstr "" -#. [src.products.components.ProductListPage.821159718] - tab name +#. [src.productTypes.components.ProductTypeListPage.1776073799] - tab name +#. defaultMessage is: +#. All Product Types +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "tab name" +msgid "All Product Types" +msgstr "" + +#. [src.products.components.ProductListFilter.821159718] - tab name #. defaultMessage is: #. All Products -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "tab name" msgid "All Products" msgstr "" -#. [src.categories.components.CategoryList.3229914152] - section header +#. [src.discounts.components.SaleListPage.3907768880] - tab name +#. defaultMessage is: +#. All Sales +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "tab name" +msgid "All Sales" +msgstr "" + +#. [src.staff.components.StaffListPage.2852350932] - tab name +#. defaultMessage is: +#. All Staff Members +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "tab name" +msgid "All Staff Members" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.3229914152] - section header #. defaultMessage is: #. All Subcategories -#: build/locale/src/categories/components/CategoryList/CategoryList.json +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json msgctxt "section header" msgid "All Subcategories" msgstr "" +#. [src.discounts.components.VoucherListPage.1112241061] - tab name +#. defaultMessage is: +#. All Vouchers +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "tab name" +msgid "All Vouchers" +msgstr "" + #. [src.taxes.components.TaxConfiguration.142803418] #. defaultMessage is: #. All products prices are entered with tax included @@ -798,6 +697,14 @@ msgctxt "description" msgid "Are you sure you want to delete collection's image?" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.36681973] +#. defaultMessage is: +#. Are you sure you want to delete draft #{number}? +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "description" +msgid "Are you sure you want to delete draft #{number}?" +msgstr "" + #. [menuDetailsDeleteMenuContent] #. defaultMessage is: #. Are you sure you want to delete menu {menuName}? @@ -814,6 +721,14 @@ msgctxt "description" msgid "Are you sure you want to delete this address from users address book?" msgstr "" +#. [src.products.views.2880386427] +#. defaultMessage is: +#. Are you sure you want to delete this image? +#: build/locale/src/products/views/ProductImage.json +msgctxt "description" +msgid "Are you sure you want to delete this image?" +msgstr "" + #. [src.attributes.components.AttributeDeleteDialog.3738429348] - dialog #. content #. defaultMessage is: @@ -864,12 +779,7 @@ msgstr "" #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this attribute} #. other{{displayQuantity} categories}}? -#. [src.categories.views.844574071] -#. defaultMessage is: -#. Are you sure you want to delete {counter,plural,one{this attribute} -#. other{{displayQuantity} categories}}? #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this attribute} " @@ -887,22 +797,33 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.2497542455] +#. [src.categories.views.CategoryList.2144707585] +#. defaultMessage is: +#. Are you sure you want to delete {counter,plural,one{this category} +#. other{{displayQuantity} categories}}? +#: build/locale/src/categories/views/CategoryList/CategoryList.json +msgctxt "description" +msgid "" +"Are you sure you want to delete {counter,plural,one{this category} " +"other{{displayQuantity} categories}}?" +msgstr "" + +#. [src.collections.views.CollectionList.2497542455] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this collection} " "other{{displayQuantity} collections}}?" msgstr "" -#. [src.customers.views.409347866] +#. [src.customers.views.CustomerList.409347866] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this customer} #. other{{displayQuantity} customers}}? -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this customer} " @@ -920,11 +841,11 @@ msgid "" "other{{displayQuantity} menus}}?" msgstr "" -#. [src.orders.views.1389231130] - dialog content +#. [src.orders.views.OrderDraftList.1389231130] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this order draft} #. other{{displayQuantity} orderDrafts}}? -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this order draft} " @@ -942,11 +863,11 @@ msgid "" "other{{displayQuantity} pages}}?" msgstr "" -#. [src.productTypes.views.2294091098] - dialog content +#. [src.productTypes.views.ProductTypeList.2294091098] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this product type} #. other{{displayQuantity} product types}}? -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this product type} " @@ -964,11 +885,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.discounts.views.2516361175] - dialog content +#. [src.discounts.views.SaleList.2516361175] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this sale} #. other{{displayQuantity} sales}}? -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this sale} " @@ -997,17 +918,33 @@ msgid "" "other{{displayQuantity} variants}}?" msgstr "" -#. [src.discounts.views.1791926983] - dialog content +#. [src.discounts.views.VoucherList.1791926983] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this voucher} #. other{{displayQuantity} vouchers}}? -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this voucher} " "other{{displayQuantity} vouchers}}?" msgstr "" +#. [src.shipping.views.ShippingZoneDetails.131963671] - unassign country +#. defaultMessage is: +#. Are you sure you want to delete {countryName} from this shipping zone? +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country" +msgid "Are you sure you want to delete {countryName} from this shipping zone?" +msgstr "" + +#. [src.staff.views.8878988] +#. defaultMessage is: +#. Are you sure you want to delete {email} from staff members? +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "description" +msgid "Are you sure you want to delete {email} from staff members?" +msgstr "" + #. [src.customers.views.1927691511] - delete customer, dialog content #. defaultMessage is: #. Are you sure you want to delete {email}? @@ -1122,11 +1059,11 @@ msgctxt "description" msgid "Are you sure you want to mark this order as paid?" msgstr "" -#. [src.collections.views.1348793822] +#. [src.collections.views.CollectionList.1348793822] #. defaultMessage is: #. Are you sure you want to publish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to publish {counter,plural,one{this collection} " @@ -1155,30 +1092,6 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.orders.components.OrderDraftCancelDialog.3199827590] -#. defaultMessage is: -#. Are you sure you want to remove draft #{number}? -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "description" -msgid "Are you sure you want to remove draft #{number}?" -msgstr "" - -#. [src.products.views.672103788] -#. defaultMessage is: -#. Are you sure you want to remove this image? -#: build/locale/src/products/views/ProductImage.json -msgctxt "description" -msgid "Are you sure you want to remove this image?" -msgstr "" - -#. [src.shipping.views.ShippingZoneDetails.1790261672] - unassign country -#. defaultMessage is: -#. Are you sure you want to remove {countryName} from this shipping zone? -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country" -msgid "Are you sure you want to remove {countryName} from this shipping zone?" -msgstr "" - #. [src.staff.views.3945766678] #. defaultMessage is: #. Are you sure you want to remove {email} avatar? @@ -1187,14 +1100,6 @@ msgctxt "description" msgid "Are you sure you want to remove {email} avatar?" msgstr "" -#. [src.staff.views.2728048444] -#. defaultMessage is: -#. Are you sure you want to remove {email} from staff members? -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "description" -msgid "Are you sure you want to remove {email} from staff members?" -msgstr "" - #. [src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450] #. defaultMessage is: #. Are you sure you want to unassign {attributeName} from {productTypeName}? @@ -1275,11 +1180,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.3944356444] +#. [src.collections.views.CollectionList.3944356444] #. defaultMessage is: #. Are you sure you want to unpublish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to unpublish {counter,plural,one{this collection} " @@ -1440,6 +1345,15 @@ msgctxt "button" msgid "Assign products" msgstr "" +#. [src.attributes.components.AttributeValues.351422234] - assign attribute +#. value button +#. defaultMessage is: +#. Assign value +#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json +msgctxt "assign attribute value button" +msgid "Assign value" +msgstr "" + #. [src.attributes.components.AttributeDetails.3605174225] - attribute's slug #. short code label #. defaultMessage is: @@ -1518,6 +1432,14 @@ msgctxt "product attributes, section header" msgid "Attributes" msgstr "" +#. [src.configuration.2326418019] +#. defaultMessage is: +#. Attributes and Product Typess +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Attributes and Product Typess" +msgstr "" + #. [src.attributes.views.AttributeList.3218248395] - deleted multiple #. attributes #. defaultMessage is: @@ -2301,6 +2223,22 @@ msgctxt "description" msgid "Country area" msgstr "" +#. [menuCreateDialogHeader] - dialog header +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json +msgctxt "dialog header" +msgid "Create Menu" +msgstr "" + +#. [menuListPageAddMenu] - button +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json +msgctxt "button" +msgid "Create Menu" +msgstr "" + #. [src.attributes.components.AttributePage.2855501559] - page title #. defaultMessage is: #. Create New Attribute @@ -2325,6 +2263,30 @@ msgctxt "header" msgid "Create New Shipping Zone" msgstr "" +#. [src.pages.components.PageDetailsPage.1068617485] - page header +#. defaultMessage is: +#. Create Page +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page header" +msgid "Create Page" +msgstr "" + +#. [src.orders.components.OrderProductAddDialog.1542417144] - dialog header +#. defaultMessage is: +#. Create Product +#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json +msgctxt "dialog header" +msgid "Create Product" +msgstr "" + +#. [src.products.components.ProductListPage.1542417144] - button +#. defaultMessage is: +#. Create Product +#: build/locale/src/products/components/ProductListPage/ProductListPage.json +msgctxt "button" +msgid "Create Product" +msgstr "" + #. [src.products.views.1542417144] - window title #. defaultMessage is: #. Create Product @@ -2357,11 +2319,19 @@ msgctxt "page header" msgid "Create Sale" msgstr "" -#. [src.products.views.2362587265] - window title +#. [src.discounts.components.SaleListPage.3866518732] - button +#. defaultMessage is: +#. Create Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "button" +msgid "Create Sale" +msgstr "" + +#. [src.products.views.2362587265] - header #. defaultMessage is: #. Create Variant #: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "window title" +msgctxt "header" msgid "Create Variant" msgstr "" @@ -2373,6 +2343,22 @@ msgctxt "page header" msgid "Create Voucher" msgstr "" +#. [src.attributes.components.AttributeListPage.3824684885] - button +#. defaultMessage is: +#. Create attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "button" +msgid "Create attribute" +msgstr "" + +#. [src.categories.components.CategoryListPage.1140231710] - button +#. defaultMessage is: +#. Create category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "button" +msgid "Create category" +msgstr "" + #. [src.categories.views.1140231710] - window title #. defaultMessage is: #. Create category @@ -2381,6 +2367,14 @@ msgctxt "window title" msgid "Create category" msgstr "" +#. [src.collections.components.CollectionListPage.686910896] - button +#. defaultMessage is: +#. Create collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "button" +msgid "Create collection" +msgstr "" + #. [src.collections.views.686910896] - window title #. defaultMessage is: #. Create collection @@ -2397,6 +2391,14 @@ msgctxt "window title" msgid "Create customer" msgstr "" +#. [menuItemsAddItem] - add new menu item +#. defaultMessage is: +#. Create new item +#: build/locale/src/navigation/components/MenuItems/MenuItems.json +msgctxt "add new menu item" +msgid "Create new item" +msgstr "" + #. [src.orders.components.OrderDraftListPage.2826235371] - button #. defaultMessage is: #. Create order @@ -2409,6 +2411,14 @@ msgctxt "button" msgid "Create order" msgstr "" +#. [src.pages.components.PageListPage.3785394515] - button +#. defaultMessage is: +#. Create page +#: build/locale/src/pages/components/PageListPage/PageListPage.json +msgctxt "button" +msgid "Create page" +msgstr "" + #. [src.pages.views.3785394515] - header #. defaultMessage is: #. Create page @@ -2420,11 +2430,55 @@ msgstr "" #. [src.shipping.components.ShippingZoneRateDialog.16061680] - button #. defaultMessage is: #. Create rate +#. [src.shipping.components.ShippingZoneRates.16061680] - button +#. defaultMessage is: +#. Create rate #: build/locale/src/shipping/components/ShippingZoneRateDialog/ShippingZoneRateDialog.json +#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json msgctxt "button" msgid "Create rate" msgstr "" +#. [src.shipping.components.ShippingZonesList.2673544109] - button +#. defaultMessage is: +#. Create shipping zone +#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json +msgctxt "button" +msgid "Create shipping zone" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.770296100] - button +#. defaultMessage is: +#. Create subcategory +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json +msgctxt "button" +msgid "Create subcategory" +msgstr "" + +#. [src.products.components.ProductVariants.3989383405] - button +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/components/ProductVariants/ProductVariants.json +msgctxt "button" +msgid "Create variant" +msgstr "" + +#. [src.products.views.3989383405] - window title +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/views/ProductVariantCreate.json +msgctxt "window title" +msgid "Create variant" +msgstr "" + +#. [src.discounts.components.VoucherListPage.614836274] - button +#. defaultMessage is: +#. Create voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "button" +msgid "Create voucher" +msgstr "" + #. [src.collections.views.1597339737] #. defaultMessage is: #. Created collection @@ -2471,7 +2525,11 @@ msgstr "" #. [src.components.FilterBar.2340527467] #. defaultMessage is: #. Custom Filter +#. [src.components.SearchBar.2340527467] +#. defaultMessage is: +#. Custom Filter #: build/locale/src/components/FilterBar/FilterBar.json +#: build/locale/src/components/SearchBar/SearchBar.json msgctxt "description" msgid "Custom Filter" msgstr "" @@ -2727,10 +2785,18 @@ msgctxt "dialog title" msgid "Delete Collection" msgstr "" -#. [src.orders.views.1161115149] - dialog header +#. [src.products.views.1731766393] - dialog header +#. defaultMessage is: +#. Delete Image +#: build/locale/src/products/views/ProductImage.json +msgctxt "dialog header" +msgid "Delete Image" +msgstr "" + +#. [src.orders.views.OrderDraftList.1161115149] - dialog header #. defaultMessage is: #. Delete Order Drafts -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog header" msgid "Delete Order Drafts" msgstr "" @@ -2768,10 +2834,10 @@ msgctxt "dialog header" msgid "Delete Product Type" msgstr "" -#. [src.productTypes.views.4080551769] - dialog header +#. [src.productTypes.views.ProductTypeList.4080551769] - dialog header #. defaultMessage is: #. Delete Product Types -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog header" msgid "Delete Product Types" msgstr "" @@ -2800,10 +2866,10 @@ msgctxt "dialog header" msgid "Delete Sale" msgstr "" -#. [src.discounts.views.2809303671] - dialog header +#. [src.discounts.views.SaleList.2809303671] - dialog header #. defaultMessage is: #. Delete Sales -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog header" msgid "Delete Sales" msgstr "" @@ -2817,9 +2883,13 @@ msgctxt "custom search delete, dialog header" msgid "Delete Search" msgstr "" +#. [src.components.Filter.2173195312] - button +#. defaultMessage is: +#. Delete Search #. [src.components.TableFilter.2173195312] - button #. defaultMessage is: #. Delete Search +#: build/locale/src/components/Filter/FilterSearch.json #: build/locale/src/components/TableFilter/FilterChips.json msgctxt "button" msgid "Delete Search" @@ -2886,10 +2956,10 @@ msgctxt "dialog header" msgid "Delete Voucher" msgstr "" -#. [src.discounts.views.367317371] - dialog header +#. [src.discounts.views.VoucherList.367317371] - dialog header #. defaultMessage is: #. Delete Vouchers -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog header" msgid "Delete Vouchers" msgstr "" @@ -2923,11 +2993,11 @@ msgstr "" #. [src.categories.views.712767046] - dialog title #. defaultMessage is: #. Delete categories -#. [src.categories.views.712767046] - dialog title +#. [src.categories.views.CategoryList.712767046] - dialog title #. defaultMessage is: #. Delete categories #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "dialog title" msgid "Delete categories" msgstr "" @@ -2944,10 +3014,10 @@ msgctxt "dialog title" msgid "Delete category" msgstr "" -#. [src.collections.views.3817188998] - dialog title +#. [src.collections.views.CollectionList.3817188998] - dialog title #. defaultMessage is: #. Delete collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Delete collections" msgstr "" @@ -2960,14 +3030,31 @@ msgctxt "dialog header" msgid "Delete customer" msgstr "" -#. [src.customers.views.1946482599] - dialog header +#. [src.customers.views.CustomerList.1946482599] - dialog header #. defaultMessage is: #. Delete customers -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "dialog header" msgid "Delete customers" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.632633254] - dialog header +#. defaultMessage is: +#. Delete draft order +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "dialog header" +msgid "Delete draft order" +msgstr "" + +#. [src.shipping.views.ShippingZoneDetails.1947090060] - unassign country, +#. dialog header +#. defaultMessage is: +#. Delete from shipping zone +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country, dialog header" +msgid "Delete from shipping zone" +msgstr "" + #. [src.collections.views.942133001] - dialog title #. defaultMessage is: #. Delete image @@ -3028,6 +3115,14 @@ msgctxt "description" msgid "Deleted collection" msgstr "Коллекшн устгагдлаа" +#. [src.orders.views.OrderDraftList.1648805446] +#. defaultMessage is: +#. Deleted draft orders +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json +msgctxt "description" +msgid "Deleted draft orders" +msgstr "" + #. [menuListDeletedMenu] #. defaultMessage is: #. Deleted menu @@ -3627,14 +3722,6 @@ msgctxt "order history message" msgid "Fulfilled {quantity} items" msgstr "" -#. [src.orders.components.OrderListFilter.2943502192] - order -#. defaultMessage is: -#. Fulfillment Status -#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json -msgctxt "order" -msgid "Fulfillment Status" -msgstr "" - #. [src.orders.components.OrderHistory.3081292385] - order history message #. defaultMessage is: #. Fulfillment confirmation was sent to customer @@ -3791,12 +3878,12 @@ msgctxt "description" msgid "If empty, the preview shows what will be autogenerated." msgstr "" -#. [src.attributes.components.AttributeProperties.2519239682] +#. [src.attributes.components.AttributeProperties.4048785456] #. defaultMessage is: -#. If enable this attribute can be used as a column in product table. +#. If enabled this attribute can be used as a column in product table. #: build/locale/src/attributes/components/AttributeProperties/AttributeProperties.json msgctxt "description" -msgid "If enable this attribute can be used as a column in product table." +msgid "If enabled this attribute can be used as a column in product table." msgstr "" #. [src.attributes.components.AttributeProperties.787251583] @@ -3902,6 +3989,22 @@ msgctxt "product variant stock" msgid "Inventory" msgstr "" +#. [src.staff.components.StaffAddMemberDialog.1481503299] - dialog header +#. defaultMessage is: +#. Invite Staff Member +#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json +msgctxt "dialog header" +msgid "Invite Staff Member" +msgstr "" + +#. [src.staff.components.StaffListPage.797461521] - button +#. defaultMessage is: +#. Invite staff member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "button" +msgid "Invite staff member" +msgstr "" + #. [src.productTypes.components.ProductTypeShipping.2143413921] - switch #. button #. defaultMessage is: @@ -4254,6 +4357,14 @@ msgctxt "voucher requirement" msgid "Minimum quantity of items" msgstr "" +#. [src.configuration.1233229030] +#. defaultMessage is: +#. Miscellaneous +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Miscellaneous" +msgstr "" + #. [src.attributes.components.AttributeDetails.3334509011] - product attribute #. type #. defaultMessage is: @@ -5086,6 +5197,14 @@ msgctxt "description" msgid "Order History" msgstr "" +#. [src.orders.components.OrderListFilter.2222765704] +#. defaultMessage is: +#. Order Status +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +msgctxt "description" +msgid "Order Status" +msgstr "" + #. [src.orders.components.OrderHistory.1230178536] - order history message #. defaultMessage is: #. Order address was updated @@ -5102,13 +5221,13 @@ msgctxt "order history message" msgid "Order confirmation was sent to customer" msgstr "" -#. [src.orders.views.1872939752] +#. [src.orders.views.OrderDraftList.1872939752] #. defaultMessage is: #. Order draft succesfully created #. [src.orders.views.OrderList.1872939752] #. defaultMessage is: #. Order draft succesfully created -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json #: build/locale/src/orders/views/OrderList/OrderList.json msgctxt "description" msgid "Order draft succesfully created" @@ -5773,6 +5892,14 @@ msgctxt "description" msgid "Product Name" msgstr "" +#. [src.configuration.3655543906] +#. defaultMessage is: +#. Product Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Product Settings" +msgstr "" + #. [src.discounts.components.DiscountProducts.4257289053] #. defaultMessage is: #. Product Type @@ -5931,12 +6058,12 @@ msgctxt "order history message" msgid "Products were added to draft order" msgstr "" -#. [src.orders.components.OrderHistory.2574162126] - order history message +#. [src.orders.components.OrderHistory.4067959693] - order history message #. defaultMessage is: -#. Products were removed from draft order +#. Products were deleted from draft order #: build/locale/src/orders/components/OrderHistory/OrderHistory.json msgctxt "order history message" -msgid "Products were removed from draft order" +msgid "Products were deleted from draft order" msgstr "" #. [src.properties] @@ -5963,10 +6090,10 @@ msgctxt "description" msgid "Provided email address does not exist in our database." msgstr "" -#. [src.collections.views.1547167026] - publish collections +#. [src.collections.views.CollectionList.1547167026] - publish collections #. defaultMessage is: #. Publish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "publish collections" msgid "Publish" msgstr "" @@ -6003,10 +6130,10 @@ msgctxt "dialog header" msgid "Publish Products" msgstr "" -#. [src.collections.views.2823425739] - dialog title +#. [src.collections.views.CollectionList.2823425739] - dialog title #. defaultMessage is: #. Publish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Publish collections" msgstr "" @@ -6180,6 +6307,18 @@ msgctxt "shipping method price" msgid "Rate Price" msgstr "" +#. [src.orders.components.OrderListFilter.2415661583] - order status +#. defaultMessage is: +#. Ready to Capture +#. [src.orders.views.OrderList.readyToCapture] - order status +#. defaultMessage is: +#. Ready to Capture +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +#: build/locale/src/orders/views/OrderList/filters.json +msgctxt "order status" +msgid "Ready to Capture" +msgstr "" + #. [src.customers.components.CustomerOrders.3878642352] - section header #. defaultMessage is: #. Recent orders @@ -6228,22 +6367,14 @@ msgctxt "switch button" msgid "Release all stock allocated to this order" msgstr "" -#. [src.auth.components.LoginPage.3182284913] - login -#. defaultMessage is: -#. Remember me -#: build/locale/src/auth/components/LoginPage/LoginPage.json -msgctxt "login" -msgid "Remember me" -msgstr "" - #. [src.categories.views.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. -#. [src.categories.views.3488150607] +#. [src.categories.views.CategoryList.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "description" msgid "Remember this will also delete all products assigned to this category." msgstr "" @@ -6256,39 +6387,6 @@ msgctxt "button" msgid "Remove" msgstr "" -#. [src.products.views.490753666] - dialog header -#. defaultMessage is: -#. Remove Image -#: build/locale/src/products/views/ProductImage.json -msgctxt "dialog header" -msgid "Remove Image" -msgstr "" - -#. [src.orders.components.OrderDraftCancelDialog.500287069] - dialog header -#. defaultMessage is: -#. Remove draft order -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "dialog header" -msgid "Remove draft order" -msgstr "" - -#. [src.shipping.views.ShippingZoneDetails.254167659] - unassign country, -#. dialog header -#. defaultMessage is: -#. Remove from shipping zone -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country, dialog header" -msgid "Remove from shipping zone" -msgstr "" - -#. [src.orders.views.3880993240] -#. defaultMessage is: -#. Removed draft orders -#: build/locale/src/orders/views/OrderDraftList.json -msgctxt "description" -msgid "Removed draft orders" -msgstr "" - #. [src.pages.views.1457312643] #. defaultMessage is: #. Removed page @@ -6454,6 +6552,18 @@ msgctxt "button" msgid "Save" msgstr "" +#. [src.components.Filter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#. [src.components.TableFilter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#: build/locale/src/components/Filter/FilterSearch.json +#: build/locale/src/components/TableFilter/FilterChips.json +msgctxt "button" +msgid "Save Custom Search" +msgstr "" + #. [src.components.SaveFilterTabDialog.1514415736] - save filter tab, header #. defaultMessage is: #. Save Custom Search @@ -6462,14 +6572,6 @@ msgctxt "save filter tab, header" msgid "Save Custom Search" msgstr "" -#. [src.components.TableFilter.1514415736] - button -#. defaultMessage is: -#. Save Custom Search -#: build/locale/src/components/TableFilter/FilterChips.json -msgctxt "button" -msgid "Save Custom Search" -msgstr "" - #. [src.products.components.ProductVariantCreatePage.2853608829] - button #. defaultMessage is: #. Save variant @@ -6486,6 +6588,14 @@ msgctxt "description" msgid "Saved changes" msgstr "" +#. [src.attributes.components.AttributeListPage.3916653510] +#. defaultMessage is: +#. Search Attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "description" +msgid "Search Attribute" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.902296540] #. defaultMessage is: #. Search Attributes @@ -6502,10 +6612,30 @@ msgctxt "description" msgid "Search Categories" msgstr "" +#. [src.categories.components.CategoryListPage.3841025483] +#. defaultMessage is: +#. Search Category +#. [src.translations.components.TranslationsEntitiesListPage.3841025483] +#. defaultMessage is: +#. Search Category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Category" +msgstr "" + +#. [src.collections.components.CollectionListPage.4057224233] +#. defaultMessage is: +#. Search Collection #. [src.components.AssignCollectionDialog.4057224233] #. defaultMessage is: #. Search Collection +#. [src.translations.components.TranslationsEntitiesListPage.4057224233] +#. defaultMessage is: +#. Search Collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json #: build/locale/src/components/AssignCollectionDialog/AssignCollectionDialog.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json msgctxt "description" msgid "Search Collection" msgstr "" @@ -6518,6 +6648,14 @@ msgctxt "description" msgid "Search Countries" msgstr "" +#. [src.customers.components.CustomerListPage.1643417013] +#. defaultMessage is: +#. Search Customer +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "description" +msgid "Search Customer" +msgstr "" + #. [src.orders.components.OrderCustomer.2433460203] #. defaultMessage is: #. Search Customers @@ -6526,6 +6664,14 @@ msgctxt "description" msgid "Search Customers" msgstr "" +#. [src.orders.components.OrderDraftListPage.77765281] +#. defaultMessage is: +#. Search Draft +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "description" +msgid "Search Draft" +msgstr "" + #. [src.translations.components.TranslationsCategoriesPage.1406947243] #. defaultMessage is: #. Search Engine Description @@ -6606,6 +6752,34 @@ msgctxt "description" msgid "Search Orders..." msgstr "" +#. [src.translations.components.TranslationsEntitiesListPage.2559018090] +#. defaultMessage is: +#. Search Page +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Page" +msgstr "" + +#. [src.translations.components.TranslationsEntitiesListPage.2105464697] +#. defaultMessage is: +#. Search Product +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product" +msgstr "" + +#. [src.productTypes.components.ProductTypeListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#. [src.translations.components.TranslationsEntitiesListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product Type" +msgstr "" + #. [src.components.AssignProductDialog.2850255786] #. defaultMessage is: #. Search Products @@ -6618,14 +6792,46 @@ msgctxt "description" msgid "Search Products" msgstr "" -#. [src.products.components.ProductListPage.3550330425] +#. [src.products.components.ProductListFilter.3550330425] #. defaultMessage is: #. Search Products... -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Search Products..." msgstr "" +#. [src.discounts.components.SaleListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#. [src.translations.components.TranslationsEntitiesListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Sale" +msgstr "" + +#. [src.staff.components.StaffListPage.61043583] +#. defaultMessage is: +#. Search Staff Member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "description" +msgid "Search Staff Member" +msgstr "" + +#. [src.discounts.components.VoucherListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#. [src.translations.components.TranslationsEntitiesListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Voucher" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.524117994] #. defaultMessage is: #. Search by attribute name @@ -6732,10 +6938,10 @@ msgctxt "description" msgid "Select all orders where:" msgstr "" -#. [src.products.components.ProductListPage.1421689426] +#. [src.products.components.ProductListFilter.1421689426] #. defaultMessage is: #. Select all products where: -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Select all products where:" msgstr "" @@ -6821,6 +7027,14 @@ msgctxt "description" msgid "Set plugin as Active" msgstr "" +#. [src.components.VisibilityCard.292404896] +#. defaultMessage is: +#. Set publication date +#: build/locale/src/components/VisibilityCard/VisibilityCard.json +msgctxt "description" +msgid "Set publication date" +msgstr "" + #. [src.discounts.shipment] - voucher discount #. defaultMessage is: #. Shipment @@ -7086,6 +7300,14 @@ msgctxt "staff section name" msgid "Staff Members" msgstr "" +#. [src.configuration.3140151600] +#. defaultMessage is: +#. Staff Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Staff Settings" +msgstr "" + #. [src.standard] - tax rate #. defaultMessage is: #. Standard @@ -8070,10 +8292,10 @@ msgctxt "payment status" msgid "Unpaid" msgstr "" -#. [src.collections.views.2237014112] - unpublish collections +#. [src.collections.views.CollectionList.2237014112] - unpublish collections #. defaultMessage is: #. Unpublish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "unpublish collections" msgid "Unpublish" msgstr "" @@ -8110,10 +8332,10 @@ msgctxt "dialog header" msgid "Unpublish Products" msgstr "" -#. [src.collections.views.2637364047] - dialog title +#. [src.collections.views.CollectionList.2637364047] - dialog title #. defaultMessage is: #. Unpublish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Unpublish collections" msgstr "" @@ -8613,6 +8835,22 @@ msgctxt "description" msgid "ZIP / Postal code" msgstr "" +#. [src.productTypes.components.ProductTypeListPage.3479705616] - button +#. defaultMessage is: +#. create product type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "button" +msgid "create product type" +msgstr "" + +#. [src.staff.views.1308770978] - dialog header +#. defaultMessage is: +#. delete Staff User +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "dialog header" +msgid "delete Staff User" +msgstr "" + #. [orderPaymentVATDoesNotApply] - vat not included in order price #. defaultMessage is: #. does not apply @@ -8686,19 +8924,35 @@ msgctxt "product status is set as" msgid "is set as" msgstr "" -#. [src.staff.views.2240444792] - dialog header -#. defaultMessage is: -#. remove Staff User -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "dialog header" -msgid "remove Staff User" -msgstr "" - -#. [src.components.VisibilityCard.1815688500] +#. [src.collections.components.CollectionCreatePage.1815688500] - collection #. defaultMessage is: #. since {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.1815688500] - collection +#. defaultMessage is: +#. since {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "since {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.1815688500] - page +#. defaultMessage is: +#. since {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "since {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#. [src.products.components.ProductUpdatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "since {date}" msgstr "" @@ -8726,11 +8980,35 @@ msgctxt "weight" msgid "to {value} {unit}" msgstr "" -#. [src.components.VisibilityCard.2001551496] +#. [src.collections.components.CollectionCreatePage.2001551496] - collection #. defaultMessage is: #. will be visible from {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.2001551496] - collection +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "will be visible from {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.2001551496] - page +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "will be visible from {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#. [src.products.components.ProductUpdatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "will be visible from {date}" msgstr "" diff --git a/locale/nb.json b/locale/nb.json index 274d43ae0..3f3ba3c04 100644 --- a/locale/nb.json +++ b/locale/nb.json @@ -1 +1 @@ -{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.350498821":"","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.2519239682":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"","src.categories.components.CategoryProducts.636461959":"","src.collections.components.CollectionProducts.636461959":"","src.products.components.ProductDetailsForm.636461959":"","src.collections.components.CollectionDetails.636461959":"","src.components.ProductList.636461959":"","src.discounts.components.SaleInfo.636461959":"","src.discounts.components.SaleList.636461959":"","src.discounts.components.SaleSummary.636461959":"","menuItemDialogNameLabel":"","src.products.components.ProductVariants.636461959":"","src.shipping.components.ShippingZoneRates.636461959":"","src.shipping.components.ShippingZonesList.636461959":"","src.staff.components.StaffList.636461959":"","src.translations.components.TranslationsEntitiesList.636461959":"","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.254756045":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.3182284913":"","src.auth.components.LoginPage.109182747":"","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"","src.categories.views.2004894945":"","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.3229914152":"","src.categories.components.CategoryList.435697837":"","src.categories.components.CategoryList.2159874182":"","src.categories.components.CategoryUpdatePage.2159874182":"","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.228151782":"","src.categories.components.CategoryProducts.2968663655":"","src.categories.components.CategoryUpdatePage.2968663655":"","src.discounts.components.DiscountCategories.2968663655":"","src.discounts.components.DiscountCollections.2968663655":"","src.products":"","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryProducts.3554578821":"","src.categories.components.CategoryProductsCard.3554578821":"","src.categories.components.CategoryProducts.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProducts.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.categories.components.CategoryProductsCard.4164156574":"","src.categories.views.1754466114":"","src.categories.views.1140231710":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.712767046":"","src.categories.views.299584400":"","src.categories.views.844574071":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.collections.components.CollectionCreatePage.3958681866":"","src.collections.components.CollectionListPage.3958681866":"","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"","src.availability":"","src.collections.components.CollectionList.3640454975":"","src.collections.components.CollectionProducts.3640454975":"","src.discounts.components.DiscountProducts.3640454975":"","src.components.ProductList.3640454975":"","src.products.components.ProductListPage.3640454975":"","src.pages.components.PageList.3640454975":"","src.products.views.ProductList.published":"","src.collections.components.CollectionList.2341910657":"","src.collections.components.CollectionProducts.2341910657":"","src.discounts.components.DiscountProducts.2341910657":"","src.components.ProductList.2341910657":"","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.686910896":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"","src.collections.views.2402899582":"","src.collections.views.2237014112":"","src.pages.views.2237014112":"","src.products.views.ProductList.2237014112":"","src.collections.views.1547167026":"","src.pages.views.1547167026":"","src.products.views.ProductList.1547167026":"","src.collections.views.2823425739":"","src.collections.views.1348793822":"","src.collections.views.2637364047":"","src.collections.views.3944356444":"","src.collections.views.3817188998":"","src.collections.views.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.4057224233":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"","src.components.ErrorMessageCard.2845142593":"","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.FilterBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.ProductList.1134347598":"","src.orders.components.OrderDraftDetailsProducts.1134347598":"","src.orders.components.OrderFulfillment.1134347598":"","src.products.components.ProductListPage.1134347598":"","src.products.components.ProductPricing.1134347598":"","src.orders.components.OrderUnfulfilledItems.1134347598":"","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"","src.shipping.components.ShippingZoneRates.1134347598":"","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"","src.pages.components.PageList.1459686496":"","src.products.components.ProductListFilter.1459686496":"","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"","src.products.views.ProductList.hidden":"","src.components.VisibilityCard.1815688500":"","src.components.VisibilityCard.2001551496":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","configurationMenuStaff":"","configurationMenuShipping":"","configurationMenuTaxes":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","src.customers.components.CustomerAddress.1320082647":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"","src.customers.components.CustomerAddresses.3517722732":"","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"Adresse","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"","src.orders.components.OrderCustomerNote.1520756907":"","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"","src.customers.components.CustomerDetails.577013340":"","src.customers.components.CustomerCreatePage.1934221653":"","src.customers.components.CustomerListPage.1934221653":"","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerOrders.3878642352":"","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"","src.orders.components.OrderDraftList.4205493358":"","src.orders.components.OrderList.4205493358":"","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"","src.orders.components.OrderListFilter.1756106276":"","src.products.components.ProductListFilter.1756106276":"","src.products.components.ProductVariants.1756106276":"","src.customers.components.CustomerOrders.878013594":"","src.orders.components.OrderDraftDetailsProducts.878013594":"","src.orders.components.OrderDraftDetailsSummary.878013594":"","src.orders.components.OrderDraftList.878013594":"","src.orders.components.OrderFulfillment.878013594":"","src.orders.components.OrderUnfulfilledItems.878013594":"","src.orders.components.OrderList.878013594":"","src.orders.components.OrderPayment.878013594":"","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.1946482599":"","src.customers.views.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"","src.discounts.components.SaleSummary.1148029984":"","src.discounts.components.VoucherList.1148029984":"","src.discounts.components.VoucherSummary.1148029984":"","src.discounts.components.VoucherValue.1148029984":"","src.products.components.ProductAttributes.1148029984":"","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.1742771332":"","src.discounts.components.SalePricing.1099355007":"","src.products.components.ProductPricing.1099355007":"","src.products.components.ProductVariantPrice.1099355007":"","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"","src.discounts.components.VoucherSummary.78726751":"","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.1536809153":"","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"","src.discounts.shipment":"","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.2809303671":"","src.discounts.views.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.367317371":"","src.discounts.views.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"","src.orders.views.OrderList.3528672691":"","src.confirm":"","src.delete":"","src.edit":"","src.manage":"","src.remove":"","src.save":"","src.show":"","src.undo":"","src.attributes":"","src.products.components.ProductAttributes.4153345096":"","src.categories":"","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"","src.customers":"","src.draftOrders":"","src.home":"","src.navigation":"","src.orders":"","src.pages":"","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"","src.taxes.components.CountryListPage.3955023266":"","src.translations":"","src.vouchers":"","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"Betalt","src.partiallyPaid":"","src.partiallyRefunded":"","src.refunded":"","src.unpaid":"","src.cancelled":"Kansellert","src.draft":"","src.fulfilled":"","src.orders.views.OrderList.fulfilled":"","src.orders.components.OrderListFilter.1712863026":"","src.partiallyFulfilled":"","src.unfulfilled":"","src.orders.views.OrderList.unfulfilled":"","src.orders.components.OrderListFilter.1751787272":"","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","src.1395232177":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"","src.orders.components.OrderDetailsPage.1854613983":"","src.orders.components.OrderDraftPage.1854613983":"","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"","src.orders.components.OrderCustomerEditDialog.1411666943":"","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.500287069":"","src.orders.components.OrderDraftCancelDialog.3199827590":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"","src.orders.components.OrderUnfulfilledItems.1895667608":"","src.orders.components.OrderDraftDetailsProducts.2796503714":"Antall","src.orders.components.OrderFulfillment.2796503714":"Antall","src.orders.components.OrderFulfillmentDialog.2796503714":"Antall","src.orders.components.OrderUnfulfilledItems.2796503714":"Antall","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"","src.orders.components.OrderPayment.781550514":"","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"","src.orders.components.OrderListPage.2826235371":"","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"","src.orders.components.OrderFulfillmentCancelDialog.732594284":"","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.2574162126":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"Ordre ble lagt inn","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2943502192":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"Frakt","src.productTypes.components.ProductTypeShipping.1325966144":"Frakt","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"Frakt","src.orders.components.OrderPayment.3768782744":"","src.orders.components.OrderPayment.2320183694":"","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"","src.orders.components.OrderPayment.2845258362":"","src.orders.components.OrderPayment.2444197639":"","src.orders.components.OrderPayment.3500506678":"","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.2775402904":"","src.products.components.ProductListPage.2775402904":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.3880993240":"","src.orders.views.1161115149":"","src.orders.views.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.755314116":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"","src.pages.components.PageList.1124600214":"","src.pages.components.PageInfo.1116746286":"","src.translations.components.TranslationsPagesPage.1116746286":"","src.pages.components.PageList.3478065224":"","src.pages.components.PageSlug.3478065224":"","src.productTypes.components.ProductTypeAttributes.3478065224":"","src.pages.components.PageList.3767550649":"","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.1767905232":"","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.3785394515":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"","src.products.components.ProductVariantImages.3240888698":"","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"","src.products.components.ProductVariantStock.3841616483":"","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListPage.821159718":"","src.products.components.ProductListPage.1421689426":"","src.products.components.ProductListPage.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"","prodictStockInventoryLabel":"","src.products.components.ProductVariantStock.3490038570":"","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"","src.products.components.ProductVariants.2153006789":"","src.products.components.ProductVariantNavigation.2845381934":"","src.products.components.ProductVariants.2845381934":"","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1542417144":"","src.products.views.1591632382":"","src.products.views.490753666":"","src.products.views.672103788":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.1694086800":"","src.products.views.ProductList.224127438":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.products.views.2178905289":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1756957616":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.889729490":"","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.4080551769":"","src.productTypes.views.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.352297149":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2474410767":"","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.254167659":"","src.shipping.views.ShippingZoneDetails.1790261672":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"","src.siteSettings.components.SiteSettingsKeys.2446088470":"","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.3490059488":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.3247064221":"","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.802625341":"","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"","src.staff.views.2240444792":"","src.staff.views.2728048444":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file +{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.3824684885":"","src.attributes.components.AttributeListPage.2417065806":"","src.attributes.components.AttributeListPage.3916653510":"","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.4048785456":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"","src.categories.components.CategoryProductList.636461959":"","src.components.ProductList.636461959":"","src.products.components.ProductList.636461959":"","src.collections.components.CollectionDetails.636461959":"","src.collections.components.CollectionProducts.636461959":"","src.products.components.ProductDetailsForm.636461959":"","src.discounts.components.SaleInfo.636461959":"","src.discounts.components.SaleList.636461959":"","src.discounts.components.SaleSummary.636461959":"","menuItemDialogNameLabel":"","src.plugins.components.PluginsList.636461959":"","src.products.components.ProductVariants.636461959":"","src.shipping.components.ShippingZoneRates.636461959":"","src.shipping.components.ShippingZonesList.636461959":"","src.staff.components.StaffList.636461959":"","src.translations.components.TranslationsEntitiesList.636461959":"","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.351422234":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.109182747":"","src.auth.components.LoginPage.4028609483":"","src.auth.components.NewPasswordPage.1915811227":"","src.auth.components.NewPasswordPage.1254879564":"","src.auth.components.NewPasswordPage.2799926859":"","src.auth.components.NewPasswordPage.4253911811":"","src.auth.components.NewPasswordPage.2342634351":"","src.auth.components.ResetPasswordPage.2370700732":"","src.auth.components.ResetPasswordPage.3663311080":"","src.auth.components.ResetPasswordSuccessPage.4066297200":"","src.auth.components.ResetPasswordSuccessPage.2245157344":"","src.auth.views.2388238158":"","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"","src.categories.views.2004894945":"","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.2159874182":"","src.categories.components.CategoryUpdatePage.2159874182":"","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.1140231710":"","src.categories.views.1140231710":"","src.categories.components.CategoryListPage.4294878092":"","src.categories.components.CategoryListPage.3841025483":"","src.translations.components.TranslationsEntitiesListPage.3841025483":"","src.categories.components.CategoryProductList.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductList.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProductList.3640454975":"","src.components.ProductList.3640454975":"","src.products.components.ProductList.3640454975":"","src.products.components.ProductListPage.3640454975":"","productStatusLabel":"","src.collections.components.CollectionList.3640454975":"","src.collections.components.CollectionProducts.3640454975":"","src.discounts.components.DiscountProducts.3640454975":"","src.pages.components.PageList.3640454975":"","src.products.views.ProductList.published":"","src.categories.components.CategoryProductList.1134347598":"","src.orders.components.OrderFulfillment.1134347598":"","src.products.components.ProductList.1134347598":"","src.products.components.ProductListPage.1134347598":"","src.products.components.ProductPricing.1134347598":"","src.components.ProductList.1134347598":"","src.orders.components.OrderDraftDetailsProducts.1134347598":"","src.orders.components.OrderUnfulfilledItems.1134347598":"","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"","src.shipping.components.ShippingZoneRates.1134347598":"","src.categories.components.CategoryProductList.2341910657":"","src.products.components.ProductList.2341910657":"","src.collections.components.CollectionList.2341910657":"","src.collections.components.CollectionProducts.2341910657":"","src.discounts.components.DiscountProducts.2341910657":"","src.components.ProductList.2341910657":"","src.categories.components.CategoryProductList.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.products.components.ProductList.1657559629":"","src.categories.components.CategoryProducts.4164156574":"","src.categories.components.CategoryProducts.3554578821":"","src.categories.components.CategoryUpdatePage.2968663655":"","src.discounts.components.DiscountCategories.2968663655":"","src.discounts.components.DiscountCollections.2968663655":"","src.products":"","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryUpdatePage.3229914152":"","src.categories.components.CategoryUpdatePage.770296100":"","src.categories.views.1754466114":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.CategoryList.3488150607":"","src.categories.views.712767046":"","src.categories.views.CategoryList.712767046":"","src.categories.views.299584400":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.categories.views.CategoryList.2144707585":"","src.collections.components.CollectionCreatePage.3958681866":"","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionCreatePage.2001551496":"","src.collections.components.CollectionDetailsPage.2001551496":"","src.pages.components.PageDetailsPage.2001551496":"","src.products.components.ProductCreatePage.2001551496":"","src.products.components.ProductUpdatePage.2001551496":"","src.collections.components.CollectionCreatePage.1815688500":"","src.collections.components.CollectionDetailsPage.1815688500":"","src.pages.components.PageDetailsPage.1815688500":"","src.products.components.ProductCreatePage.1815688500":"","src.products.components.ProductUpdatePage.1815688500":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"","src.availability":"","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionListPage.686910896":"","src.collections.views.686910896":"","src.collections.components.CollectionListPage.1631917001":"","src.collections.components.CollectionListPage.4057224233":"","src.components.AssignCollectionDialog.4057224233":"","src.translations.components.TranslationsEntitiesListPage.4057224233":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"","src.collections.views.2402899582":"","src.collections.views.CollectionList.2237014112":"","src.pages.views.2237014112":"","src.products.views.ProductList.2237014112":"","src.collections.views.CollectionList.1547167026":"","src.pages.views.1547167026":"","src.products.views.ProductList.1547167026":"","src.collections.views.CollectionList.2823425739":"","src.collections.views.CollectionList.1348793822":"","src.collections.views.CollectionList.2637364047":"","src.collections.views.CollectionList.3944356444":"","src.collections.views.CollectionList.3817188998":"","src.collections.views.CollectionList.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"","src.components.ErrorMessageCard.2845142593":"","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.Filter.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.Filter.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.FilterBar.2340527467":"","src.components.SearchBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"","src.pages.components.PageList.1459686496":"","src.products.components.ProductListFilter.1459686496":"","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"","src.products.views.ProductList.hidden":"","src.components.VisibilityCard.292404896":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","src.configuration.2326418019":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","src.configuration.3655543906":"","configurationMenuShipping":"","configurationMenuTaxes":"","src.configuration.3140151600":"","configurationMenuStaff":"","src.configuration.1233229030":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","configurationPluginsPages":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"","src.customers.components.CustomerAddresses.3517722732":"","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"Adresse","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"","src.orders.components.OrderCustomerNote.1520756907":"","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"","src.customers.components.CustomerDetails.577013340":"","src.customers.components.CustomerCreatePage.1934221653":"","src.customers.components.CustomerListPage.1934221653":"","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerListPage.477293306":"","src.customers.components.CustomerListPage.1643417013":"","src.customers.components.CustomerOrders.3878642352":"","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"","src.orders.components.OrderDraftList.4205493358":"","src.orders.components.OrderList.4205493358":"","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"","src.orders.components.OrderListFilter.1756106276":"","src.plugins.components.PluginInfo.1756106276":"","src.products.components.ProductListFilter.1756106276":"","src.products.components.ProductVariants.1756106276":"","src.customers.components.CustomerOrders.878013594":"","src.orders.components.OrderDraftDetailsProducts.878013594":"","src.orders.components.OrderDraftDetailsSummary.878013594":"","src.orders.components.OrderDraftList.878013594":"","src.orders.components.OrderFulfillment.878013594":"","src.orders.components.OrderUnfulfilledItems.878013594":"","src.orders.components.OrderList.878013594":"","src.orders.components.OrderPayment.878013594":"","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.CustomerList.1946482599":"","src.customers.views.CustomerList.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","src.discounts.components.SaleListPage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"","src.discounts.components.SaleSummary.1148029984":"","src.discounts.components.VoucherList.1148029984":"","src.discounts.components.VoucherSummary.1148029984":"","src.discounts.components.VoucherValue.1148029984":"","src.products.components.ProductAttributes.1148029984":"","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.3907768880":"","src.discounts.components.SaleListPage.1866913828":"","src.translations.components.TranslationsEntitiesListPage.1866913828":"","src.discounts.components.SalePricing.1099355007":"","src.products.components.ProductPricing.1099355007":"","src.products.components.ProductVariantPrice.1099355007":"","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"","src.discounts.components.VoucherSummary.78726751":"","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.614836274":"","src.discounts.components.VoucherListPage.1112241061":"","src.discounts.components.VoucherListPage.1930485532":"","src.translations.components.TranslationsEntitiesListPage.1930485532":"","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"","src.discounts.shipment":"","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.SaleList.2809303671":"","src.discounts.views.SaleList.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.VoucherList.367317371":"","src.discounts.views.VoucherList.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.somethingWentWrong":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"","src.orders.views.OrderList.3528672691":"","src.confirm":"","src.delete":"","src.edit":"","src.manage":"","src.remove":"","src.save":"","src.show":"","src.undo":"","src.attributes":"","src.products.components.ProductAttributes.4153345096":"","src.categories":"","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"","src.customers":"","src.draftOrders":"","src.home":"","src.navigation":"","src.orders":"","src.pages":"","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.plugins":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"","src.taxes.components.CountryListPage.3955023266":"","src.translations":"","src.vouchers":"","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"Betalt","src.partiallyPaid":"","src.partiallyRefunded":"","src.refunded":"","src.unpaid":"","src.cancelled":"Kansellert","src.draft":"","src.fulfilled":"","src.orders.views.OrderList.fulfilled":"","src.orders.components.OrderListFilter.1712863026":"","src.partiallyFulfilled":"","src.unfulfilled":"","src.orders.views.OrderList.unfulfilled":"","src.orders.components.OrderListFilter.1751787272":"","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"","src.orders.components.OrderDetailsPage.1854613983":"","src.orders.components.OrderDraftPage.1854613983":"","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"","src.orders.components.OrderCustomerEditDialog.1411666943":"","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.632633254":"","src.orders.components.OrderDraftCancelDialog.36681973":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"","src.orders.components.OrderUnfulfilledItems.1895667608":"","src.orders.components.OrderDraftDetailsProducts.2796503714":"Antall","src.orders.components.OrderFulfillment.2796503714":"Antall","src.orders.components.OrderFulfillmentDialog.2796503714":"Antall","src.orders.components.OrderUnfulfilledItems.2796503714":"Antall","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"","src.orders.components.OrderPayment.781550514":"","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"","src.orders.components.OrderListPage.2826235371":"","src.orders.components.OrderDraftListPage.551325728":"","src.orders.components.OrderDraftListPage.77765281":"","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"","src.orders.components.OrderFulfillmentCancelDialog.732594284":"","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.4067959693":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"Ordre ble lagt inn","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2415661583":"","src.orders.views.OrderList.readyToCapture":"","src.orders.components.OrderListFilter.2222765704":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"Frakt","src.productTypes.components.ProductTypeShipping.1325966144":"Frakt","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"Frakt","src.orders.components.OrderPayment.3768782744":"","src.orders.components.OrderPayment.2320183694":"","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"","src.orders.components.OrderPayment.2845258362":"","src.orders.components.OrderPayment.2444197639":"","src.orders.components.OrderPayment.3500506678":"","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.1542417144":"","src.products.components.ProductListPage.1542417144":"","src.products.views.1542417144":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.OrderDraftList.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.OrderDraftList.1648805446":"","src.orders.views.OrderDraftList.1161115149":"","src.orders.views.OrderDraftList.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.1068617485":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"","src.pages.components.PageList.1124600214":"","src.pages.components.PageInfo.1116746286":"","src.translations.components.TranslationsPagesPage.1116746286":"","src.pages.components.PageList.3478065224":"","src.pages.components.PageSlug.3478065224":"","src.productTypes.components.ProductTypeAttributes.3478065224":"","src.pages.components.PageList.3767550649":"","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.3785394515":"","src.pages.views.3785394515":"","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.plugins.components.PluginInfo.3425535100":"","src.plugins.components.PluginsDetailsPage.3425535100":"","src.plugins.components.PluginInfo.1049131348":"","src.plugins.components.PluginInfo.4013064767":"","src.plugins.components.PluginsDetailsPage.3352026836":"","src.plugins.components.PluginsDetailsPage.2277745418":"","src.plugins.components.PluginsDetailsPage.1970881031":"","src.plugins.components.PluginSettings.1970881031":"","src.plugins.components.PluginsDetailsPage.4241018152":"","src.plugins.components.PluginsList.3247064221":"","src.staff.components.StaffList.3247064221":"","src.plugins.components.PluginsList.4120604650":"","src.plugins.components.PluginsList.666641390":"","src.plugins.views.100549097":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"","src.products.components.ProductVariantImages.3240888698":"","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"","src.products.components.ProductVariantStock.3841616483":"","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListFilter.821159718":"","src.products.components.ProductListFilter.1421689426":"","src.products.components.ProductListFilter.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"","prodictStockInventoryLabel":"","src.products.components.ProductVariantStock.3490038570":"","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"","src.products.components.ProductVariants.2153006789":"","src.products.components.ProductVariantNavigation.2845381934":"","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.3989383405":"","src.products.views.3989383405":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1591632382":"","src.products.views.1731766393":"","src.products.views.2880386427":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1217376589":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.3479705616":"","src.productTypes.components.ProductTypeListPage.1776073799":"","src.productTypes.components.ProductTypeListPage.3420445375":"","src.translations.components.TranslationsEntitiesListPage.3420445375":"","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.ProductTypeList.4080551769":"","src.productTypes.views.ProductTypeList.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRates.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2673544109":"","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.1947090060":"","src.shipping.views.ShippingZoneDetails.131963671":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"","src.siteSettings.components.SiteSettingsKeys.2446088470":"","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.1481503299":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.797461521":"","src.staff.components.StaffListPage.2852350932":"","src.staff.components.StaffListPage.61043583":"","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"","src.staff.views.1308770978":"","src.staff.views.8878988":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.2105464697":"","src.translations.components.TranslationsEntitiesListPage.2559018090":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file diff --git a/locale/nb.po b/locale/nb.po index e1b40b4e5..f6f144a39 100644 --- a/locale/nb.po +++ b/locale/nb.po @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"POT-Creation-Date: 2019-09-06T13:56:36.897Z\n" +"POT-Creation-Date: 2019-09-16T15:25:09.340Z\n" "Last-Translator: Magnus Lund , 2019\n" "Language-Team: Norwegian Bokmål (https://www.transifex.com/mirumee/teams/34782/nb/)\n" "MIME-Version: 1.0\n" @@ -142,22 +142,6 @@ msgctxt "create new menu item, header" msgid "Add Item" msgstr "" -#. [menuCreateDialogHeader] - dialog header -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json -msgctxt "dialog header" -msgid "Add Menu" -msgstr "" - -#. [menuListPageAddMenu] - button -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json -msgctxt "button" -msgid "Add Menu" -msgstr "" - #. [src.siteSettings.components.SiteSettingsKeyDialog.1238948746] - dialog #. header #. defaultMessage is: @@ -167,14 +151,6 @@ msgctxt "dialog header" msgid "Add New Authorization Key" msgstr "" -#. [src.pages.components.PageDetailsPage.755314116] - page header -#. defaultMessage is: -#. Add Page -#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json -msgctxt "page header" -msgid "Add Page" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.2892088870] - dialog header #. defaultMessage is: #. Add Price Rate @@ -183,38 +159,6 @@ msgctxt "dialog header" msgid "Add Price Rate" msgstr "" -#. [src.orders.components.OrderProductAddDialog.2775402904] - dialog header -#. defaultMessage is: -#. Add Product -#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json -msgctxt "dialog header" -msgid "Add Product" -msgstr "" - -#. [src.products.components.ProductListPage.2775402904] - button -#. defaultMessage is: -#. Add Product -#: build/locale/src/products/components/ProductListPage/ProductListPage.json -msgctxt "button" -msgid "Add Product" -msgstr "" - -#. [src.discounts.components.SaleListPage.1742771332] - button -#. defaultMessage is: -#. Add Sale -#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json -msgctxt "button" -msgid "Add Sale" -msgstr "" - -#. [src.staff.components.StaffAddMemberDialog.3490059488] - dialog header -#. defaultMessage is: -#. Add Staff Member -#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json -msgctxt "dialog header" -msgid "Add Staff Member" -msgstr "" - #. [src.attributes.components.AttributeValueEditDialog.1841790893] - add #. attribute value #. defaultMessage is: @@ -224,14 +168,6 @@ msgctxt "add attribute value" msgid "Add Value" msgstr "" -#. [src.products.views.2178905289] - header -#. defaultMessage is: -#. Add Variant -#: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "header" -msgid "Add Variant" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.1397795758] - add weight #. based shipping method, dialog header #. defaultMessage is: @@ -249,14 +185,6 @@ msgctxt "button" msgid "Add address" msgstr "" -#. [src.attributes.components.AttributeListPage.350498821] - button -#. defaultMessage is: -#. Add attribute -#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json -msgctxt "button" -msgid "Add attribute" -msgstr "" - #. [src.siteSettings.components.SiteSettingsKeyDialog.50561933] - button #. defaultMessage is: #. Add authentication @@ -265,14 +193,6 @@ msgctxt "button" msgid "Add authentication" msgstr "" -#. [src.categories.components.CategoryListPage.228151782] - button -#. defaultMessage is: -#. Add category -#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json -msgctxt "button" -msgid "Add category" -msgstr "" - #. [src.collections.components.CollectionCreatePage.3958681866] - page header #. defaultMessage is: #. Add collection @@ -281,14 +201,6 @@ msgctxt "page header" msgid "Add collection" msgstr "" -#. [src.collections.components.CollectionListPage.3958681866] - button -#. defaultMessage is: -#. Add collection -#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json -msgctxt "button" -msgid "Add collection" -msgstr "" - #. [src.customers.components.CustomerCreatePage.1934221653] - page header #. defaultMessage is: #. Add customer @@ -321,14 +233,6 @@ msgctxt "button" msgid "Add key" msgstr "" -#. [menuItemsAddItem] - add new menu item -#. defaultMessage is: -#. Add new item -#: build/locale/src/navigation/components/MenuItems/MenuItems.json -msgctxt "add new menu item" -msgid "Add new item" -msgstr "" - #. [menuItemsPlaceholder] #. defaultMessage is: #. Add new menu item to begin creating menu @@ -363,14 +267,6 @@ msgctxt "button" msgid "Add or Edit Link" msgstr "" -#. [src.pages.components.PageListPage.1767905232] - button -#. defaultMessage is: -#. Add page -#: build/locale/src/pages/components/PageListPage/PageListPage.json -msgctxt "button" -msgid "Add page" -msgstr "" - #. [src.categories.components.CategoryProducts.3554578821] - button #. defaultMessage is: #. Add product @@ -379,14 +275,6 @@ msgctxt "button" msgid "Add product" msgstr "" -#. [src.productTypes.components.ProductTypeListPage.889729490] - button -#. defaultMessage is: -#. Add product type -#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json -msgctxt "button" -msgid "Add product type" -msgstr "" - #. [src.orders.components.OrderDraftDetails.2528459381] - button #. defaultMessage is: #. Add products @@ -395,14 +283,6 @@ msgctxt "button" msgid "Add products" msgstr "" -#. [src.shipping.components.ShippingZoneRates.352297149] - button -#. defaultMessage is: -#. Add rate -#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json -msgctxt "button" -msgid "Add rate" -msgstr "" - #. [src.categories.components.CategoryCreatePage.2563994280] #. defaultMessage is: #. Add search engine title and description to make this category easier to @@ -464,30 +344,6 @@ msgctxt "button" msgid "Add shipping carrier" msgstr "" -#. [src.shipping.components.ShippingZonesList.2474410767] - button -#. defaultMessage is: -#. Add shipping zone -#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json -msgctxt "button" -msgid "Add shipping zone" -msgstr "" - -#. [src.staff.components.StaffListPage.802625341] - button -#. defaultMessage is: -#. Add staff member -#: build/locale/src/staff/components/StaffListPage/StaffListPage.json -msgctxt "button" -msgid "Add staff member" -msgstr "" - -#. [src.categories.components.CategoryList.435697837] - button -#. defaultMessage is: -#. Add subcategory -#: build/locale/src/categories/components/CategoryList/CategoryList.json -msgctxt "button" -msgid "Add subcategory" -msgstr "" - #. [src.attributes.components.AttributeProperties.673770329] - add attribute #. as column in product list table #. defaultMessage is: @@ -515,35 +371,14 @@ msgctxt "dialog header" msgid "Add tracking code" msgstr "" -#. [src.attributes.components.AttributeValues.254756045] - add attribute value -#. button -#. defaultMessage is: -#. Add value -#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json -msgctxt "add attribute value button" -msgid "Add value" -msgstr "" - #. [src.products.components.ProductVariantNavigation.2845381934] - button #. defaultMessage is: #. Add variant -#. [src.products.components.ProductVariants.2845381934] - button -#. defaultMessage is: -#. Add variant #: build/locale/src/products/components/ProductVariantNavigation/ProductVariantNavigation.json -#: build/locale/src/products/components/ProductVariants/ProductVariants.json msgctxt "button" msgid "Add variant" msgstr "" -#. [src.discounts.components.VoucherListPage.1536809153] - button -#. defaultMessage is: -#. Add voucher -#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json -msgctxt "button" -msgid "Add voucher" -msgstr "" - #. [src.attributes.views.AttributeDetails.634268988] - added new attribute #. value #. defaultMessage is: @@ -601,14 +436,6 @@ msgctxt "description" msgid "Address line 2" msgstr "" -#. [src.customers.components.CustomerAddress.1320082647] - addres card header -#. defaultMessage is: -#. Address {addressNumber} -#: build/locale/src/customers/components/CustomerAddress/CustomerAddress.json -msgctxt "addres card header" -msgid "Address {addressNumber}" -msgstr "" - #. [src.attributes.components.AttributeValues.1565474525] - attribute values #. list: slug column header #. defaultMessage is: @@ -658,6 +485,46 @@ msgctxt "tax rate" msgid "Agricultural supplies" msgstr "" +#. [src.attributes.components.AttributeListPage.2417065806] - tab name +#. defaultMessage is: +#. All Attributes +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "tab name" +msgid "All Attributes" +msgstr "" + +#. [src.categories.components.CategoryListPage.4294878092] - tab name +#. defaultMessage is: +#. All Categories +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "tab name" +msgid "All Categories" +msgstr "" + +#. [src.collections.components.CollectionListPage.1631917001] - tab name +#. defaultMessage is: +#. All Collections +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "tab name" +msgid "All Collections" +msgstr "" + +#. [src.customers.components.CustomerListPage.477293306] - tab name +#. defaultMessage is: +#. All Customers +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "tab name" +msgid "All Customers" +msgstr "" + +#. [src.orders.components.OrderDraftListPage.551325728] - tab name +#. defaultMessage is: +#. All Drafts +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "tab name" +msgid "All Drafts" +msgstr "" + #. [src.orders.components.OrderListPage.875489544] - tab name #. defaultMessage is: #. All Orders @@ -675,22 +542,54 @@ msgctxt "section header" msgid "All Photos" msgstr "" -#. [src.products.components.ProductListPage.821159718] - tab name +#. [src.productTypes.components.ProductTypeListPage.1776073799] - tab name +#. defaultMessage is: +#. All Product Types +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "tab name" +msgid "All Product Types" +msgstr "" + +#. [src.products.components.ProductListFilter.821159718] - tab name #. defaultMessage is: #. All Products -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "tab name" msgid "All Products" msgstr "" -#. [src.categories.components.CategoryList.3229914152] - section header +#. [src.discounts.components.SaleListPage.3907768880] - tab name +#. defaultMessage is: +#. All Sales +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "tab name" +msgid "All Sales" +msgstr "" + +#. [src.staff.components.StaffListPage.2852350932] - tab name +#. defaultMessage is: +#. All Staff Members +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "tab name" +msgid "All Staff Members" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.3229914152] - section header #. defaultMessage is: #. All Subcategories -#: build/locale/src/categories/components/CategoryList/CategoryList.json +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json msgctxt "section header" msgid "All Subcategories" msgstr "" +#. [src.discounts.components.VoucherListPage.1112241061] - tab name +#. defaultMessage is: +#. All Vouchers +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "tab name" +msgid "All Vouchers" +msgstr "" + #. [src.taxes.components.TaxConfiguration.142803418] #. defaultMessage is: #. All products prices are entered with tax included @@ -798,6 +697,14 @@ msgctxt "description" msgid "Are you sure you want to delete collection's image?" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.36681973] +#. defaultMessage is: +#. Are you sure you want to delete draft #{number}? +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "description" +msgid "Are you sure you want to delete draft #{number}?" +msgstr "" + #. [menuDetailsDeleteMenuContent] #. defaultMessage is: #. Are you sure you want to delete menu {menuName}? @@ -814,6 +721,14 @@ msgctxt "description" msgid "Are you sure you want to delete this address from users address book?" msgstr "" +#. [src.products.views.2880386427] +#. defaultMessage is: +#. Are you sure you want to delete this image? +#: build/locale/src/products/views/ProductImage.json +msgctxt "description" +msgid "Are you sure you want to delete this image?" +msgstr "" + #. [src.attributes.components.AttributeDeleteDialog.3738429348] - dialog #. content #. defaultMessage is: @@ -864,12 +779,7 @@ msgstr "" #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this attribute} #. other{{displayQuantity} categories}}? -#. [src.categories.views.844574071] -#. defaultMessage is: -#. Are you sure you want to delete {counter,plural,one{this attribute} -#. other{{displayQuantity} categories}}? #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this attribute} " @@ -887,22 +797,33 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.2497542455] +#. [src.categories.views.CategoryList.2144707585] +#. defaultMessage is: +#. Are you sure you want to delete {counter,plural,one{this category} +#. other{{displayQuantity} categories}}? +#: build/locale/src/categories/views/CategoryList/CategoryList.json +msgctxt "description" +msgid "" +"Are you sure you want to delete {counter,plural,one{this category} " +"other{{displayQuantity} categories}}?" +msgstr "" + +#. [src.collections.views.CollectionList.2497542455] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this collection} " "other{{displayQuantity} collections}}?" msgstr "" -#. [src.customers.views.409347866] +#. [src.customers.views.CustomerList.409347866] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this customer} #. other{{displayQuantity} customers}}? -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this customer} " @@ -920,11 +841,11 @@ msgid "" "other{{displayQuantity} menus}}?" msgstr "" -#. [src.orders.views.1389231130] - dialog content +#. [src.orders.views.OrderDraftList.1389231130] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this order draft} #. other{{displayQuantity} orderDrafts}}? -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this order draft} " @@ -942,11 +863,11 @@ msgid "" "other{{displayQuantity} pages}}?" msgstr "" -#. [src.productTypes.views.2294091098] - dialog content +#. [src.productTypes.views.ProductTypeList.2294091098] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this product type} #. other{{displayQuantity} product types}}? -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this product type} " @@ -964,11 +885,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.discounts.views.2516361175] - dialog content +#. [src.discounts.views.SaleList.2516361175] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this sale} #. other{{displayQuantity} sales}}? -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this sale} " @@ -997,17 +918,33 @@ msgid "" "other{{displayQuantity} variants}}?" msgstr "" -#. [src.discounts.views.1791926983] - dialog content +#. [src.discounts.views.VoucherList.1791926983] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this voucher} #. other{{displayQuantity} vouchers}}? -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this voucher} " "other{{displayQuantity} vouchers}}?" msgstr "" +#. [src.shipping.views.ShippingZoneDetails.131963671] - unassign country +#. defaultMessage is: +#. Are you sure you want to delete {countryName} from this shipping zone? +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country" +msgid "Are you sure you want to delete {countryName} from this shipping zone?" +msgstr "" + +#. [src.staff.views.8878988] +#. defaultMessage is: +#. Are you sure you want to delete {email} from staff members? +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "description" +msgid "Are you sure you want to delete {email} from staff members?" +msgstr "" + #. [src.customers.views.1927691511] - delete customer, dialog content #. defaultMessage is: #. Are you sure you want to delete {email}? @@ -1122,11 +1059,11 @@ msgctxt "description" msgid "Are you sure you want to mark this order as paid?" msgstr "" -#. [src.collections.views.1348793822] +#. [src.collections.views.CollectionList.1348793822] #. defaultMessage is: #. Are you sure you want to publish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to publish {counter,plural,one{this collection} " @@ -1155,30 +1092,6 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.orders.components.OrderDraftCancelDialog.3199827590] -#. defaultMessage is: -#. Are you sure you want to remove draft #{number}? -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "description" -msgid "Are you sure you want to remove draft #{number}?" -msgstr "" - -#. [src.products.views.672103788] -#. defaultMessage is: -#. Are you sure you want to remove this image? -#: build/locale/src/products/views/ProductImage.json -msgctxt "description" -msgid "Are you sure you want to remove this image?" -msgstr "" - -#. [src.shipping.views.ShippingZoneDetails.1790261672] - unassign country -#. defaultMessage is: -#. Are you sure you want to remove {countryName} from this shipping zone? -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country" -msgid "Are you sure you want to remove {countryName} from this shipping zone?" -msgstr "" - #. [src.staff.views.3945766678] #. defaultMessage is: #. Are you sure you want to remove {email} avatar? @@ -1187,14 +1100,6 @@ msgctxt "description" msgid "Are you sure you want to remove {email} avatar?" msgstr "" -#. [src.staff.views.2728048444] -#. defaultMessage is: -#. Are you sure you want to remove {email} from staff members? -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "description" -msgid "Are you sure you want to remove {email} from staff members?" -msgstr "" - #. [src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450] #. defaultMessage is: #. Are you sure you want to unassign {attributeName} from {productTypeName}? @@ -1275,11 +1180,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.3944356444] +#. [src.collections.views.CollectionList.3944356444] #. defaultMessage is: #. Are you sure you want to unpublish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to unpublish {counter,plural,one{this collection} " @@ -1440,6 +1345,15 @@ msgctxt "button" msgid "Assign products" msgstr "" +#. [src.attributes.components.AttributeValues.351422234] - assign attribute +#. value button +#. defaultMessage is: +#. Assign value +#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json +msgctxt "assign attribute value button" +msgid "Assign value" +msgstr "" + #. [src.attributes.components.AttributeDetails.3605174225] - attribute's slug #. short code label #. defaultMessage is: @@ -1518,6 +1432,14 @@ msgctxt "product attributes, section header" msgid "Attributes" msgstr "" +#. [src.configuration.2326418019] +#. defaultMessage is: +#. Attributes and Product Typess +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Attributes and Product Typess" +msgstr "" + #. [src.attributes.views.AttributeList.3218248395] - deleted multiple #. attributes #. defaultMessage is: @@ -2301,6 +2223,22 @@ msgctxt "description" msgid "Country area" msgstr "" +#. [menuCreateDialogHeader] - dialog header +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json +msgctxt "dialog header" +msgid "Create Menu" +msgstr "" + +#. [menuListPageAddMenu] - button +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json +msgctxt "button" +msgid "Create Menu" +msgstr "" + #. [src.attributes.components.AttributePage.2855501559] - page title #. defaultMessage is: #. Create New Attribute @@ -2325,6 +2263,30 @@ msgctxt "header" msgid "Create New Shipping Zone" msgstr "" +#. [src.pages.components.PageDetailsPage.1068617485] - page header +#. defaultMessage is: +#. Create Page +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page header" +msgid "Create Page" +msgstr "" + +#. [src.orders.components.OrderProductAddDialog.1542417144] - dialog header +#. defaultMessage is: +#. Create Product +#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json +msgctxt "dialog header" +msgid "Create Product" +msgstr "" + +#. [src.products.components.ProductListPage.1542417144] - button +#. defaultMessage is: +#. Create Product +#: build/locale/src/products/components/ProductListPage/ProductListPage.json +msgctxt "button" +msgid "Create Product" +msgstr "" + #. [src.products.views.1542417144] - window title #. defaultMessage is: #. Create Product @@ -2357,11 +2319,19 @@ msgctxt "page header" msgid "Create Sale" msgstr "" -#. [src.products.views.2362587265] - window title +#. [src.discounts.components.SaleListPage.3866518732] - button +#. defaultMessage is: +#. Create Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "button" +msgid "Create Sale" +msgstr "" + +#. [src.products.views.2362587265] - header #. defaultMessage is: #. Create Variant #: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "window title" +msgctxt "header" msgid "Create Variant" msgstr "" @@ -2373,6 +2343,22 @@ msgctxt "page header" msgid "Create Voucher" msgstr "" +#. [src.attributes.components.AttributeListPage.3824684885] - button +#. defaultMessage is: +#. Create attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "button" +msgid "Create attribute" +msgstr "" + +#. [src.categories.components.CategoryListPage.1140231710] - button +#. defaultMessage is: +#. Create category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "button" +msgid "Create category" +msgstr "" + #. [src.categories.views.1140231710] - window title #. defaultMessage is: #. Create category @@ -2381,6 +2367,14 @@ msgctxt "window title" msgid "Create category" msgstr "" +#. [src.collections.components.CollectionListPage.686910896] - button +#. defaultMessage is: +#. Create collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "button" +msgid "Create collection" +msgstr "" + #. [src.collections.views.686910896] - window title #. defaultMessage is: #. Create collection @@ -2397,6 +2391,14 @@ msgctxt "window title" msgid "Create customer" msgstr "" +#. [menuItemsAddItem] - add new menu item +#. defaultMessage is: +#. Create new item +#: build/locale/src/navigation/components/MenuItems/MenuItems.json +msgctxt "add new menu item" +msgid "Create new item" +msgstr "" + #. [src.orders.components.OrderDraftListPage.2826235371] - button #. defaultMessage is: #. Create order @@ -2409,6 +2411,14 @@ msgctxt "button" msgid "Create order" msgstr "" +#. [src.pages.components.PageListPage.3785394515] - button +#. defaultMessage is: +#. Create page +#: build/locale/src/pages/components/PageListPage/PageListPage.json +msgctxt "button" +msgid "Create page" +msgstr "" + #. [src.pages.views.3785394515] - header #. defaultMessage is: #. Create page @@ -2420,11 +2430,55 @@ msgstr "" #. [src.shipping.components.ShippingZoneRateDialog.16061680] - button #. defaultMessage is: #. Create rate +#. [src.shipping.components.ShippingZoneRates.16061680] - button +#. defaultMessage is: +#. Create rate #: build/locale/src/shipping/components/ShippingZoneRateDialog/ShippingZoneRateDialog.json +#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json msgctxt "button" msgid "Create rate" msgstr "" +#. [src.shipping.components.ShippingZonesList.2673544109] - button +#. defaultMessage is: +#. Create shipping zone +#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json +msgctxt "button" +msgid "Create shipping zone" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.770296100] - button +#. defaultMessage is: +#. Create subcategory +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json +msgctxt "button" +msgid "Create subcategory" +msgstr "" + +#. [src.products.components.ProductVariants.3989383405] - button +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/components/ProductVariants/ProductVariants.json +msgctxt "button" +msgid "Create variant" +msgstr "" + +#. [src.products.views.3989383405] - window title +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/views/ProductVariantCreate.json +msgctxt "window title" +msgid "Create variant" +msgstr "" + +#. [src.discounts.components.VoucherListPage.614836274] - button +#. defaultMessage is: +#. Create voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "button" +msgid "Create voucher" +msgstr "" + #. [src.collections.views.1597339737] #. defaultMessage is: #. Created collection @@ -2471,7 +2525,11 @@ msgstr "" #. [src.components.FilterBar.2340527467] #. defaultMessage is: #. Custom Filter +#. [src.components.SearchBar.2340527467] +#. defaultMessage is: +#. Custom Filter #: build/locale/src/components/FilterBar/FilterBar.json +#: build/locale/src/components/SearchBar/SearchBar.json msgctxt "description" msgid "Custom Filter" msgstr "" @@ -2727,10 +2785,18 @@ msgctxt "dialog title" msgid "Delete Collection" msgstr "" -#. [src.orders.views.1161115149] - dialog header +#. [src.products.views.1731766393] - dialog header +#. defaultMessage is: +#. Delete Image +#: build/locale/src/products/views/ProductImage.json +msgctxt "dialog header" +msgid "Delete Image" +msgstr "" + +#. [src.orders.views.OrderDraftList.1161115149] - dialog header #. defaultMessage is: #. Delete Order Drafts -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog header" msgid "Delete Order Drafts" msgstr "" @@ -2768,10 +2834,10 @@ msgctxt "dialog header" msgid "Delete Product Type" msgstr "" -#. [src.productTypes.views.4080551769] - dialog header +#. [src.productTypes.views.ProductTypeList.4080551769] - dialog header #. defaultMessage is: #. Delete Product Types -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog header" msgid "Delete Product Types" msgstr "" @@ -2800,10 +2866,10 @@ msgctxt "dialog header" msgid "Delete Sale" msgstr "" -#. [src.discounts.views.2809303671] - dialog header +#. [src.discounts.views.SaleList.2809303671] - dialog header #. defaultMessage is: #. Delete Sales -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog header" msgid "Delete Sales" msgstr "" @@ -2817,9 +2883,13 @@ msgctxt "custom search delete, dialog header" msgid "Delete Search" msgstr "" +#. [src.components.Filter.2173195312] - button +#. defaultMessage is: +#. Delete Search #. [src.components.TableFilter.2173195312] - button #. defaultMessage is: #. Delete Search +#: build/locale/src/components/Filter/FilterSearch.json #: build/locale/src/components/TableFilter/FilterChips.json msgctxt "button" msgid "Delete Search" @@ -2886,10 +2956,10 @@ msgctxt "dialog header" msgid "Delete Voucher" msgstr "" -#. [src.discounts.views.367317371] - dialog header +#. [src.discounts.views.VoucherList.367317371] - dialog header #. defaultMessage is: #. Delete Vouchers -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog header" msgid "Delete Vouchers" msgstr "" @@ -2923,11 +2993,11 @@ msgstr "" #. [src.categories.views.712767046] - dialog title #. defaultMessage is: #. Delete categories -#. [src.categories.views.712767046] - dialog title +#. [src.categories.views.CategoryList.712767046] - dialog title #. defaultMessage is: #. Delete categories #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "dialog title" msgid "Delete categories" msgstr "" @@ -2944,10 +3014,10 @@ msgctxt "dialog title" msgid "Delete category" msgstr "" -#. [src.collections.views.3817188998] - dialog title +#. [src.collections.views.CollectionList.3817188998] - dialog title #. defaultMessage is: #. Delete collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Delete collections" msgstr "" @@ -2960,14 +3030,31 @@ msgctxt "dialog header" msgid "Delete customer" msgstr "" -#. [src.customers.views.1946482599] - dialog header +#. [src.customers.views.CustomerList.1946482599] - dialog header #. defaultMessage is: #. Delete customers -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "dialog header" msgid "Delete customers" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.632633254] - dialog header +#. defaultMessage is: +#. Delete draft order +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "dialog header" +msgid "Delete draft order" +msgstr "" + +#. [src.shipping.views.ShippingZoneDetails.1947090060] - unassign country, +#. dialog header +#. defaultMessage is: +#. Delete from shipping zone +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country, dialog header" +msgid "Delete from shipping zone" +msgstr "" + #. [src.collections.views.942133001] - dialog title #. defaultMessage is: #. Delete image @@ -3028,6 +3115,14 @@ msgctxt "description" msgid "Deleted collection" msgstr "" +#. [src.orders.views.OrderDraftList.1648805446] +#. defaultMessage is: +#. Deleted draft orders +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json +msgctxt "description" +msgid "Deleted draft orders" +msgstr "" + #. [menuListDeletedMenu] #. defaultMessage is: #. Deleted menu @@ -3627,14 +3722,6 @@ msgctxt "order history message" msgid "Fulfilled {quantity} items" msgstr "" -#. [src.orders.components.OrderListFilter.2943502192] - order -#. defaultMessage is: -#. Fulfillment Status -#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json -msgctxt "order" -msgid "Fulfillment Status" -msgstr "" - #. [src.orders.components.OrderHistory.3081292385] - order history message #. defaultMessage is: #. Fulfillment confirmation was sent to customer @@ -3791,12 +3878,12 @@ msgctxt "description" msgid "If empty, the preview shows what will be autogenerated." msgstr "" -#. [src.attributes.components.AttributeProperties.2519239682] +#. [src.attributes.components.AttributeProperties.4048785456] #. defaultMessage is: -#. If enable this attribute can be used as a column in product table. +#. If enabled this attribute can be used as a column in product table. #: build/locale/src/attributes/components/AttributeProperties/AttributeProperties.json msgctxt "description" -msgid "If enable this attribute can be used as a column in product table." +msgid "If enabled this attribute can be used as a column in product table." msgstr "" #. [src.attributes.components.AttributeProperties.787251583] @@ -3902,6 +3989,22 @@ msgctxt "product variant stock" msgid "Inventory" msgstr "" +#. [src.staff.components.StaffAddMemberDialog.1481503299] - dialog header +#. defaultMessage is: +#. Invite Staff Member +#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json +msgctxt "dialog header" +msgid "Invite Staff Member" +msgstr "" + +#. [src.staff.components.StaffListPage.797461521] - button +#. defaultMessage is: +#. Invite staff member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "button" +msgid "Invite staff member" +msgstr "" + #. [src.productTypes.components.ProductTypeShipping.2143413921] - switch #. button #. defaultMessage is: @@ -4254,6 +4357,14 @@ msgctxt "voucher requirement" msgid "Minimum quantity of items" msgstr "" +#. [src.configuration.1233229030] +#. defaultMessage is: +#. Miscellaneous +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Miscellaneous" +msgstr "" + #. [src.attributes.components.AttributeDetails.3334509011] - product attribute #. type #. defaultMessage is: @@ -5086,6 +5197,14 @@ msgctxt "description" msgid "Order History" msgstr "" +#. [src.orders.components.OrderListFilter.2222765704] +#. defaultMessage is: +#. Order Status +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +msgctxt "description" +msgid "Order Status" +msgstr "" + #. [src.orders.components.OrderHistory.1230178536] - order history message #. defaultMessage is: #. Order address was updated @@ -5102,13 +5221,13 @@ msgctxt "order history message" msgid "Order confirmation was sent to customer" msgstr "" -#. [src.orders.views.1872939752] +#. [src.orders.views.OrderDraftList.1872939752] #. defaultMessage is: #. Order draft succesfully created #. [src.orders.views.OrderList.1872939752] #. defaultMessage is: #. Order draft succesfully created -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json #: build/locale/src/orders/views/OrderList/OrderList.json msgctxt "description" msgid "Order draft succesfully created" @@ -5773,6 +5892,14 @@ msgctxt "description" msgid "Product Name" msgstr "" +#. [src.configuration.3655543906] +#. defaultMessage is: +#. Product Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Product Settings" +msgstr "" + #. [src.discounts.components.DiscountProducts.4257289053] #. defaultMessage is: #. Product Type @@ -5931,12 +6058,12 @@ msgctxt "order history message" msgid "Products were added to draft order" msgstr "" -#. [src.orders.components.OrderHistory.2574162126] - order history message +#. [src.orders.components.OrderHistory.4067959693] - order history message #. defaultMessage is: -#. Products were removed from draft order +#. Products were deleted from draft order #: build/locale/src/orders/components/OrderHistory/OrderHistory.json msgctxt "order history message" -msgid "Products were removed from draft order" +msgid "Products were deleted from draft order" msgstr "" #. [src.properties] @@ -5963,10 +6090,10 @@ msgctxt "description" msgid "Provided email address does not exist in our database." msgstr "" -#. [src.collections.views.1547167026] - publish collections +#. [src.collections.views.CollectionList.1547167026] - publish collections #. defaultMessage is: #. Publish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "publish collections" msgid "Publish" msgstr "" @@ -6003,10 +6130,10 @@ msgctxt "dialog header" msgid "Publish Products" msgstr "" -#. [src.collections.views.2823425739] - dialog title +#. [src.collections.views.CollectionList.2823425739] - dialog title #. defaultMessage is: #. Publish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Publish collections" msgstr "" @@ -6180,6 +6307,18 @@ msgctxt "shipping method price" msgid "Rate Price" msgstr "" +#. [src.orders.components.OrderListFilter.2415661583] - order status +#. defaultMessage is: +#. Ready to Capture +#. [src.orders.views.OrderList.readyToCapture] - order status +#. defaultMessage is: +#. Ready to Capture +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +#: build/locale/src/orders/views/OrderList/filters.json +msgctxt "order status" +msgid "Ready to Capture" +msgstr "" + #. [src.customers.components.CustomerOrders.3878642352] - section header #. defaultMessage is: #. Recent orders @@ -6228,22 +6367,14 @@ msgctxt "switch button" msgid "Release all stock allocated to this order" msgstr "" -#. [src.auth.components.LoginPage.3182284913] - login -#. defaultMessage is: -#. Remember me -#: build/locale/src/auth/components/LoginPage/LoginPage.json -msgctxt "login" -msgid "Remember me" -msgstr "" - #. [src.categories.views.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. -#. [src.categories.views.3488150607] +#. [src.categories.views.CategoryList.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "description" msgid "Remember this will also delete all products assigned to this category." msgstr "" @@ -6256,39 +6387,6 @@ msgctxt "button" msgid "Remove" msgstr "" -#. [src.products.views.490753666] - dialog header -#. defaultMessage is: -#. Remove Image -#: build/locale/src/products/views/ProductImage.json -msgctxt "dialog header" -msgid "Remove Image" -msgstr "" - -#. [src.orders.components.OrderDraftCancelDialog.500287069] - dialog header -#. defaultMessage is: -#. Remove draft order -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "dialog header" -msgid "Remove draft order" -msgstr "" - -#. [src.shipping.views.ShippingZoneDetails.254167659] - unassign country, -#. dialog header -#. defaultMessage is: -#. Remove from shipping zone -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country, dialog header" -msgid "Remove from shipping zone" -msgstr "" - -#. [src.orders.views.3880993240] -#. defaultMessage is: -#. Removed draft orders -#: build/locale/src/orders/views/OrderDraftList.json -msgctxt "description" -msgid "Removed draft orders" -msgstr "" - #. [src.pages.views.1457312643] #. defaultMessage is: #. Removed page @@ -6454,6 +6552,18 @@ msgctxt "button" msgid "Save" msgstr "" +#. [src.components.Filter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#. [src.components.TableFilter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#: build/locale/src/components/Filter/FilterSearch.json +#: build/locale/src/components/TableFilter/FilterChips.json +msgctxt "button" +msgid "Save Custom Search" +msgstr "" + #. [src.components.SaveFilterTabDialog.1514415736] - save filter tab, header #. defaultMessage is: #. Save Custom Search @@ -6462,14 +6572,6 @@ msgctxt "save filter tab, header" msgid "Save Custom Search" msgstr "" -#. [src.components.TableFilter.1514415736] - button -#. defaultMessage is: -#. Save Custom Search -#: build/locale/src/components/TableFilter/FilterChips.json -msgctxt "button" -msgid "Save Custom Search" -msgstr "" - #. [src.products.components.ProductVariantCreatePage.2853608829] - button #. defaultMessage is: #. Save variant @@ -6486,6 +6588,14 @@ msgctxt "description" msgid "Saved changes" msgstr "" +#. [src.attributes.components.AttributeListPage.3916653510] +#. defaultMessage is: +#. Search Attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "description" +msgid "Search Attribute" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.902296540] #. defaultMessage is: #. Search Attributes @@ -6502,10 +6612,30 @@ msgctxt "description" msgid "Search Categories" msgstr "" +#. [src.categories.components.CategoryListPage.3841025483] +#. defaultMessage is: +#. Search Category +#. [src.translations.components.TranslationsEntitiesListPage.3841025483] +#. defaultMessage is: +#. Search Category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Category" +msgstr "" + +#. [src.collections.components.CollectionListPage.4057224233] +#. defaultMessage is: +#. Search Collection #. [src.components.AssignCollectionDialog.4057224233] #. defaultMessage is: #. Search Collection +#. [src.translations.components.TranslationsEntitiesListPage.4057224233] +#. defaultMessage is: +#. Search Collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json #: build/locale/src/components/AssignCollectionDialog/AssignCollectionDialog.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json msgctxt "description" msgid "Search Collection" msgstr "" @@ -6518,6 +6648,14 @@ msgctxt "description" msgid "Search Countries" msgstr "" +#. [src.customers.components.CustomerListPage.1643417013] +#. defaultMessage is: +#. Search Customer +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "description" +msgid "Search Customer" +msgstr "" + #. [src.orders.components.OrderCustomer.2433460203] #. defaultMessage is: #. Search Customers @@ -6526,6 +6664,14 @@ msgctxt "description" msgid "Search Customers" msgstr "" +#. [src.orders.components.OrderDraftListPage.77765281] +#. defaultMessage is: +#. Search Draft +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "description" +msgid "Search Draft" +msgstr "" + #. [src.translations.components.TranslationsCategoriesPage.1406947243] #. defaultMessage is: #. Search Engine Description @@ -6606,6 +6752,34 @@ msgctxt "description" msgid "Search Orders..." msgstr "" +#. [src.translations.components.TranslationsEntitiesListPage.2559018090] +#. defaultMessage is: +#. Search Page +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Page" +msgstr "" + +#. [src.translations.components.TranslationsEntitiesListPage.2105464697] +#. defaultMessage is: +#. Search Product +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product" +msgstr "" + +#. [src.productTypes.components.ProductTypeListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#. [src.translations.components.TranslationsEntitiesListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product Type" +msgstr "" + #. [src.components.AssignProductDialog.2850255786] #. defaultMessage is: #. Search Products @@ -6618,14 +6792,46 @@ msgctxt "description" msgid "Search Products" msgstr "" -#. [src.products.components.ProductListPage.3550330425] +#. [src.products.components.ProductListFilter.3550330425] #. defaultMessage is: #. Search Products... -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Search Products..." msgstr "" +#. [src.discounts.components.SaleListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#. [src.translations.components.TranslationsEntitiesListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Sale" +msgstr "" + +#. [src.staff.components.StaffListPage.61043583] +#. defaultMessage is: +#. Search Staff Member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "description" +msgid "Search Staff Member" +msgstr "" + +#. [src.discounts.components.VoucherListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#. [src.translations.components.TranslationsEntitiesListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Voucher" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.524117994] #. defaultMessage is: #. Search by attribute name @@ -6732,10 +6938,10 @@ msgctxt "description" msgid "Select all orders where:" msgstr "" -#. [src.products.components.ProductListPage.1421689426] +#. [src.products.components.ProductListFilter.1421689426] #. defaultMessage is: #. Select all products where: -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Select all products where:" msgstr "" @@ -6821,6 +7027,14 @@ msgctxt "description" msgid "Set plugin as Active" msgstr "" +#. [src.components.VisibilityCard.292404896] +#. defaultMessage is: +#. Set publication date +#: build/locale/src/components/VisibilityCard/VisibilityCard.json +msgctxt "description" +msgid "Set publication date" +msgstr "" + #. [src.discounts.shipment] - voucher discount #. defaultMessage is: #. Shipment @@ -7086,6 +7300,14 @@ msgctxt "staff section name" msgid "Staff Members" msgstr "" +#. [src.configuration.3140151600] +#. defaultMessage is: +#. Staff Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Staff Settings" +msgstr "" + #. [src.standard] - tax rate #. defaultMessage is: #. Standard @@ -8070,10 +8292,10 @@ msgctxt "payment status" msgid "Unpaid" msgstr "" -#. [src.collections.views.2237014112] - unpublish collections +#. [src.collections.views.CollectionList.2237014112] - unpublish collections #. defaultMessage is: #. Unpublish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "unpublish collections" msgid "Unpublish" msgstr "" @@ -8110,10 +8332,10 @@ msgctxt "dialog header" msgid "Unpublish Products" msgstr "" -#. [src.collections.views.2637364047] - dialog title +#. [src.collections.views.CollectionList.2637364047] - dialog title #. defaultMessage is: #. Unpublish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Unpublish collections" msgstr "" @@ -8613,6 +8835,22 @@ msgctxt "description" msgid "ZIP / Postal code" msgstr "" +#. [src.productTypes.components.ProductTypeListPage.3479705616] - button +#. defaultMessage is: +#. create product type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "button" +msgid "create product type" +msgstr "" + +#. [src.staff.views.1308770978] - dialog header +#. defaultMessage is: +#. delete Staff User +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "dialog header" +msgid "delete Staff User" +msgstr "" + #. [orderPaymentVATDoesNotApply] - vat not included in order price #. defaultMessage is: #. does not apply @@ -8686,19 +8924,35 @@ msgctxt "product status is set as" msgid "is set as" msgstr "" -#. [src.staff.views.2240444792] - dialog header -#. defaultMessage is: -#. remove Staff User -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "dialog header" -msgid "remove Staff User" -msgstr "" - -#. [src.components.VisibilityCard.1815688500] +#. [src.collections.components.CollectionCreatePage.1815688500] - collection #. defaultMessage is: #. since {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.1815688500] - collection +#. defaultMessage is: +#. since {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "since {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.1815688500] - page +#. defaultMessage is: +#. since {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "since {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#. [src.products.components.ProductUpdatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "since {date}" msgstr "" @@ -8726,11 +8980,35 @@ msgctxt "weight" msgid "to {value} {unit}" msgstr "" -#. [src.components.VisibilityCard.2001551496] +#. [src.collections.components.CollectionCreatePage.2001551496] - collection #. defaultMessage is: #. will be visible from {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.2001551496] - collection +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "will be visible from {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.2001551496] - page +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "will be visible from {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#. [src.products.components.ProductUpdatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "will be visible from {date}" msgstr "" diff --git a/locale/nl.json b/locale/nl.json index 6f2461965..cf7aacc4c 100644 --- a/locale/nl.json +++ b/locale/nl.json @@ -1 +1 @@ -{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.350498821":"Voeg eigenschap toe","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.2519239682":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"Naam","src.categories.components.CategoryProducts.636461959":"Naam","src.collections.components.CollectionProducts.636461959":"Naam","src.products.components.ProductDetailsForm.636461959":"Naam","src.collections.components.CollectionDetails.636461959":"Naam","src.components.ProductList.636461959":"Naam","src.discounts.components.SaleInfo.636461959":"Naam","src.discounts.components.SaleList.636461959":"Naam","src.discounts.components.SaleSummary.636461959":"Naam","menuItemDialogNameLabel":"Naam","src.products.components.ProductVariants.636461959":"Naam","src.shipping.components.ShippingZoneRates.636461959":"Naam","src.shipping.components.ShippingZonesList.636461959":"Naam","src.staff.components.StaffList.636461959":"Naam","src.translations.components.TranslationsEntitiesList.636461959":"Naam","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.254756045":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.3182284913":"","src.auth.components.LoginPage.109182747":"Login","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"","src.categories.views.2004894945":"","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.3229914152":"","src.categories.components.CategoryList.435697837":"","src.categories.components.CategoryList.2159874182":"","src.categories.components.CategoryUpdatePage.2159874182":"","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.228151782":"Voeg categorie toe","src.categories.components.CategoryProducts.2968663655":"Producten","src.categories.components.CategoryUpdatePage.2968663655":"Producten","src.discounts.components.DiscountCategories.2968663655":"Producten","src.discounts.components.DiscountCollections.2968663655":"Producten","src.products":"Producten","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryProducts.3554578821":"Voeg product toe","src.categories.components.CategoryProductsCard.3554578821":"Voeg product toe","src.categories.components.CategoryProducts.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProducts.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.categories.components.CategoryProductsCard.4164156574":"","src.categories.views.1754466114":"","src.categories.views.1140231710":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.712767046":"","src.categories.views.299584400":"","src.categories.views.844574071":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.collections.components.CollectionCreatePage.3958681866":"","src.collections.components.CollectionListPage.3958681866":"","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"","src.availability":"","src.collections.components.CollectionList.3640454975":"Gepubliceerd","src.collections.components.CollectionProducts.3640454975":"Gepubliceerd","src.discounts.components.DiscountProducts.3640454975":"Gepubliceerd","src.components.ProductList.3640454975":"Gepubliceerd","src.products.components.ProductListPage.3640454975":"Gepubliceerd","src.pages.components.PageList.3640454975":"Gepubliceerd","src.products.views.ProductList.published":"Gepubliceerd","src.collections.components.CollectionList.2341910657":"Niet gepubliceerd","src.collections.components.CollectionProducts.2341910657":"Niet gepubliceerd","src.discounts.components.DiscountProducts.2341910657":"Niet gepubliceerd","src.components.ProductList.2341910657":"Niet gepubliceerd","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.686910896":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"","src.collections.views.2402899582":"","src.collections.views.2237014112":"","src.pages.views.2237014112":"","src.products.views.ProductList.2237014112":"","src.collections.views.1547167026":"","src.pages.views.1547167026":"","src.products.views.ProductList.1547167026":"","src.collections.views.2823425739":"","src.collections.views.1348793822":"","src.collections.views.2637364047":"","src.collections.views.3944356444":"","src.collections.views.3817188998":"","src.collections.views.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"Uitloggen","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.4057224233":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"","src.components.ErrorMessageCard.2845142593":"","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.FilterBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"Voeg toe","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.ProductList.1134347598":"Prijs","src.orders.components.OrderDraftDetailsProducts.1134347598":"Prijs","src.orders.components.OrderFulfillment.1134347598":"Prijs","src.products.components.ProductListPage.1134347598":"Prijs","src.products.components.ProductPricing.1134347598":"Prijs","src.orders.components.OrderUnfulfilledItems.1134347598":"Prijs","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"Prijs","src.shipping.components.ShippingZoneRates.1134347598":"Prijs","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"","src.pages.components.PageList.1459686496":"","src.products.components.ProductListFilter.1459686496":"","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"","src.products.views.ProductList.hidden":"","src.components.VisibilityCard.1815688500":"","src.components.VisibilityCard.2001551496":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","configurationMenuStaff":"","configurationMenuShipping":"","configurationMenuTaxes":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","src.customers.components.CustomerAddress.1320082647":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"Factuuradres","src.customers.components.CustomerAddresses.3517722732":"Verzendadres","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"Adres","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"","src.orders.components.OrderCustomerNote.1520756907":"","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"Aantekening","src.customers.components.CustomerDetails.577013340":"Aantekening","src.customers.components.CustomerCreatePage.1934221653":"","src.customers.components.CustomerListPage.1934221653":"","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerOrders.3878642352":"","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"Datum","src.orders.components.OrderDraftList.4205493358":"Datum","src.orders.components.OrderList.4205493358":"Datum","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"Status","src.orders.components.OrderListFilter.1756106276":"Status","src.products.components.ProductListFilter.1756106276":"Status","src.products.components.ProductVariants.1756106276":"Status","src.customers.components.CustomerOrders.878013594":"Totaal","src.orders.components.OrderDraftDetailsProducts.878013594":"Totaal","src.orders.components.OrderDraftDetailsSummary.878013594":"Totaal","src.orders.components.OrderDraftList.878013594":"Totaal","src.orders.components.OrderFulfillment.878013594":"Totaal","src.orders.components.OrderUnfulfilledItems.878013594":"Totaal","src.orders.components.OrderList.878013594":"Totaal","src.orders.components.OrderPayment.878013594":"Totaal","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"Verwijder adres","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.1946482599":"","src.customers.views.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"","src.discounts.components.SaleSummary.1148029984":"","src.discounts.components.VoucherList.1148029984":"","src.discounts.components.VoucherSummary.1148029984":"","src.discounts.components.VoucherValue.1148029984":"","src.products.components.ProductAttributes.1148029984":"","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.1742771332":"","src.discounts.components.SalePricing.1099355007":"","src.products.components.ProductPricing.1099355007":"","src.products.components.ProductVariantPrice.1099355007":"","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"Landen","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"","src.discounts.components.VoucherSummary.78726751":"","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.1536809153":"Voeg voucher toe","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"","src.discounts.shipment":"","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.2809303671":"","src.discounts.views.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.367317371":"","src.discounts.views.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"Annuleer","src.orders.views.OrderList.3528672691":"Annuleer","src.confirm":"","src.delete":"Verwijder","src.edit":"Bewerken","src.manage":"","src.remove":"Verwijder","src.save":"Bewaar","src.show":"","src.undo":"","src.attributes":"Eigenschappen","src.products.components.ProductAttributes.4153345096":"Eigenschappen","src.categories":"Categorieën","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"Configuratie","src.customers":"Klanten","src.draftOrders":"","src.home":"Home","src.navigation":"","src.orders":"Bestellingen","src.pages":"","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"Verkopen","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"","src.taxes.components.CountryListPage.3955023266":"","src.translations":"","src.vouchers":"Vouchers","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"Volledig betaald","src.partiallyPaid":"","src.partiallyRefunded":"","src.refunded":"","src.unpaid":"","src.cancelled":"Geannuleerd","src.draft":"Conceptversie","src.fulfilled":"","src.orders.views.OrderList.fulfilled":"","src.orders.components.OrderListFilter.1712863026":"","src.partiallyFulfilled":"","src.unfulfilled":"","src.orders.views.OrderList.unfulfilled":"","src.orders.components.OrderListFilter.1751787272":"","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","src.1395232177":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"","src.orders.components.OrderDetailsPage.1854613983":"","src.orders.components.OrderDraftPage.1854613983":"","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"Klant","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"Klant","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"","src.orders.components.OrderCustomerEditDialog.1411666943":"","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.500287069":"","src.orders.components.OrderDraftCancelDialog.3199827590":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"Product","src.orders.components.OrderUnfulfilledItems.1895667608":"Product","src.orders.components.OrderDraftDetailsProducts.2796503714":"Hoeveelheid","src.orders.components.OrderFulfillment.2796503714":"Hoeveelheid","src.orders.components.OrderFulfillmentDialog.2796503714":"Hoeveelheid","src.orders.components.OrderUnfulfilledItems.2796503714":"Hoeveelheid","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"Subtotaal","src.orders.components.OrderPayment.781550514":"Subtotaal","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"","src.orders.components.OrderListPage.2826235371":"","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"","src.orders.components.OrderFulfillmentCancelDialog.732594284":"","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"SKU","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.2574162126":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"Betaling","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2943502192":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"Verzending","src.productTypes.components.ProductTypeShipping.1325966144":"Verzending","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"Verzending","src.orders.components.OrderPayment.3768782744":"Vooraf goedgekeurd bedrag","src.orders.components.OrderPayment.2320183694":"Geïncasseerd bedrag","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"Incassering","src.orders.components.OrderPayment.2845258362":"Terugbetaling","src.orders.components.OrderPayment.2444197639":"","src.orders.components.OrderPayment.3500506678":"","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"Bedrag","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.2775402904":"","src.products.components.ProductListPage.2775402904":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.3880993240":"","src.orders.views.1161115149":"","src.orders.views.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.755314116":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"","src.pages.components.PageList.1124600214":"","src.pages.components.PageInfo.1116746286":"","src.translations.components.TranslationsPagesPage.1116746286":"","src.pages.components.PageList.3478065224":"","src.pages.components.PageSlug.3478065224":"","src.productTypes.components.ProductTypeAttributes.3478065224":"","src.pages.components.PageList.3767550649":"","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.1767905232":"","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.3785394515":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"Afbeedlingen","src.products.components.ProductVariantImages.3240888698":"Afbeedlingen","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"Voorraad","src.products.components.ProductVariantStock.3841616483":"Voorraad","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListPage.821159718":"","src.products.components.ProductListPage.1421689426":"","src.products.components.ProductListPage.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"","prodictStockInventoryLabel":"","src.products.components.ProductVariantStock.3490038570":"","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"Verwijder productversie","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"Varianten","src.products.components.ProductVariants.2153006789":"Varianten","src.products.components.ProductVariantNavigation.2845381934":"Voeg productversie toe","src.products.components.ProductVariants.2845381934":"Voeg productversie toe","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1542417144":"","src.products.views.1591632382":"","src.products.views.490753666":"","src.products.views.672103788":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.1694086800":"","src.products.views.ProductList.224127438":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.products.views.2178905289":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1756957616":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.889729490":"Voeg productsoort toe","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.4080551769":"","src.productTypes.views.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.352297149":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2474410767":"","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.254167659":"","src.shipping.views.ShippingZoneDetails.1790261672":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"","src.siteSettings.components.SiteSettingsKeys.2446088470":"","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.3490059488":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.3247064221":"Actief","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.802625341":"","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"","src.staff.views.2240444792":"","src.staff.views.2728048444":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file +{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.3824684885":"","src.attributes.components.AttributeListPage.2417065806":"","src.attributes.components.AttributeListPage.3916653510":"","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.4048785456":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"Naam","src.categories.components.CategoryProductList.636461959":"Naam","src.components.ProductList.636461959":"Naam","src.products.components.ProductList.636461959":"Naam","src.collections.components.CollectionDetails.636461959":"Naam","src.collections.components.CollectionProducts.636461959":"Naam","src.products.components.ProductDetailsForm.636461959":"Naam","src.discounts.components.SaleInfo.636461959":"Naam","src.discounts.components.SaleList.636461959":"Naam","src.discounts.components.SaleSummary.636461959":"Naam","menuItemDialogNameLabel":"Naam","src.plugins.components.PluginsList.636461959":"Naam","src.products.components.ProductVariants.636461959":"Naam","src.shipping.components.ShippingZoneRates.636461959":"Naam","src.shipping.components.ShippingZonesList.636461959":"Naam","src.staff.components.StaffList.636461959":"Naam","src.translations.components.TranslationsEntitiesList.636461959":"Naam","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.351422234":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.109182747":"Login","src.auth.components.LoginPage.4028609483":"","src.auth.components.NewPasswordPage.1915811227":"","src.auth.components.NewPasswordPage.1254879564":"","src.auth.components.NewPasswordPage.2799926859":"","src.auth.components.NewPasswordPage.4253911811":"","src.auth.components.NewPasswordPage.2342634351":"","src.auth.components.ResetPasswordPage.2370700732":"","src.auth.components.ResetPasswordPage.3663311080":"","src.auth.components.ResetPasswordSuccessPage.4066297200":"","src.auth.components.ResetPasswordSuccessPage.2245157344":"","src.auth.views.2388238158":"","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"","src.categories.views.2004894945":"","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.2159874182":"","src.categories.components.CategoryUpdatePage.2159874182":"","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.1140231710":"","src.categories.views.1140231710":"","src.categories.components.CategoryListPage.4294878092":"","src.categories.components.CategoryListPage.3841025483":"","src.translations.components.TranslationsEntitiesListPage.3841025483":"","src.categories.components.CategoryProductList.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductList.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProductList.3640454975":"Gepubliceerd","src.components.ProductList.3640454975":"Gepubliceerd","src.products.components.ProductList.3640454975":"Gepubliceerd","src.products.components.ProductListPage.3640454975":"Gepubliceerd","productStatusLabel":"Gepubliceerd","src.collections.components.CollectionList.3640454975":"Gepubliceerd","src.collections.components.CollectionProducts.3640454975":"Gepubliceerd","src.discounts.components.DiscountProducts.3640454975":"Gepubliceerd","src.pages.components.PageList.3640454975":"Gepubliceerd","src.products.views.ProductList.published":"Gepubliceerd","src.categories.components.CategoryProductList.1134347598":"Prijs","src.orders.components.OrderFulfillment.1134347598":"Prijs","src.products.components.ProductList.1134347598":"Prijs","src.products.components.ProductListPage.1134347598":"Prijs","src.products.components.ProductPricing.1134347598":"Prijs","src.components.ProductList.1134347598":"Prijs","src.orders.components.OrderDraftDetailsProducts.1134347598":"Prijs","src.orders.components.OrderUnfulfilledItems.1134347598":"Prijs","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"Prijs","src.shipping.components.ShippingZoneRates.1134347598":"Prijs","src.categories.components.CategoryProductList.2341910657":"Niet gepubliceerd","src.products.components.ProductList.2341910657":"Niet gepubliceerd","src.collections.components.CollectionList.2341910657":"Niet gepubliceerd","src.collections.components.CollectionProducts.2341910657":"Niet gepubliceerd","src.discounts.components.DiscountProducts.2341910657":"Niet gepubliceerd","src.components.ProductList.2341910657":"Niet gepubliceerd","src.categories.components.CategoryProductList.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.products.components.ProductList.1657559629":"","src.categories.components.CategoryProducts.4164156574":"","src.categories.components.CategoryProducts.3554578821":"Voeg product toe","src.categories.components.CategoryUpdatePage.2968663655":"Producten","src.discounts.components.DiscountCategories.2968663655":"Producten","src.discounts.components.DiscountCollections.2968663655":"Producten","src.products":"Producten","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryUpdatePage.3229914152":"","src.categories.components.CategoryUpdatePage.770296100":"","src.categories.views.1754466114":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.CategoryList.3488150607":"","src.categories.views.712767046":"","src.categories.views.CategoryList.712767046":"","src.categories.views.299584400":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.categories.views.CategoryList.2144707585":"","src.collections.components.CollectionCreatePage.3958681866":"","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionCreatePage.2001551496":"","src.collections.components.CollectionDetailsPage.2001551496":"","src.pages.components.PageDetailsPage.2001551496":"","src.products.components.ProductCreatePage.2001551496":"","src.products.components.ProductUpdatePage.2001551496":"","src.collections.components.CollectionCreatePage.1815688500":"","src.collections.components.CollectionDetailsPage.1815688500":"","src.pages.components.PageDetailsPage.1815688500":"","src.products.components.ProductCreatePage.1815688500":"","src.products.components.ProductUpdatePage.1815688500":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"","src.availability":"","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionListPage.686910896":"","src.collections.views.686910896":"","src.collections.components.CollectionListPage.1631917001":"","src.collections.components.CollectionListPage.4057224233":"","src.components.AssignCollectionDialog.4057224233":"","src.translations.components.TranslationsEntitiesListPage.4057224233":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"","src.collections.views.2402899582":"","src.collections.views.CollectionList.2237014112":"","src.pages.views.2237014112":"","src.products.views.ProductList.2237014112":"","src.collections.views.CollectionList.1547167026":"","src.pages.views.1547167026":"","src.products.views.ProductList.1547167026":"","src.collections.views.CollectionList.2823425739":"","src.collections.views.CollectionList.1348793822":"","src.collections.views.CollectionList.2637364047":"","src.collections.views.CollectionList.3944356444":"","src.collections.views.CollectionList.3817188998":"","src.collections.views.CollectionList.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"Uitloggen","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"","src.components.ErrorMessageCard.2845142593":"","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.Filter.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.Filter.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.FilterBar.2340527467":"","src.components.SearchBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"Voeg toe","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"","src.pages.components.PageList.1459686496":"","src.products.components.ProductListFilter.1459686496":"","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"","src.products.views.ProductList.hidden":"","src.components.VisibilityCard.292404896":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","src.configuration.2326418019":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","src.configuration.3655543906":"","configurationMenuShipping":"","configurationMenuTaxes":"","src.configuration.3140151600":"","configurationMenuStaff":"","src.configuration.1233229030":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","configurationPluginsPages":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"Factuuradres","src.customers.components.CustomerAddresses.3517722732":"Verzendadres","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"Adres","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"","src.orders.components.OrderCustomerNote.1520756907":"","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"Aantekening","src.customers.components.CustomerDetails.577013340":"Aantekening","src.customers.components.CustomerCreatePage.1934221653":"","src.customers.components.CustomerListPage.1934221653":"","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerListPage.477293306":"","src.customers.components.CustomerListPage.1643417013":"","src.customers.components.CustomerOrders.3878642352":"","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"Datum","src.orders.components.OrderDraftList.4205493358":"Datum","src.orders.components.OrderList.4205493358":"Datum","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"Status","src.orders.components.OrderListFilter.1756106276":"Status","src.plugins.components.PluginInfo.1756106276":"Status","src.products.components.ProductListFilter.1756106276":"Status","src.products.components.ProductVariants.1756106276":"Status","src.customers.components.CustomerOrders.878013594":"Totaal","src.orders.components.OrderDraftDetailsProducts.878013594":"Totaal","src.orders.components.OrderDraftDetailsSummary.878013594":"Totaal","src.orders.components.OrderDraftList.878013594":"Totaal","src.orders.components.OrderFulfillment.878013594":"Totaal","src.orders.components.OrderUnfulfilledItems.878013594":"Totaal","src.orders.components.OrderList.878013594":"Totaal","src.orders.components.OrderPayment.878013594":"Totaal","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"Verwijder adres","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.CustomerList.1946482599":"","src.customers.views.CustomerList.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","src.discounts.components.SaleListPage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"","src.discounts.components.SaleSummary.1148029984":"","src.discounts.components.VoucherList.1148029984":"","src.discounts.components.VoucherSummary.1148029984":"","src.discounts.components.VoucherValue.1148029984":"","src.products.components.ProductAttributes.1148029984":"","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.3907768880":"","src.discounts.components.SaleListPage.1866913828":"","src.translations.components.TranslationsEntitiesListPage.1866913828":"","src.discounts.components.SalePricing.1099355007":"","src.products.components.ProductPricing.1099355007":"","src.products.components.ProductVariantPrice.1099355007":"","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"Landen","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"","src.discounts.components.VoucherSummary.78726751":"","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.614836274":"","src.discounts.components.VoucherListPage.1112241061":"","src.discounts.components.VoucherListPage.1930485532":"","src.translations.components.TranslationsEntitiesListPage.1930485532":"","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"","src.discounts.shipment":"","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.SaleList.2809303671":"","src.discounts.views.SaleList.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.VoucherList.367317371":"","src.discounts.views.VoucherList.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.somethingWentWrong":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"Annuleer","src.orders.views.OrderList.3528672691":"Annuleer","src.confirm":"","src.delete":"Verwijder","src.edit":"Bewerken","src.manage":"","src.remove":"Verwijder","src.save":"Bewaar","src.show":"","src.undo":"","src.attributes":"Eigenschappen","src.products.components.ProductAttributes.4153345096":"Eigenschappen","src.categories":"Categorieën","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"Configuratie","src.customers":"Klanten","src.draftOrders":"","src.home":"Home","src.navigation":"","src.orders":"Bestellingen","src.pages":"","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.plugins":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"Verkopen","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"","src.taxes.components.CountryListPage.3955023266":"","src.translations":"","src.vouchers":"Vouchers","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"Volledig betaald","src.partiallyPaid":"","src.partiallyRefunded":"","src.refunded":"","src.unpaid":"","src.cancelled":"Geannuleerd","src.draft":"Conceptversie","src.fulfilled":"","src.orders.views.OrderList.fulfilled":"","src.orders.components.OrderListFilter.1712863026":"","src.partiallyFulfilled":"","src.unfulfilled":"","src.orders.views.OrderList.unfulfilled":"","src.orders.components.OrderListFilter.1751787272":"","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"","src.orders.components.OrderDetailsPage.1854613983":"","src.orders.components.OrderDraftPage.1854613983":"","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"Klant","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"Klant","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"","src.orders.components.OrderCustomerEditDialog.1411666943":"","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.632633254":"","src.orders.components.OrderDraftCancelDialog.36681973":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"Product","src.orders.components.OrderUnfulfilledItems.1895667608":"Product","src.orders.components.OrderDraftDetailsProducts.2796503714":"Hoeveelheid","src.orders.components.OrderFulfillment.2796503714":"Hoeveelheid","src.orders.components.OrderFulfillmentDialog.2796503714":"Hoeveelheid","src.orders.components.OrderUnfulfilledItems.2796503714":"Hoeveelheid","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"Subtotaal","src.orders.components.OrderPayment.781550514":"Subtotaal","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"","src.orders.components.OrderListPage.2826235371":"","src.orders.components.OrderDraftListPage.551325728":"","src.orders.components.OrderDraftListPage.77765281":"","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"","src.orders.components.OrderFulfillmentCancelDialog.732594284":"","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"SKU","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.4067959693":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"Betaling","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2415661583":"","src.orders.views.OrderList.readyToCapture":"","src.orders.components.OrderListFilter.2222765704":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"Verzending","src.productTypes.components.ProductTypeShipping.1325966144":"Verzending","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"Verzending","src.orders.components.OrderPayment.3768782744":"Vooraf goedgekeurd bedrag","src.orders.components.OrderPayment.2320183694":"Geïncasseerd bedrag","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"Incassering","src.orders.components.OrderPayment.2845258362":"Terugbetaling","src.orders.components.OrderPayment.2444197639":"","src.orders.components.OrderPayment.3500506678":"","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"Bedrag","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.1542417144":"","src.products.components.ProductListPage.1542417144":"","src.products.views.1542417144":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.OrderDraftList.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.OrderDraftList.1648805446":"","src.orders.views.OrderDraftList.1161115149":"","src.orders.views.OrderDraftList.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.1068617485":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"","src.pages.components.PageList.1124600214":"","src.pages.components.PageInfo.1116746286":"","src.translations.components.TranslationsPagesPage.1116746286":"","src.pages.components.PageList.3478065224":"","src.pages.components.PageSlug.3478065224":"","src.productTypes.components.ProductTypeAttributes.3478065224":"","src.pages.components.PageList.3767550649":"","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.3785394515":"","src.pages.views.3785394515":"","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.plugins.components.PluginInfo.3425535100":"","src.plugins.components.PluginsDetailsPage.3425535100":"","src.plugins.components.PluginInfo.1049131348":"","src.plugins.components.PluginInfo.4013064767":"","src.plugins.components.PluginsDetailsPage.3352026836":"","src.plugins.components.PluginsDetailsPage.2277745418":"","src.plugins.components.PluginsDetailsPage.1970881031":"","src.plugins.components.PluginSettings.1970881031":"","src.plugins.components.PluginsDetailsPage.4241018152":"","src.plugins.components.PluginsList.3247064221":"Actief","src.staff.components.StaffList.3247064221":"Actief","src.plugins.components.PluginsList.4120604650":"","src.plugins.components.PluginsList.666641390":"","src.plugins.views.100549097":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"Afbeedlingen","src.products.components.ProductVariantImages.3240888698":"Afbeedlingen","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"Voorraad","src.products.components.ProductVariantStock.3841616483":"Voorraad","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListFilter.821159718":"","src.products.components.ProductListFilter.1421689426":"","src.products.components.ProductListFilter.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"","prodictStockInventoryLabel":"","src.products.components.ProductVariantStock.3490038570":"","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"Verwijder productversie","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"Varianten","src.products.components.ProductVariants.2153006789":"Varianten","src.products.components.ProductVariantNavigation.2845381934":"Voeg productversie toe","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.3989383405":"","src.products.views.3989383405":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1591632382":"","src.products.views.1731766393":"","src.products.views.2880386427":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1217376589":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.3479705616":"","src.productTypes.components.ProductTypeListPage.1776073799":"","src.productTypes.components.ProductTypeListPage.3420445375":"","src.translations.components.TranslationsEntitiesListPage.3420445375":"","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.ProductTypeList.4080551769":"","src.productTypes.views.ProductTypeList.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRates.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2673544109":"","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.1947090060":"","src.shipping.views.ShippingZoneDetails.131963671":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"","src.siteSettings.components.SiteSettingsKeys.2446088470":"","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.1481503299":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.797461521":"","src.staff.components.StaffListPage.2852350932":"","src.staff.components.StaffListPage.61043583":"","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"","src.staff.views.1308770978":"","src.staff.views.8878988":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.2105464697":"","src.translations.components.TranslationsEntitiesListPage.2559018090":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file diff --git a/locale/nl.po b/locale/nl.po index d6768ebf9..bb35453c3 100644 --- a/locale/nl.po +++ b/locale/nl.po @@ -6,7 +6,7 @@ # msgid "" msgstr "" -"POT-Creation-Date: 2019-09-06T13:56:36.897Z\n" +"POT-Creation-Date: 2019-09-16T15:25:09.340Z\n" "Last-Translator: Oele Geirnaert , 2019\n" "Language-Team: Dutch (https://www.transifex.com/mirumee/teams/34782/nl/)\n" "MIME-Version: 1.0\n" @@ -144,22 +144,6 @@ msgctxt "create new menu item, header" msgid "Add Item" msgstr "" -#. [menuCreateDialogHeader] - dialog header -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json -msgctxt "dialog header" -msgid "Add Menu" -msgstr "" - -#. [menuListPageAddMenu] - button -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json -msgctxt "button" -msgid "Add Menu" -msgstr "" - #. [src.siteSettings.components.SiteSettingsKeyDialog.1238948746] - dialog #. header #. defaultMessage is: @@ -169,14 +153,6 @@ msgctxt "dialog header" msgid "Add New Authorization Key" msgstr "" -#. [src.pages.components.PageDetailsPage.755314116] - page header -#. defaultMessage is: -#. Add Page -#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json -msgctxt "page header" -msgid "Add Page" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.2892088870] - dialog header #. defaultMessage is: #. Add Price Rate @@ -185,38 +161,6 @@ msgctxt "dialog header" msgid "Add Price Rate" msgstr "" -#. [src.orders.components.OrderProductAddDialog.2775402904] - dialog header -#. defaultMessage is: -#. Add Product -#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json -msgctxt "dialog header" -msgid "Add Product" -msgstr "" - -#. [src.products.components.ProductListPage.2775402904] - button -#. defaultMessage is: -#. Add Product -#: build/locale/src/products/components/ProductListPage/ProductListPage.json -msgctxt "button" -msgid "Add Product" -msgstr "" - -#. [src.discounts.components.SaleListPage.1742771332] - button -#. defaultMessage is: -#. Add Sale -#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json -msgctxt "button" -msgid "Add Sale" -msgstr "" - -#. [src.staff.components.StaffAddMemberDialog.3490059488] - dialog header -#. defaultMessage is: -#. Add Staff Member -#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json -msgctxt "dialog header" -msgid "Add Staff Member" -msgstr "" - #. [src.attributes.components.AttributeValueEditDialog.1841790893] - add #. attribute value #. defaultMessage is: @@ -226,14 +170,6 @@ msgctxt "add attribute value" msgid "Add Value" msgstr "" -#. [src.products.views.2178905289] - header -#. defaultMessage is: -#. Add Variant -#: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "header" -msgid "Add Variant" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.1397795758] - add weight #. based shipping method, dialog header #. defaultMessage is: @@ -251,14 +187,6 @@ msgctxt "button" msgid "Add address" msgstr "" -#. [src.attributes.components.AttributeListPage.350498821] - button -#. defaultMessage is: -#. Add attribute -#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json -msgctxt "button" -msgid "Add attribute" -msgstr "Voeg eigenschap toe" - #. [src.siteSettings.components.SiteSettingsKeyDialog.50561933] - button #. defaultMessage is: #. Add authentication @@ -267,14 +195,6 @@ msgctxt "button" msgid "Add authentication" msgstr "" -#. [src.categories.components.CategoryListPage.228151782] - button -#. defaultMessage is: -#. Add category -#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json -msgctxt "button" -msgid "Add category" -msgstr "Voeg categorie toe" - #. [src.collections.components.CollectionCreatePage.3958681866] - page header #. defaultMessage is: #. Add collection @@ -283,14 +203,6 @@ msgctxt "page header" msgid "Add collection" msgstr "" -#. [src.collections.components.CollectionListPage.3958681866] - button -#. defaultMessage is: -#. Add collection -#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json -msgctxt "button" -msgid "Add collection" -msgstr "" - #. [src.customers.components.CustomerCreatePage.1934221653] - page header #. defaultMessage is: #. Add customer @@ -323,14 +235,6 @@ msgctxt "button" msgid "Add key" msgstr "" -#. [menuItemsAddItem] - add new menu item -#. defaultMessage is: -#. Add new item -#: build/locale/src/navigation/components/MenuItems/MenuItems.json -msgctxt "add new menu item" -msgid "Add new item" -msgstr "" - #. [menuItemsPlaceholder] #. defaultMessage is: #. Add new menu item to begin creating menu @@ -365,14 +269,6 @@ msgctxt "button" msgid "Add or Edit Link" msgstr "" -#. [src.pages.components.PageListPage.1767905232] - button -#. defaultMessage is: -#. Add page -#: build/locale/src/pages/components/PageListPage/PageListPage.json -msgctxt "button" -msgid "Add page" -msgstr "" - #. [src.categories.components.CategoryProducts.3554578821] - button #. defaultMessage is: #. Add product @@ -381,14 +277,6 @@ msgctxt "button" msgid "Add product" msgstr "Voeg product toe" -#. [src.productTypes.components.ProductTypeListPage.889729490] - button -#. defaultMessage is: -#. Add product type -#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json -msgctxt "button" -msgid "Add product type" -msgstr "Voeg productsoort toe" - #. [src.orders.components.OrderDraftDetails.2528459381] - button #. defaultMessage is: #. Add products @@ -397,14 +285,6 @@ msgctxt "button" msgid "Add products" msgstr "" -#. [src.shipping.components.ShippingZoneRates.352297149] - button -#. defaultMessage is: -#. Add rate -#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json -msgctxt "button" -msgid "Add rate" -msgstr "" - #. [src.categories.components.CategoryCreatePage.2563994280] #. defaultMessage is: #. Add search engine title and description to make this category easier to @@ -466,30 +346,6 @@ msgctxt "button" msgid "Add shipping carrier" msgstr "" -#. [src.shipping.components.ShippingZonesList.2474410767] - button -#. defaultMessage is: -#. Add shipping zone -#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json -msgctxt "button" -msgid "Add shipping zone" -msgstr "" - -#. [src.staff.components.StaffListPage.802625341] - button -#. defaultMessage is: -#. Add staff member -#: build/locale/src/staff/components/StaffListPage/StaffListPage.json -msgctxt "button" -msgid "Add staff member" -msgstr "" - -#. [src.categories.components.CategoryList.435697837] - button -#. defaultMessage is: -#. Add subcategory -#: build/locale/src/categories/components/CategoryList/CategoryList.json -msgctxt "button" -msgid "Add subcategory" -msgstr "" - #. [src.attributes.components.AttributeProperties.673770329] - add attribute #. as column in product list table #. defaultMessage is: @@ -517,35 +373,14 @@ msgctxt "dialog header" msgid "Add tracking code" msgstr "" -#. [src.attributes.components.AttributeValues.254756045] - add attribute value -#. button -#. defaultMessage is: -#. Add value -#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json -msgctxt "add attribute value button" -msgid "Add value" -msgstr "" - #. [src.products.components.ProductVariantNavigation.2845381934] - button #. defaultMessage is: #. Add variant -#. [src.products.components.ProductVariants.2845381934] - button -#. defaultMessage is: -#. Add variant #: build/locale/src/products/components/ProductVariantNavigation/ProductVariantNavigation.json -#: build/locale/src/products/components/ProductVariants/ProductVariants.json msgctxt "button" msgid "Add variant" msgstr "Voeg productversie toe" -#. [src.discounts.components.VoucherListPage.1536809153] - button -#. defaultMessage is: -#. Add voucher -#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json -msgctxt "button" -msgid "Add voucher" -msgstr "Voeg voucher toe" - #. [src.attributes.views.AttributeDetails.634268988] - added new attribute #. value #. defaultMessage is: @@ -603,14 +438,6 @@ msgctxt "description" msgid "Address line 2" msgstr "" -#. [src.customers.components.CustomerAddress.1320082647] - addres card header -#. defaultMessage is: -#. Address {addressNumber} -#: build/locale/src/customers/components/CustomerAddress/CustomerAddress.json -msgctxt "addres card header" -msgid "Address {addressNumber}" -msgstr "" - #. [src.attributes.components.AttributeValues.1565474525] - attribute values #. list: slug column header #. defaultMessage is: @@ -660,6 +487,46 @@ msgctxt "tax rate" msgid "Agricultural supplies" msgstr "" +#. [src.attributes.components.AttributeListPage.2417065806] - tab name +#. defaultMessage is: +#. All Attributes +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "tab name" +msgid "All Attributes" +msgstr "" + +#. [src.categories.components.CategoryListPage.4294878092] - tab name +#. defaultMessage is: +#. All Categories +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "tab name" +msgid "All Categories" +msgstr "" + +#. [src.collections.components.CollectionListPage.1631917001] - tab name +#. defaultMessage is: +#. All Collections +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "tab name" +msgid "All Collections" +msgstr "" + +#. [src.customers.components.CustomerListPage.477293306] - tab name +#. defaultMessage is: +#. All Customers +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "tab name" +msgid "All Customers" +msgstr "" + +#. [src.orders.components.OrderDraftListPage.551325728] - tab name +#. defaultMessage is: +#. All Drafts +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "tab name" +msgid "All Drafts" +msgstr "" + #. [src.orders.components.OrderListPage.875489544] - tab name #. defaultMessage is: #. All Orders @@ -677,22 +544,54 @@ msgctxt "section header" msgid "All Photos" msgstr "" -#. [src.products.components.ProductListPage.821159718] - tab name +#. [src.productTypes.components.ProductTypeListPage.1776073799] - tab name +#. defaultMessage is: +#. All Product Types +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "tab name" +msgid "All Product Types" +msgstr "" + +#. [src.products.components.ProductListFilter.821159718] - tab name #. defaultMessage is: #. All Products -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "tab name" msgid "All Products" msgstr "" -#. [src.categories.components.CategoryList.3229914152] - section header +#. [src.discounts.components.SaleListPage.3907768880] - tab name +#. defaultMessage is: +#. All Sales +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "tab name" +msgid "All Sales" +msgstr "" + +#. [src.staff.components.StaffListPage.2852350932] - tab name +#. defaultMessage is: +#. All Staff Members +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "tab name" +msgid "All Staff Members" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.3229914152] - section header #. defaultMessage is: #. All Subcategories -#: build/locale/src/categories/components/CategoryList/CategoryList.json +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json msgctxt "section header" msgid "All Subcategories" msgstr "" +#. [src.discounts.components.VoucherListPage.1112241061] - tab name +#. defaultMessage is: +#. All Vouchers +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "tab name" +msgid "All Vouchers" +msgstr "" + #. [src.taxes.components.TaxConfiguration.142803418] #. defaultMessage is: #. All products prices are entered with tax included @@ -800,6 +699,14 @@ msgctxt "description" msgid "Are you sure you want to delete collection's image?" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.36681973] +#. defaultMessage is: +#. Are you sure you want to delete draft #{number}? +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "description" +msgid "Are you sure you want to delete draft #{number}?" +msgstr "" + #. [menuDetailsDeleteMenuContent] #. defaultMessage is: #. Are you sure you want to delete menu {menuName}? @@ -816,6 +723,14 @@ msgctxt "description" msgid "Are you sure you want to delete this address from users address book?" msgstr "" +#. [src.products.views.2880386427] +#. defaultMessage is: +#. Are you sure you want to delete this image? +#: build/locale/src/products/views/ProductImage.json +msgctxt "description" +msgid "Are you sure you want to delete this image?" +msgstr "" + #. [src.attributes.components.AttributeDeleteDialog.3738429348] - dialog #. content #. defaultMessage is: @@ -866,12 +781,7 @@ msgstr "" #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this attribute} #. other{{displayQuantity} categories}}? -#. [src.categories.views.844574071] -#. defaultMessage is: -#. Are you sure you want to delete {counter,plural,one{this attribute} -#. other{{displayQuantity} categories}}? #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this attribute} " @@ -889,22 +799,33 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.2497542455] +#. [src.categories.views.CategoryList.2144707585] +#. defaultMessage is: +#. Are you sure you want to delete {counter,plural,one{this category} +#. other{{displayQuantity} categories}}? +#: build/locale/src/categories/views/CategoryList/CategoryList.json +msgctxt "description" +msgid "" +"Are you sure you want to delete {counter,plural,one{this category} " +"other{{displayQuantity} categories}}?" +msgstr "" + +#. [src.collections.views.CollectionList.2497542455] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this collection} " "other{{displayQuantity} collections}}?" msgstr "" -#. [src.customers.views.409347866] +#. [src.customers.views.CustomerList.409347866] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this customer} #. other{{displayQuantity} customers}}? -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this customer} " @@ -922,11 +843,11 @@ msgid "" "other{{displayQuantity} menus}}?" msgstr "" -#. [src.orders.views.1389231130] - dialog content +#. [src.orders.views.OrderDraftList.1389231130] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this order draft} #. other{{displayQuantity} orderDrafts}}? -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this order draft} " @@ -944,11 +865,11 @@ msgid "" "other{{displayQuantity} pages}}?" msgstr "" -#. [src.productTypes.views.2294091098] - dialog content +#. [src.productTypes.views.ProductTypeList.2294091098] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this product type} #. other{{displayQuantity} product types}}? -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this product type} " @@ -966,11 +887,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.discounts.views.2516361175] - dialog content +#. [src.discounts.views.SaleList.2516361175] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this sale} #. other{{displayQuantity} sales}}? -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this sale} " @@ -999,17 +920,33 @@ msgid "" "other{{displayQuantity} variants}}?" msgstr "" -#. [src.discounts.views.1791926983] - dialog content +#. [src.discounts.views.VoucherList.1791926983] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this voucher} #. other{{displayQuantity} vouchers}}? -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this voucher} " "other{{displayQuantity} vouchers}}?" msgstr "" +#. [src.shipping.views.ShippingZoneDetails.131963671] - unassign country +#. defaultMessage is: +#. Are you sure you want to delete {countryName} from this shipping zone? +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country" +msgid "Are you sure you want to delete {countryName} from this shipping zone?" +msgstr "" + +#. [src.staff.views.8878988] +#. defaultMessage is: +#. Are you sure you want to delete {email} from staff members? +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "description" +msgid "Are you sure you want to delete {email} from staff members?" +msgstr "" + #. [src.customers.views.1927691511] - delete customer, dialog content #. defaultMessage is: #. Are you sure you want to delete {email}? @@ -1124,11 +1061,11 @@ msgctxt "description" msgid "Are you sure you want to mark this order as paid?" msgstr "" -#. [src.collections.views.1348793822] +#. [src.collections.views.CollectionList.1348793822] #. defaultMessage is: #. Are you sure you want to publish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to publish {counter,plural,one{this collection} " @@ -1157,30 +1094,6 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.orders.components.OrderDraftCancelDialog.3199827590] -#. defaultMessage is: -#. Are you sure you want to remove draft #{number}? -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "description" -msgid "Are you sure you want to remove draft #{number}?" -msgstr "" - -#. [src.products.views.672103788] -#. defaultMessage is: -#. Are you sure you want to remove this image? -#: build/locale/src/products/views/ProductImage.json -msgctxt "description" -msgid "Are you sure you want to remove this image?" -msgstr "" - -#. [src.shipping.views.ShippingZoneDetails.1790261672] - unassign country -#. defaultMessage is: -#. Are you sure you want to remove {countryName} from this shipping zone? -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country" -msgid "Are you sure you want to remove {countryName} from this shipping zone?" -msgstr "" - #. [src.staff.views.3945766678] #. defaultMessage is: #. Are you sure you want to remove {email} avatar? @@ -1189,14 +1102,6 @@ msgctxt "description" msgid "Are you sure you want to remove {email} avatar?" msgstr "" -#. [src.staff.views.2728048444] -#. defaultMessage is: -#. Are you sure you want to remove {email} from staff members? -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "description" -msgid "Are you sure you want to remove {email} from staff members?" -msgstr "" - #. [src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450] #. defaultMessage is: #. Are you sure you want to unassign {attributeName} from {productTypeName}? @@ -1277,11 +1182,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.3944356444] +#. [src.collections.views.CollectionList.3944356444] #. defaultMessage is: #. Are you sure you want to unpublish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to unpublish {counter,plural,one{this collection} " @@ -1442,6 +1347,15 @@ msgctxt "button" msgid "Assign products" msgstr "" +#. [src.attributes.components.AttributeValues.351422234] - assign attribute +#. value button +#. defaultMessage is: +#. Assign value +#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json +msgctxt "assign attribute value button" +msgid "Assign value" +msgstr "" + #. [src.attributes.components.AttributeDetails.3605174225] - attribute's slug #. short code label #. defaultMessage is: @@ -1520,6 +1434,14 @@ msgctxt "product attributes, section header" msgid "Attributes" msgstr "Eigenschappen" +#. [src.configuration.2326418019] +#. defaultMessage is: +#. Attributes and Product Typess +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Attributes and Product Typess" +msgstr "" + #. [src.attributes.views.AttributeList.3218248395] - deleted multiple #. attributes #. defaultMessage is: @@ -2303,6 +2225,22 @@ msgctxt "description" msgid "Country area" msgstr "" +#. [menuCreateDialogHeader] - dialog header +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json +msgctxt "dialog header" +msgid "Create Menu" +msgstr "" + +#. [menuListPageAddMenu] - button +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json +msgctxt "button" +msgid "Create Menu" +msgstr "" + #. [src.attributes.components.AttributePage.2855501559] - page title #. defaultMessage is: #. Create New Attribute @@ -2327,6 +2265,30 @@ msgctxt "header" msgid "Create New Shipping Zone" msgstr "" +#. [src.pages.components.PageDetailsPage.1068617485] - page header +#. defaultMessage is: +#. Create Page +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page header" +msgid "Create Page" +msgstr "" + +#. [src.orders.components.OrderProductAddDialog.1542417144] - dialog header +#. defaultMessage is: +#. Create Product +#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json +msgctxt "dialog header" +msgid "Create Product" +msgstr "" + +#. [src.products.components.ProductListPage.1542417144] - button +#. defaultMessage is: +#. Create Product +#: build/locale/src/products/components/ProductListPage/ProductListPage.json +msgctxt "button" +msgid "Create Product" +msgstr "" + #. [src.products.views.1542417144] - window title #. defaultMessage is: #. Create Product @@ -2359,11 +2321,19 @@ msgctxt "page header" msgid "Create Sale" msgstr "" -#. [src.products.views.2362587265] - window title +#. [src.discounts.components.SaleListPage.3866518732] - button +#. defaultMessage is: +#. Create Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "button" +msgid "Create Sale" +msgstr "" + +#. [src.products.views.2362587265] - header #. defaultMessage is: #. Create Variant #: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "window title" +msgctxt "header" msgid "Create Variant" msgstr "" @@ -2375,6 +2345,22 @@ msgctxt "page header" msgid "Create Voucher" msgstr "" +#. [src.attributes.components.AttributeListPage.3824684885] - button +#. defaultMessage is: +#. Create attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "button" +msgid "Create attribute" +msgstr "" + +#. [src.categories.components.CategoryListPage.1140231710] - button +#. defaultMessage is: +#. Create category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "button" +msgid "Create category" +msgstr "" + #. [src.categories.views.1140231710] - window title #. defaultMessage is: #. Create category @@ -2383,6 +2369,14 @@ msgctxt "window title" msgid "Create category" msgstr "" +#. [src.collections.components.CollectionListPage.686910896] - button +#. defaultMessage is: +#. Create collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "button" +msgid "Create collection" +msgstr "" + #. [src.collections.views.686910896] - window title #. defaultMessage is: #. Create collection @@ -2399,6 +2393,14 @@ msgctxt "window title" msgid "Create customer" msgstr "" +#. [menuItemsAddItem] - add new menu item +#. defaultMessage is: +#. Create new item +#: build/locale/src/navigation/components/MenuItems/MenuItems.json +msgctxt "add new menu item" +msgid "Create new item" +msgstr "" + #. [src.orders.components.OrderDraftListPage.2826235371] - button #. defaultMessage is: #. Create order @@ -2411,6 +2413,14 @@ msgctxt "button" msgid "Create order" msgstr "" +#. [src.pages.components.PageListPage.3785394515] - button +#. defaultMessage is: +#. Create page +#: build/locale/src/pages/components/PageListPage/PageListPage.json +msgctxt "button" +msgid "Create page" +msgstr "" + #. [src.pages.views.3785394515] - header #. defaultMessage is: #. Create page @@ -2422,11 +2432,55 @@ msgstr "" #. [src.shipping.components.ShippingZoneRateDialog.16061680] - button #. defaultMessage is: #. Create rate +#. [src.shipping.components.ShippingZoneRates.16061680] - button +#. defaultMessage is: +#. Create rate #: build/locale/src/shipping/components/ShippingZoneRateDialog/ShippingZoneRateDialog.json +#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json msgctxt "button" msgid "Create rate" msgstr "" +#. [src.shipping.components.ShippingZonesList.2673544109] - button +#. defaultMessage is: +#. Create shipping zone +#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json +msgctxt "button" +msgid "Create shipping zone" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.770296100] - button +#. defaultMessage is: +#. Create subcategory +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json +msgctxt "button" +msgid "Create subcategory" +msgstr "" + +#. [src.products.components.ProductVariants.3989383405] - button +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/components/ProductVariants/ProductVariants.json +msgctxt "button" +msgid "Create variant" +msgstr "" + +#. [src.products.views.3989383405] - window title +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/views/ProductVariantCreate.json +msgctxt "window title" +msgid "Create variant" +msgstr "" + +#. [src.discounts.components.VoucherListPage.614836274] - button +#. defaultMessage is: +#. Create voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "button" +msgid "Create voucher" +msgstr "" + #. [src.collections.views.1597339737] #. defaultMessage is: #. Created collection @@ -2473,7 +2527,11 @@ msgstr "" #. [src.components.FilterBar.2340527467] #. defaultMessage is: #. Custom Filter +#. [src.components.SearchBar.2340527467] +#. defaultMessage is: +#. Custom Filter #: build/locale/src/components/FilterBar/FilterBar.json +#: build/locale/src/components/SearchBar/SearchBar.json msgctxt "description" msgid "Custom Filter" msgstr "" @@ -2729,10 +2787,18 @@ msgctxt "dialog title" msgid "Delete Collection" msgstr "" -#. [src.orders.views.1161115149] - dialog header +#. [src.products.views.1731766393] - dialog header +#. defaultMessage is: +#. Delete Image +#: build/locale/src/products/views/ProductImage.json +msgctxt "dialog header" +msgid "Delete Image" +msgstr "" + +#. [src.orders.views.OrderDraftList.1161115149] - dialog header #. defaultMessage is: #. Delete Order Drafts -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog header" msgid "Delete Order Drafts" msgstr "" @@ -2770,10 +2836,10 @@ msgctxt "dialog header" msgid "Delete Product Type" msgstr "" -#. [src.productTypes.views.4080551769] - dialog header +#. [src.productTypes.views.ProductTypeList.4080551769] - dialog header #. defaultMessage is: #. Delete Product Types -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog header" msgid "Delete Product Types" msgstr "" @@ -2802,10 +2868,10 @@ msgctxt "dialog header" msgid "Delete Sale" msgstr "" -#. [src.discounts.views.2809303671] - dialog header +#. [src.discounts.views.SaleList.2809303671] - dialog header #. defaultMessage is: #. Delete Sales -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog header" msgid "Delete Sales" msgstr "" @@ -2819,9 +2885,13 @@ msgctxt "custom search delete, dialog header" msgid "Delete Search" msgstr "" +#. [src.components.Filter.2173195312] - button +#. defaultMessage is: +#. Delete Search #. [src.components.TableFilter.2173195312] - button #. defaultMessage is: #. Delete Search +#: build/locale/src/components/Filter/FilterSearch.json #: build/locale/src/components/TableFilter/FilterChips.json msgctxt "button" msgid "Delete Search" @@ -2888,10 +2958,10 @@ msgctxt "dialog header" msgid "Delete Voucher" msgstr "" -#. [src.discounts.views.367317371] - dialog header +#. [src.discounts.views.VoucherList.367317371] - dialog header #. defaultMessage is: #. Delete Vouchers -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog header" msgid "Delete Vouchers" msgstr "" @@ -2925,11 +2995,11 @@ msgstr "" #. [src.categories.views.712767046] - dialog title #. defaultMessage is: #. Delete categories -#. [src.categories.views.712767046] - dialog title +#. [src.categories.views.CategoryList.712767046] - dialog title #. defaultMessage is: #. Delete categories #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "dialog title" msgid "Delete categories" msgstr "" @@ -2946,10 +3016,10 @@ msgctxt "dialog title" msgid "Delete category" msgstr "" -#. [src.collections.views.3817188998] - dialog title +#. [src.collections.views.CollectionList.3817188998] - dialog title #. defaultMessage is: #. Delete collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Delete collections" msgstr "" @@ -2962,14 +3032,31 @@ msgctxt "dialog header" msgid "Delete customer" msgstr "" -#. [src.customers.views.1946482599] - dialog header +#. [src.customers.views.CustomerList.1946482599] - dialog header #. defaultMessage is: #. Delete customers -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "dialog header" msgid "Delete customers" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.632633254] - dialog header +#. defaultMessage is: +#. Delete draft order +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "dialog header" +msgid "Delete draft order" +msgstr "" + +#. [src.shipping.views.ShippingZoneDetails.1947090060] - unassign country, +#. dialog header +#. defaultMessage is: +#. Delete from shipping zone +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country, dialog header" +msgid "Delete from shipping zone" +msgstr "" + #. [src.collections.views.942133001] - dialog title #. defaultMessage is: #. Delete image @@ -3030,6 +3117,14 @@ msgctxt "description" msgid "Deleted collection" msgstr "" +#. [src.orders.views.OrderDraftList.1648805446] +#. defaultMessage is: +#. Deleted draft orders +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json +msgctxt "description" +msgid "Deleted draft orders" +msgstr "" + #. [menuListDeletedMenu] #. defaultMessage is: #. Deleted menu @@ -3629,14 +3724,6 @@ msgctxt "order history message" msgid "Fulfilled {quantity} items" msgstr "" -#. [src.orders.components.OrderListFilter.2943502192] - order -#. defaultMessage is: -#. Fulfillment Status -#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json -msgctxt "order" -msgid "Fulfillment Status" -msgstr "" - #. [src.orders.components.OrderHistory.3081292385] - order history message #. defaultMessage is: #. Fulfillment confirmation was sent to customer @@ -3793,12 +3880,12 @@ msgctxt "description" msgid "If empty, the preview shows what will be autogenerated." msgstr "" -#. [src.attributes.components.AttributeProperties.2519239682] +#. [src.attributes.components.AttributeProperties.4048785456] #. defaultMessage is: -#. If enable this attribute can be used as a column in product table. +#. If enabled this attribute can be used as a column in product table. #: build/locale/src/attributes/components/AttributeProperties/AttributeProperties.json msgctxt "description" -msgid "If enable this attribute can be used as a column in product table." +msgid "If enabled this attribute can be used as a column in product table." msgstr "" #. [src.attributes.components.AttributeProperties.787251583] @@ -3904,6 +3991,22 @@ msgctxt "product variant stock" msgid "Inventory" msgstr "" +#. [src.staff.components.StaffAddMemberDialog.1481503299] - dialog header +#. defaultMessage is: +#. Invite Staff Member +#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json +msgctxt "dialog header" +msgid "Invite Staff Member" +msgstr "" + +#. [src.staff.components.StaffListPage.797461521] - button +#. defaultMessage is: +#. Invite staff member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "button" +msgid "Invite staff member" +msgstr "" + #. [src.productTypes.components.ProductTypeShipping.2143413921] - switch #. button #. defaultMessage is: @@ -4256,6 +4359,14 @@ msgctxt "voucher requirement" msgid "Minimum quantity of items" msgstr "" +#. [src.configuration.1233229030] +#. defaultMessage is: +#. Miscellaneous +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Miscellaneous" +msgstr "" + #. [src.attributes.components.AttributeDetails.3334509011] - product attribute #. type #. defaultMessage is: @@ -5088,6 +5199,14 @@ msgctxt "description" msgid "Order History" msgstr "" +#. [src.orders.components.OrderListFilter.2222765704] +#. defaultMessage is: +#. Order Status +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +msgctxt "description" +msgid "Order Status" +msgstr "" + #. [src.orders.components.OrderHistory.1230178536] - order history message #. defaultMessage is: #. Order address was updated @@ -5104,13 +5223,13 @@ msgctxt "order history message" msgid "Order confirmation was sent to customer" msgstr "" -#. [src.orders.views.1872939752] +#. [src.orders.views.OrderDraftList.1872939752] #. defaultMessage is: #. Order draft succesfully created #. [src.orders.views.OrderList.1872939752] #. defaultMessage is: #. Order draft succesfully created -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json #: build/locale/src/orders/views/OrderList/OrderList.json msgctxt "description" msgid "Order draft succesfully created" @@ -5775,6 +5894,14 @@ msgctxt "description" msgid "Product Name" msgstr "" +#. [src.configuration.3655543906] +#. defaultMessage is: +#. Product Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Product Settings" +msgstr "" + #. [src.discounts.components.DiscountProducts.4257289053] #. defaultMessage is: #. Product Type @@ -5933,12 +6060,12 @@ msgctxt "order history message" msgid "Products were added to draft order" msgstr "" -#. [src.orders.components.OrderHistory.2574162126] - order history message +#. [src.orders.components.OrderHistory.4067959693] - order history message #. defaultMessage is: -#. Products were removed from draft order +#. Products were deleted from draft order #: build/locale/src/orders/components/OrderHistory/OrderHistory.json msgctxt "order history message" -msgid "Products were removed from draft order" +msgid "Products were deleted from draft order" msgstr "" #. [src.properties] @@ -5965,10 +6092,10 @@ msgctxt "description" msgid "Provided email address does not exist in our database." msgstr "" -#. [src.collections.views.1547167026] - publish collections +#. [src.collections.views.CollectionList.1547167026] - publish collections #. defaultMessage is: #. Publish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "publish collections" msgid "Publish" msgstr "" @@ -6005,10 +6132,10 @@ msgctxt "dialog header" msgid "Publish Products" msgstr "" -#. [src.collections.views.2823425739] - dialog title +#. [src.collections.views.CollectionList.2823425739] - dialog title #. defaultMessage is: #. Publish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Publish collections" msgstr "" @@ -6182,6 +6309,18 @@ msgctxt "shipping method price" msgid "Rate Price" msgstr "" +#. [src.orders.components.OrderListFilter.2415661583] - order status +#. defaultMessage is: +#. Ready to Capture +#. [src.orders.views.OrderList.readyToCapture] - order status +#. defaultMessage is: +#. Ready to Capture +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +#: build/locale/src/orders/views/OrderList/filters.json +msgctxt "order status" +msgid "Ready to Capture" +msgstr "" + #. [src.customers.components.CustomerOrders.3878642352] - section header #. defaultMessage is: #. Recent orders @@ -6230,22 +6369,14 @@ msgctxt "switch button" msgid "Release all stock allocated to this order" msgstr "" -#. [src.auth.components.LoginPage.3182284913] - login -#. defaultMessage is: -#. Remember me -#: build/locale/src/auth/components/LoginPage/LoginPage.json -msgctxt "login" -msgid "Remember me" -msgstr "" - #. [src.categories.views.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. -#. [src.categories.views.3488150607] +#. [src.categories.views.CategoryList.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "description" msgid "Remember this will also delete all products assigned to this category." msgstr "" @@ -6258,39 +6389,6 @@ msgctxt "button" msgid "Remove" msgstr "Verwijder" -#. [src.products.views.490753666] - dialog header -#. defaultMessage is: -#. Remove Image -#: build/locale/src/products/views/ProductImage.json -msgctxt "dialog header" -msgid "Remove Image" -msgstr "" - -#. [src.orders.components.OrderDraftCancelDialog.500287069] - dialog header -#. defaultMessage is: -#. Remove draft order -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "dialog header" -msgid "Remove draft order" -msgstr "" - -#. [src.shipping.views.ShippingZoneDetails.254167659] - unassign country, -#. dialog header -#. defaultMessage is: -#. Remove from shipping zone -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country, dialog header" -msgid "Remove from shipping zone" -msgstr "" - -#. [src.orders.views.3880993240] -#. defaultMessage is: -#. Removed draft orders -#: build/locale/src/orders/views/OrderDraftList.json -msgctxt "description" -msgid "Removed draft orders" -msgstr "" - #. [src.pages.views.1457312643] #. defaultMessage is: #. Removed page @@ -6456,6 +6554,18 @@ msgctxt "button" msgid "Save" msgstr "Bewaar" +#. [src.components.Filter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#. [src.components.TableFilter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#: build/locale/src/components/Filter/FilterSearch.json +#: build/locale/src/components/TableFilter/FilterChips.json +msgctxt "button" +msgid "Save Custom Search" +msgstr "" + #. [src.components.SaveFilterTabDialog.1514415736] - save filter tab, header #. defaultMessage is: #. Save Custom Search @@ -6464,14 +6574,6 @@ msgctxt "save filter tab, header" msgid "Save Custom Search" msgstr "" -#. [src.components.TableFilter.1514415736] - button -#. defaultMessage is: -#. Save Custom Search -#: build/locale/src/components/TableFilter/FilterChips.json -msgctxt "button" -msgid "Save Custom Search" -msgstr "" - #. [src.products.components.ProductVariantCreatePage.2853608829] - button #. defaultMessage is: #. Save variant @@ -6488,6 +6590,14 @@ msgctxt "description" msgid "Saved changes" msgstr "" +#. [src.attributes.components.AttributeListPage.3916653510] +#. defaultMessage is: +#. Search Attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "description" +msgid "Search Attribute" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.902296540] #. defaultMessage is: #. Search Attributes @@ -6504,10 +6614,30 @@ msgctxt "description" msgid "Search Categories" msgstr "" +#. [src.categories.components.CategoryListPage.3841025483] +#. defaultMessage is: +#. Search Category +#. [src.translations.components.TranslationsEntitiesListPage.3841025483] +#. defaultMessage is: +#. Search Category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Category" +msgstr "" + +#. [src.collections.components.CollectionListPage.4057224233] +#. defaultMessage is: +#. Search Collection #. [src.components.AssignCollectionDialog.4057224233] #. defaultMessage is: #. Search Collection +#. [src.translations.components.TranslationsEntitiesListPage.4057224233] +#. defaultMessage is: +#. Search Collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json #: build/locale/src/components/AssignCollectionDialog/AssignCollectionDialog.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json msgctxt "description" msgid "Search Collection" msgstr "" @@ -6520,6 +6650,14 @@ msgctxt "description" msgid "Search Countries" msgstr "" +#. [src.customers.components.CustomerListPage.1643417013] +#. defaultMessage is: +#. Search Customer +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "description" +msgid "Search Customer" +msgstr "" + #. [src.orders.components.OrderCustomer.2433460203] #. defaultMessage is: #. Search Customers @@ -6528,6 +6666,14 @@ msgctxt "description" msgid "Search Customers" msgstr "" +#. [src.orders.components.OrderDraftListPage.77765281] +#. defaultMessage is: +#. Search Draft +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "description" +msgid "Search Draft" +msgstr "" + #. [src.translations.components.TranslationsCategoriesPage.1406947243] #. defaultMessage is: #. Search Engine Description @@ -6608,6 +6754,34 @@ msgctxt "description" msgid "Search Orders..." msgstr "" +#. [src.translations.components.TranslationsEntitiesListPage.2559018090] +#. defaultMessage is: +#. Search Page +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Page" +msgstr "" + +#. [src.translations.components.TranslationsEntitiesListPage.2105464697] +#. defaultMessage is: +#. Search Product +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product" +msgstr "" + +#. [src.productTypes.components.ProductTypeListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#. [src.translations.components.TranslationsEntitiesListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product Type" +msgstr "" + #. [src.components.AssignProductDialog.2850255786] #. defaultMessage is: #. Search Products @@ -6620,14 +6794,46 @@ msgctxt "description" msgid "Search Products" msgstr "" -#. [src.products.components.ProductListPage.3550330425] +#. [src.products.components.ProductListFilter.3550330425] #. defaultMessage is: #. Search Products... -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Search Products..." msgstr "" +#. [src.discounts.components.SaleListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#. [src.translations.components.TranslationsEntitiesListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Sale" +msgstr "" + +#. [src.staff.components.StaffListPage.61043583] +#. defaultMessage is: +#. Search Staff Member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "description" +msgid "Search Staff Member" +msgstr "" + +#. [src.discounts.components.VoucherListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#. [src.translations.components.TranslationsEntitiesListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Voucher" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.524117994] #. defaultMessage is: #. Search by attribute name @@ -6734,10 +6940,10 @@ msgctxt "description" msgid "Select all orders where:" msgstr "" -#. [src.products.components.ProductListPage.1421689426] +#. [src.products.components.ProductListFilter.1421689426] #. defaultMessage is: #. Select all products where: -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Select all products where:" msgstr "" @@ -6823,6 +7029,14 @@ msgctxt "description" msgid "Set plugin as Active" msgstr "" +#. [src.components.VisibilityCard.292404896] +#. defaultMessage is: +#. Set publication date +#: build/locale/src/components/VisibilityCard/VisibilityCard.json +msgctxt "description" +msgid "Set publication date" +msgstr "" + #. [src.discounts.shipment] - voucher discount #. defaultMessage is: #. Shipment @@ -7088,6 +7302,14 @@ msgctxt "staff section name" msgid "Staff Members" msgstr "" +#. [src.configuration.3140151600] +#. defaultMessage is: +#. Staff Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Staff Settings" +msgstr "" + #. [src.standard] - tax rate #. defaultMessage is: #. Standard @@ -8072,10 +8294,10 @@ msgctxt "payment status" msgid "Unpaid" msgstr "" -#. [src.collections.views.2237014112] - unpublish collections +#. [src.collections.views.CollectionList.2237014112] - unpublish collections #. defaultMessage is: #. Unpublish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "unpublish collections" msgid "Unpublish" msgstr "" @@ -8112,10 +8334,10 @@ msgctxt "dialog header" msgid "Unpublish Products" msgstr "" -#. [src.collections.views.2637364047] - dialog title +#. [src.collections.views.CollectionList.2637364047] - dialog title #. defaultMessage is: #. Unpublish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Unpublish collections" msgstr "" @@ -8615,6 +8837,22 @@ msgctxt "description" msgid "ZIP / Postal code" msgstr "" +#. [src.productTypes.components.ProductTypeListPage.3479705616] - button +#. defaultMessage is: +#. create product type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "button" +msgid "create product type" +msgstr "" + +#. [src.staff.views.1308770978] - dialog header +#. defaultMessage is: +#. delete Staff User +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "dialog header" +msgid "delete Staff User" +msgstr "" + #. [orderPaymentVATDoesNotApply] - vat not included in order price #. defaultMessage is: #. does not apply @@ -8688,19 +8926,35 @@ msgctxt "product status is set as" msgid "is set as" msgstr "" -#. [src.staff.views.2240444792] - dialog header -#. defaultMessage is: -#. remove Staff User -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "dialog header" -msgid "remove Staff User" -msgstr "" - -#. [src.components.VisibilityCard.1815688500] +#. [src.collections.components.CollectionCreatePage.1815688500] - collection #. defaultMessage is: #. since {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.1815688500] - collection +#. defaultMessage is: +#. since {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "since {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.1815688500] - page +#. defaultMessage is: +#. since {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "since {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#. [src.products.components.ProductUpdatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "since {date}" msgstr "" @@ -8728,11 +8982,35 @@ msgctxt "weight" msgid "to {value} {unit}" msgstr "" -#. [src.components.VisibilityCard.2001551496] +#. [src.collections.components.CollectionCreatePage.2001551496] - collection #. defaultMessage is: #. will be visible from {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.2001551496] - collection +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "will be visible from {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.2001551496] - page +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "will be visible from {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#. [src.products.components.ProductUpdatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "will be visible from {date}" msgstr "" diff --git a/locale/pl.json b/locale/pl.json index e1b922807..be3680f6d 100644 --- a/locale/pl.json +++ b/locale/pl.json @@ -1 +1 @@ -{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.350498821":"Dodaj atrybut","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.2519239682":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"Nazwa","src.categories.components.CategoryProducts.636461959":"Nazwa","src.collections.components.CollectionProducts.636461959":"Nazwa","src.products.components.ProductDetailsForm.636461959":"Nazwa","src.collections.components.CollectionDetails.636461959":"Nazwa","src.components.ProductList.636461959":"Nazwa","src.discounts.components.SaleInfo.636461959":"Nazwa","src.discounts.components.SaleList.636461959":"Nazwa","src.discounts.components.SaleSummary.636461959":"Nazwa","menuItemDialogNameLabel":"Nazwa","src.products.components.ProductVariants.636461959":"Nazwa","src.shipping.components.ShippingZoneRates.636461959":"Nazwa","src.shipping.components.ShippingZonesList.636461959":"Nazwa","src.staff.components.StaffList.636461959":"Nazwa","src.translations.components.TranslationsEntitiesList.636461959":"Nazwa","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.254756045":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.3182284913":"","src.auth.components.LoginPage.109182747":"Logowanie","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"","src.categories.views.2004894945":"","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.3229914152":"","src.categories.components.CategoryList.435697837":"","src.categories.components.CategoryList.2159874182":"Podkategorie","src.categories.components.CategoryUpdatePage.2159874182":"Podkategorie","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.228151782":"Dodaj kategorię","src.categories.components.CategoryProducts.2968663655":"Produkty","src.categories.components.CategoryUpdatePage.2968663655":"Produkty","src.discounts.components.DiscountCategories.2968663655":"Produkty","src.discounts.components.DiscountCollections.2968663655":"Produkty","src.products":"Produkty","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryProducts.3554578821":"Dodaj produkt","src.categories.components.CategoryProductsCard.3554578821":"Dodaj produkt","src.categories.components.CategoryProducts.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProducts.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.categories.components.CategoryProductsCard.4164156574":"","src.categories.views.1754466114":"","src.categories.views.1140231710":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.712767046":"","src.categories.views.299584400":"","src.categories.views.844574071":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.collections.components.CollectionCreatePage.3958681866":"Dodaj kolekcję","src.collections.components.CollectionListPage.3958681866":"Dodaj kolekcję","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"Dostępność","src.availability":"","src.collections.components.CollectionList.3640454975":"Opublikowany","src.collections.components.CollectionProducts.3640454975":"Opublikowany","src.discounts.components.DiscountProducts.3640454975":"Opublikowany","src.components.ProductList.3640454975":"Opublikowany","src.products.components.ProductListPage.3640454975":"Opublikowany","src.pages.components.PageList.3640454975":"Opublikowany","src.products.views.ProductList.published":"Opublikowany","src.collections.components.CollectionList.2341910657":"Nie opublikowano","src.collections.components.CollectionProducts.2341910657":"Nie opublikowano","src.discounts.components.DiscountProducts.2341910657":"Nie opublikowano","src.components.ProductList.2341910657":"Nie opublikowano","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.686910896":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"","src.collections.views.2402899582":"","src.collections.views.2237014112":"Cofnij publikację","src.pages.views.2237014112":"Cofnij publikację","src.products.views.ProductList.2237014112":"Cofnij publikację","src.collections.views.1547167026":"Opublikuj","src.pages.views.1547167026":"Opublikuj","src.products.views.ProductList.1547167026":"Opublikuj","src.collections.views.2823425739":"","src.collections.views.1348793822":"","src.collections.views.2637364047":"","src.collections.views.3944356444":"","src.collections.views.3817188998":"","src.collections.views.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"Wyloguj się","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.4057224233":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"","src.components.ErrorMessageCard.2845142593":"","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.FilterBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"Dodaj","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.ProductList.1134347598":"Cena","src.orders.components.OrderDraftDetailsProducts.1134347598":"Cena","src.orders.components.OrderFulfillment.1134347598":"Cena","src.products.components.ProductListPage.1134347598":"Cena","src.products.components.ProductPricing.1134347598":"Cena","src.orders.components.OrderUnfulfilledItems.1134347598":"Cena","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"Cena","src.shipping.components.ShippingZoneRates.1134347598":"Cena","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"Widoczność","src.pages.components.PageList.1459686496":"Widoczność","src.products.components.ProductListFilter.1459686496":"Widoczność","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"Ukryte","src.products.views.ProductList.hidden":"Ukryte","src.components.VisibilityCard.1815688500":"","src.components.VisibilityCard.2001551496":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","configurationMenuStaff":"","configurationMenuShipping":"","configurationMenuTaxes":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","src.customers.components.CustomerAddress.1320082647":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"Adres nabywcy","src.customers.components.CustomerAddresses.3517722732":"Adres dostawy","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"Adres","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"Notatki","src.orders.components.OrderCustomerNote.1520756907":"Notatki","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"Notatka","src.customers.components.CustomerDetails.577013340":"Notatka","src.customers.components.CustomerCreatePage.1934221653":"Dodaj klienta","src.customers.components.CustomerListPage.1934221653":"Dodaj klienta","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerOrders.3878642352":"Ostatnie zamówienia","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"Data","src.orders.components.OrderDraftList.4205493358":"Data","src.orders.components.OrderList.4205493358":"Data","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"Status","src.orders.components.OrderListFilter.1756106276":"Status","src.products.components.ProductListFilter.1756106276":"Status","src.products.components.ProductVariants.1756106276":"Status","src.customers.components.CustomerOrders.878013594":"Suma","src.orders.components.OrderDraftDetailsProducts.878013594":"Suma","src.orders.components.OrderDraftDetailsSummary.878013594":"Suma","src.orders.components.OrderDraftList.878013594":"Suma","src.orders.components.OrderFulfillment.878013594":"Suma","src.orders.components.OrderUnfulfilledItems.878013594":"Suma","src.orders.components.OrderList.878013594":"Suma","src.orders.components.OrderPayment.878013594":"Suma","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"Usuń adres","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.1946482599":"","src.customers.views.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"Wartość","src.discounts.components.SaleSummary.1148029984":"Wartość","src.discounts.components.VoucherList.1148029984":"Wartość","src.discounts.components.VoucherSummary.1148029984":"Wartość","src.discounts.components.VoucherValue.1148029984":"Wartość","src.products.components.ProductAttributes.1148029984":"Wartość","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.1742771332":"","src.discounts.components.SalePricing.1099355007":"Cennik","src.products.components.ProductPricing.1099355007":"Cennik","src.products.components.ProductVariantPrice.1099355007":"Cennik","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"Kraje","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"Kod","src.discounts.components.VoucherSummary.78726751":"Kod","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.1536809153":"Dodaj kupon","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"Niektóre produkty","src.discounts.shipment":"Wysyłka","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.2809303671":"","src.discounts.views.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.367317371":"","src.discounts.views.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"Anuluj","src.orders.views.OrderList.3528672691":"Anuluj","src.confirm":"","src.delete":"Usuń","src.edit":"Edytuj","src.manage":"","src.remove":"Usuń","src.save":"Zapisz","src.show":"","src.undo":"","src.attributes":"Atrybuty","src.products.components.ProductAttributes.4153345096":"Atrybuty","src.categories":"Kategorie","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"Kolekcje","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"Ustawienia","src.customers":"Klienci","src.draftOrders":"","src.home":"Strona główna","src.navigation":"Nawigacja","src.orders":"Zamówienia","src.pages":"Strony","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"Sprzedaż","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"Podatki","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"Podatki","src.taxes.components.CountryListPage.3955023266":"Podatki","src.translations":"","src.vouchers":"Kupony zniżkowe","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"Opłacone","src.partiallyPaid":"","src.partiallyRefunded":"Częściowo zwrócone","src.refunded":"Zwrócone","src.unpaid":"","src.cancelled":"Anulowany","src.draft":"Szkic","src.fulfilled":"Zrealizowane","src.orders.views.OrderList.fulfilled":"Zrealizowane","src.orders.components.OrderListFilter.1712863026":"Zrealizowane","src.partiallyFulfilled":"Częściowo zrealizowane","src.unfulfilled":"Niezrealizowane","src.orders.views.OrderList.unfulfilled":"Niezrealizowane","src.orders.components.OrderListFilter.1751787272":"Niezrealizowane","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","src.1395232177":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"Odnośnik","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"Anuluj zamówienie","src.orders.components.OrderDetailsPage.1854613983":"Anuluj zamówienie","src.orders.components.OrderDraftPage.1854613983":"Anuluj zamówienie","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"Klient","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"Klient","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"Taki sam jak adres wysyłki","src.orders.components.OrderCustomerEditDialog.1411666943":"Edytuj klienta","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.500287069":"Usuń wersję roboczą zamówienia","src.orders.components.OrderDraftCancelDialog.3199827590":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"Produkt","src.orders.components.OrderUnfulfilledItems.1895667608":"Produkt","src.orders.components.OrderDraftDetailsProducts.2796503714":"Ilość","src.orders.components.OrderFulfillment.2796503714":"Ilość","src.orders.components.OrderFulfillmentDialog.2796503714":"Ilość","src.orders.components.OrderUnfulfilledItems.2796503714":"Ilość","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"Suma częściowa","src.orders.components.OrderPayment.781550514":"Suma częściowa","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"Stwórz zamówienie","src.orders.components.OrderListPage.2826235371":"Stwórz zamówienie","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"Anuluj wysyłkę","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"Dodaj numer przesyłki","src.orders.components.OrderFulfillmentCancelDialog.732594284":"Anuluj realizację","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"Anuluj realizację","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"SKU","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"Numer referencyjny","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.2574162126":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"Zamówienie zostało w pełni opłacone","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"Zamówienie zostało złożone","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"Płatność","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2943502192":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"Wysyłka","src.productTypes.components.ProductTypeShipping.1325966144":"Wysyłka","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"Wysyłka","src.orders.components.OrderPayment.3768782744":"Kwota zablokowana","src.orders.components.OrderPayment.2320183694":"Kwota pobrana","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"Pobierz","src.orders.components.OrderPayment.2845258362":"Zwróć","src.orders.components.OrderPayment.2444197639":"Unieważnij","src.orders.components.OrderPayment.3500506678":"Oznacz jako opłacone","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"Kwota","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.2775402904":"","src.products.components.ProductListPage.2775402904":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"Zrealizuj","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.3880993240":"","src.orders.views.1161115149":"","src.orders.views.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.755314116":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"Tytuł","src.pages.components.PageList.1124600214":"Tytuł","src.pages.components.PageInfo.1116746286":"Zawartość","src.translations.components.TranslationsPagesPage.1116746286":"Zawartość","src.pages.components.PageList.3478065224":"Slug","src.pages.components.PageSlug.3478065224":"Slug","src.productTypes.components.ProductTypeAttributes.3478065224":"Slug","src.pages.components.PageList.3767550649":"Nieopublikowana","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.1767905232":"Dodaj stronę","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.3785394515":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"Wartości","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"Grafiki","src.products.components.ProductVariantImages.3240888698":"Grafiki","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"Stan magazynowy","src.products.components.ProductVariantStock.3841616483":"Stan magazynowy","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListPage.821159718":"","src.products.components.ProductListPage.1421689426":"","src.products.components.ProductListPage.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"Inwentarz","prodictStockInventoryLabel":"Inwentarz","src.products.components.ProductVariantStock.3490038570":"Inwentarz","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"","src.products.components.ProductVariants.2153006789":"","src.products.components.ProductVariantNavigation.2845381934":"Dodaj wariant","src.products.components.ProductVariants.2845381934":"Dodaj wariant","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1542417144":"","src.products.views.1591632382":"","src.products.views.490753666":"","src.products.views.672103788":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.1694086800":"","src.products.views.ProductList.224127438":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.products.views.2178905289":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1756957616":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.889729490":"Dodaj typ produktów","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.4080551769":"","src.productTypes.views.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.352297149":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2474410767":"Dodaj strefę wysyłki","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.254167659":"","src.shipping.views.ShippingZoneDetails.1790261672":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"Klucz","src.siteSettings.components.SiteSettingsKeys.2446088470":"Klucz","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.3490059488":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"Uprawnienia","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.3247064221":"Aktywny","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.802625341":"Dodaj nowego pracownika","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"Użytkownik jest aktywny","src.staff.views.2240444792":"","src.staff.views.2728048444":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file +{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.3824684885":"","src.attributes.components.AttributeListPage.2417065806":"","src.attributes.components.AttributeListPage.3916653510":"","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.4048785456":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"Nazwa","src.categories.components.CategoryProductList.636461959":"Nazwa","src.components.ProductList.636461959":"Nazwa","src.products.components.ProductList.636461959":"Nazwa","src.collections.components.CollectionDetails.636461959":"Nazwa","src.collections.components.CollectionProducts.636461959":"Nazwa","src.products.components.ProductDetailsForm.636461959":"Nazwa","src.discounts.components.SaleInfo.636461959":"Nazwa","src.discounts.components.SaleList.636461959":"Nazwa","src.discounts.components.SaleSummary.636461959":"Nazwa","menuItemDialogNameLabel":"Nazwa","src.plugins.components.PluginsList.636461959":"Nazwa","src.products.components.ProductVariants.636461959":"Nazwa","src.shipping.components.ShippingZoneRates.636461959":"Nazwa","src.shipping.components.ShippingZonesList.636461959":"Nazwa","src.staff.components.StaffList.636461959":"Nazwa","src.translations.components.TranslationsEntitiesList.636461959":"Nazwa","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.351422234":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.109182747":"Logowanie","src.auth.components.LoginPage.4028609483":"","src.auth.components.NewPasswordPage.1915811227":"","src.auth.components.NewPasswordPage.1254879564":"","src.auth.components.NewPasswordPage.2799926859":"","src.auth.components.NewPasswordPage.4253911811":"","src.auth.components.NewPasswordPage.2342634351":"","src.auth.components.ResetPasswordPage.2370700732":"","src.auth.components.ResetPasswordPage.3663311080":"","src.auth.components.ResetPasswordSuccessPage.4066297200":"","src.auth.components.ResetPasswordSuccessPage.2245157344":"","src.auth.views.2388238158":"","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"","src.categories.views.2004894945":"","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.2159874182":"Podkategorie","src.categories.components.CategoryUpdatePage.2159874182":"Podkategorie","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.1140231710":"","src.categories.views.1140231710":"","src.categories.components.CategoryListPage.4294878092":"","src.categories.components.CategoryListPage.3841025483":"","src.translations.components.TranslationsEntitiesListPage.3841025483":"","src.categories.components.CategoryProductList.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductList.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProductList.3640454975":"Opublikowany","src.components.ProductList.3640454975":"Opublikowany","src.products.components.ProductList.3640454975":"Opublikowany","src.products.components.ProductListPage.3640454975":"Opublikowany","productStatusLabel":"Opublikowany","src.collections.components.CollectionList.3640454975":"Opublikowany","src.collections.components.CollectionProducts.3640454975":"Opublikowany","src.discounts.components.DiscountProducts.3640454975":"Opublikowany","src.pages.components.PageList.3640454975":"Opublikowany","src.products.views.ProductList.published":"Opublikowany","src.categories.components.CategoryProductList.1134347598":"Cena","src.orders.components.OrderFulfillment.1134347598":"Cena","src.products.components.ProductList.1134347598":"Cena","src.products.components.ProductListPage.1134347598":"Cena","src.products.components.ProductPricing.1134347598":"Cena","src.components.ProductList.1134347598":"Cena","src.orders.components.OrderDraftDetailsProducts.1134347598":"Cena","src.orders.components.OrderUnfulfilledItems.1134347598":"Cena","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"Cena","src.shipping.components.ShippingZoneRates.1134347598":"Cena","src.categories.components.CategoryProductList.2341910657":"Nie opublikowano","src.products.components.ProductList.2341910657":"Nie opublikowano","src.collections.components.CollectionList.2341910657":"Nie opublikowano","src.collections.components.CollectionProducts.2341910657":"Nie opublikowano","src.discounts.components.DiscountProducts.2341910657":"Nie opublikowano","src.components.ProductList.2341910657":"Nie opublikowano","src.categories.components.CategoryProductList.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.products.components.ProductList.1657559629":"","src.categories.components.CategoryProducts.4164156574":"","src.categories.components.CategoryProducts.3554578821":"Dodaj produkt","src.categories.components.CategoryUpdatePage.2968663655":"Produkty","src.discounts.components.DiscountCategories.2968663655":"Produkty","src.discounts.components.DiscountCollections.2968663655":"Produkty","src.products":"Produkty","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryUpdatePage.3229914152":"","src.categories.components.CategoryUpdatePage.770296100":"","src.categories.views.1754466114":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.CategoryList.3488150607":"","src.categories.views.712767046":"","src.categories.views.CategoryList.712767046":"","src.categories.views.299584400":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.categories.views.CategoryList.2144707585":"","src.collections.components.CollectionCreatePage.3958681866":"Dodaj kolekcję","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionCreatePage.2001551496":"","src.collections.components.CollectionDetailsPage.2001551496":"","src.pages.components.PageDetailsPage.2001551496":"","src.products.components.ProductCreatePage.2001551496":"","src.products.components.ProductUpdatePage.2001551496":"","src.collections.components.CollectionCreatePage.1815688500":"","src.collections.components.CollectionDetailsPage.1815688500":"","src.pages.components.PageDetailsPage.1815688500":"","src.products.components.ProductCreatePage.1815688500":"","src.products.components.ProductUpdatePage.1815688500":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"Dostępność","src.availability":"","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionListPage.686910896":"","src.collections.views.686910896":"","src.collections.components.CollectionListPage.1631917001":"","src.collections.components.CollectionListPage.4057224233":"","src.components.AssignCollectionDialog.4057224233":"","src.translations.components.TranslationsEntitiesListPage.4057224233":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"","src.collections.views.2402899582":"","src.collections.views.CollectionList.2237014112":"Cofnij publikację","src.pages.views.2237014112":"Cofnij publikację","src.products.views.ProductList.2237014112":"Cofnij publikację","src.collections.views.CollectionList.1547167026":"Opublikuj","src.pages.views.1547167026":"Opublikuj","src.products.views.ProductList.1547167026":"Opublikuj","src.collections.views.CollectionList.2823425739":"","src.collections.views.CollectionList.1348793822":"","src.collections.views.CollectionList.2637364047":"","src.collections.views.CollectionList.3944356444":"","src.collections.views.CollectionList.3817188998":"","src.collections.views.CollectionList.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"Wyloguj się","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"","src.components.ErrorMessageCard.2845142593":"","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.Filter.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.Filter.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.FilterBar.2340527467":"","src.components.SearchBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"Dodaj","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"Widoczność","src.pages.components.PageList.1459686496":"Widoczność","src.products.components.ProductListFilter.1459686496":"Widoczność","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"Ukryte","src.products.views.ProductList.hidden":"Ukryte","src.components.VisibilityCard.292404896":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","src.configuration.2326418019":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","src.configuration.3655543906":"","configurationMenuShipping":"","configurationMenuTaxes":"","src.configuration.3140151600":"","configurationMenuStaff":"","src.configuration.1233229030":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","configurationPluginsPages":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"Adres nabywcy","src.customers.components.CustomerAddresses.3517722732":"Adres dostawy","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"Adres","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"Notatki","src.orders.components.OrderCustomerNote.1520756907":"Notatki","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"Notatka","src.customers.components.CustomerDetails.577013340":"Notatka","src.customers.components.CustomerCreatePage.1934221653":"Dodaj klienta","src.customers.components.CustomerListPage.1934221653":"Dodaj klienta","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerListPage.477293306":"","src.customers.components.CustomerListPage.1643417013":"","src.customers.components.CustomerOrders.3878642352":"Ostatnie zamówienia","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"Data","src.orders.components.OrderDraftList.4205493358":"Data","src.orders.components.OrderList.4205493358":"Data","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"Status","src.orders.components.OrderListFilter.1756106276":"Status","src.plugins.components.PluginInfo.1756106276":"Status","src.products.components.ProductListFilter.1756106276":"Status","src.products.components.ProductVariants.1756106276":"Status","src.customers.components.CustomerOrders.878013594":"Suma","src.orders.components.OrderDraftDetailsProducts.878013594":"Suma","src.orders.components.OrderDraftDetailsSummary.878013594":"Suma","src.orders.components.OrderDraftList.878013594":"Suma","src.orders.components.OrderFulfillment.878013594":"Suma","src.orders.components.OrderUnfulfilledItems.878013594":"Suma","src.orders.components.OrderList.878013594":"Suma","src.orders.components.OrderPayment.878013594":"Suma","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"Usuń adres","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.CustomerList.1946482599":"","src.customers.views.CustomerList.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","src.discounts.components.SaleListPage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"Wartość","src.discounts.components.SaleSummary.1148029984":"Wartość","src.discounts.components.VoucherList.1148029984":"Wartość","src.discounts.components.VoucherSummary.1148029984":"Wartość","src.discounts.components.VoucherValue.1148029984":"Wartość","src.products.components.ProductAttributes.1148029984":"Wartość","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.3907768880":"","src.discounts.components.SaleListPage.1866913828":"","src.translations.components.TranslationsEntitiesListPage.1866913828":"","src.discounts.components.SalePricing.1099355007":"Cennik","src.products.components.ProductPricing.1099355007":"Cennik","src.products.components.ProductVariantPrice.1099355007":"Cennik","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"Kraje","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"Kod","src.discounts.components.VoucherSummary.78726751":"Kod","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.614836274":"","src.discounts.components.VoucherListPage.1112241061":"","src.discounts.components.VoucherListPage.1930485532":"","src.translations.components.TranslationsEntitiesListPage.1930485532":"","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"Niektóre produkty","src.discounts.shipment":"Wysyłka","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.SaleList.2809303671":"","src.discounts.views.SaleList.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.VoucherList.367317371":"","src.discounts.views.VoucherList.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"Aktywność","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.somethingWentWrong":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"Anuluj","src.orders.views.OrderList.3528672691":"Anuluj","src.confirm":"","src.delete":"Usuń","src.edit":"Edytuj","src.manage":"","src.remove":"Usuń","src.save":"Zapisz","src.show":"","src.undo":"","src.attributes":"Atrybuty","src.products.components.ProductAttributes.4153345096":"Atrybuty","src.categories":"Kategorie","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"Kolekcje","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"Ustawienia","src.customers":"Klienci","src.draftOrders":"","src.home":"Strona główna","src.navigation":"Nawigacja","src.orders":"Zamówienia","src.pages":"Strony","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.plugins":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"Sprzedaż","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"Podatki","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"Podatki","src.taxes.components.CountryListPage.3955023266":"Podatki","src.translations":"","src.vouchers":"Kupony zniżkowe","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"Opłacone","src.partiallyPaid":"","src.partiallyRefunded":"Częściowo zwrócone","src.refunded":"Zwrócone","src.unpaid":"","src.cancelled":"Anulowany","src.draft":"Szkic","src.fulfilled":"Zrealizowane","src.orders.views.OrderList.fulfilled":"Zrealizowane","src.orders.components.OrderListFilter.1712863026":"Zrealizowane","src.partiallyFulfilled":"Częściowo zrealizowane","src.unfulfilled":"Niezrealizowane","src.orders.views.OrderList.unfulfilled":"Niezrealizowane","src.orders.components.OrderListFilter.1751787272":"Niezrealizowane","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"Odnośnik","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"Anuluj zamówienie","src.orders.components.OrderDetailsPage.1854613983":"Anuluj zamówienie","src.orders.components.OrderDraftPage.1854613983":"Anuluj zamówienie","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"Klient","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"Klient","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"Taki sam jak adres wysyłki","src.orders.components.OrderCustomerEditDialog.1411666943":"Edytuj klienta","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.632633254":"","src.orders.components.OrderDraftCancelDialog.36681973":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"Produkt","src.orders.components.OrderUnfulfilledItems.1895667608":"Produkt","src.orders.components.OrderDraftDetailsProducts.2796503714":"Ilość","src.orders.components.OrderFulfillment.2796503714":"Ilość","src.orders.components.OrderFulfillmentDialog.2796503714":"Ilość","src.orders.components.OrderUnfulfilledItems.2796503714":"Ilość","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"Suma częściowa","src.orders.components.OrderPayment.781550514":"Suma częściowa","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"Stwórz zamówienie","src.orders.components.OrderListPage.2826235371":"Stwórz zamówienie","src.orders.components.OrderDraftListPage.551325728":"","src.orders.components.OrderDraftListPage.77765281":"","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"Anuluj wysyłkę","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"Dodaj numer przesyłki","src.orders.components.OrderFulfillmentCancelDialog.732594284":"Anuluj realizację","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"Anuluj realizację","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"SKU","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"Numer referencyjny","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.4067959693":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"Zamówienie zostało w pełni opłacone","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"Zamówienie zostało złożone","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"Płatność","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2415661583":"","src.orders.views.OrderList.readyToCapture":"","src.orders.components.OrderListFilter.2222765704":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"Wysyłka","src.productTypes.components.ProductTypeShipping.1325966144":"Wysyłka","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"Wysyłka","src.orders.components.OrderPayment.3768782744":"Kwota zablokowana","src.orders.components.OrderPayment.2320183694":"Kwota pobrana","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"Pobierz","src.orders.components.OrderPayment.2845258362":"Zwróć","src.orders.components.OrderPayment.2444197639":"Unieważnij","src.orders.components.OrderPayment.3500506678":"Oznacz jako opłacone","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"Kwota","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.1542417144":"","src.products.components.ProductListPage.1542417144":"","src.products.views.1542417144":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"Zrealizuj","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.OrderDraftList.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.OrderDraftList.1648805446":"","src.orders.views.OrderDraftList.1161115149":"","src.orders.views.OrderDraftList.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.1068617485":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"Tytuł","src.pages.components.PageList.1124600214":"Tytuł","src.pages.components.PageInfo.1116746286":"Zawartość","src.translations.components.TranslationsPagesPage.1116746286":"Zawartość","src.pages.components.PageList.3478065224":"Slug","src.pages.components.PageSlug.3478065224":"Slug","src.productTypes.components.ProductTypeAttributes.3478065224":"Slug","src.pages.components.PageList.3767550649":"Nieopublikowana","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.3785394515":"","src.pages.views.3785394515":"","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.plugins.components.PluginInfo.3425535100":"","src.plugins.components.PluginsDetailsPage.3425535100":"","src.plugins.components.PluginInfo.1049131348":"","src.plugins.components.PluginInfo.4013064767":"","src.plugins.components.PluginsDetailsPage.3352026836":"","src.plugins.components.PluginsDetailsPage.2277745418":"","src.plugins.components.PluginsDetailsPage.1970881031":"","src.plugins.components.PluginSettings.1970881031":"","src.plugins.components.PluginsDetailsPage.4241018152":"","src.plugins.components.PluginsList.3247064221":"Aktywny","src.staff.components.StaffList.3247064221":"Aktywny","src.plugins.components.PluginsList.4120604650":"","src.plugins.components.PluginsList.666641390":"","src.plugins.views.100549097":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"Wartości","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"Grafiki","src.products.components.ProductVariantImages.3240888698":"Grafiki","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"Stan magazynowy","src.products.components.ProductVariantStock.3841616483":"Stan magazynowy","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListFilter.821159718":"","src.products.components.ProductListFilter.1421689426":"","src.products.components.ProductListFilter.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"Inwentarz","prodictStockInventoryLabel":"Inwentarz","src.products.components.ProductVariantStock.3490038570":"Inwentarz","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"","src.products.components.ProductVariants.2153006789":"","src.products.components.ProductVariantNavigation.2845381934":"Dodaj wariant","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.3989383405":"","src.products.views.3989383405":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1591632382":"","src.products.views.1731766393":"","src.products.views.2880386427":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1217376589":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.3479705616":"","src.productTypes.components.ProductTypeListPage.1776073799":"","src.productTypes.components.ProductTypeListPage.3420445375":"","src.translations.components.TranslationsEntitiesListPage.3420445375":"","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.ProductTypeList.4080551769":"","src.productTypes.views.ProductTypeList.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRates.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2673544109":"","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.1947090060":"","src.shipping.views.ShippingZoneDetails.131963671":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"Klucz","src.siteSettings.components.SiteSettingsKeys.2446088470":"Klucz","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.1481503299":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"Uprawnienia","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.797461521":"","src.staff.components.StaffListPage.2852350932":"","src.staff.components.StaffListPage.61043583":"","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"Użytkownik jest aktywny","src.staff.views.1308770978":"","src.staff.views.8878988":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.2105464697":"","src.translations.components.TranslationsEntitiesListPage.2559018090":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file diff --git a/locale/pl.po b/locale/pl.po index f8cf0918b..4b3dd496e 100644 --- a/locale/pl.po +++ b/locale/pl.po @@ -9,7 +9,7 @@ # msgid "" msgstr "" -"POT-Creation-Date: 2019-09-06T13:56:36.897Z\n" +"POT-Creation-Date: 2019-09-16T15:25:09.340Z\n" "Last-Translator: Szymon Jasiński , 2019\n" "Language-Team: Polish (https://www.transifex.com/mirumee/teams/34782/pl/)\n" "MIME-Version: 1.0\n" @@ -147,22 +147,6 @@ msgctxt "create new menu item, header" msgid "Add Item" msgstr "" -#. [menuCreateDialogHeader] - dialog header -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json -msgctxt "dialog header" -msgid "Add Menu" -msgstr "" - -#. [menuListPageAddMenu] - button -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json -msgctxt "button" -msgid "Add Menu" -msgstr "" - #. [src.siteSettings.components.SiteSettingsKeyDialog.1238948746] - dialog #. header #. defaultMessage is: @@ -172,14 +156,6 @@ msgctxt "dialog header" msgid "Add New Authorization Key" msgstr "" -#. [src.pages.components.PageDetailsPage.755314116] - page header -#. defaultMessage is: -#. Add Page -#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json -msgctxt "page header" -msgid "Add Page" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.2892088870] - dialog header #. defaultMessage is: #. Add Price Rate @@ -188,38 +164,6 @@ msgctxt "dialog header" msgid "Add Price Rate" msgstr "" -#. [src.orders.components.OrderProductAddDialog.2775402904] - dialog header -#. defaultMessage is: -#. Add Product -#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json -msgctxt "dialog header" -msgid "Add Product" -msgstr "" - -#. [src.products.components.ProductListPage.2775402904] - button -#. defaultMessage is: -#. Add Product -#: build/locale/src/products/components/ProductListPage/ProductListPage.json -msgctxt "button" -msgid "Add Product" -msgstr "" - -#. [src.discounts.components.SaleListPage.1742771332] - button -#. defaultMessage is: -#. Add Sale -#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json -msgctxt "button" -msgid "Add Sale" -msgstr "" - -#. [src.staff.components.StaffAddMemberDialog.3490059488] - dialog header -#. defaultMessage is: -#. Add Staff Member -#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json -msgctxt "dialog header" -msgid "Add Staff Member" -msgstr "" - #. [src.attributes.components.AttributeValueEditDialog.1841790893] - add #. attribute value #. defaultMessage is: @@ -229,14 +173,6 @@ msgctxt "add attribute value" msgid "Add Value" msgstr "" -#. [src.products.views.2178905289] - header -#. defaultMessage is: -#. Add Variant -#: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "header" -msgid "Add Variant" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.1397795758] - add weight #. based shipping method, dialog header #. defaultMessage is: @@ -254,14 +190,6 @@ msgctxt "button" msgid "Add address" msgstr "" -#. [src.attributes.components.AttributeListPage.350498821] - button -#. defaultMessage is: -#. Add attribute -#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json -msgctxt "button" -msgid "Add attribute" -msgstr "Dodaj atrybut" - #. [src.siteSettings.components.SiteSettingsKeyDialog.50561933] - button #. defaultMessage is: #. Add authentication @@ -270,14 +198,6 @@ msgctxt "button" msgid "Add authentication" msgstr "" -#. [src.categories.components.CategoryListPage.228151782] - button -#. defaultMessage is: -#. Add category -#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json -msgctxt "button" -msgid "Add category" -msgstr "Dodaj kategorię" - #. [src.collections.components.CollectionCreatePage.3958681866] - page header #. defaultMessage is: #. Add collection @@ -286,14 +206,6 @@ msgctxt "page header" msgid "Add collection" msgstr "Dodaj kolekcję" -#. [src.collections.components.CollectionListPage.3958681866] - button -#. defaultMessage is: -#. Add collection -#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json -msgctxt "button" -msgid "Add collection" -msgstr "Dodaj kolekcję" - #. [src.customers.components.CustomerCreatePage.1934221653] - page header #. defaultMessage is: #. Add customer @@ -326,14 +238,6 @@ msgctxt "button" msgid "Add key" msgstr "" -#. [menuItemsAddItem] - add new menu item -#. defaultMessage is: -#. Add new item -#: build/locale/src/navigation/components/MenuItems/MenuItems.json -msgctxt "add new menu item" -msgid "Add new item" -msgstr "" - #. [menuItemsPlaceholder] #. defaultMessage is: #. Add new menu item to begin creating menu @@ -368,14 +272,6 @@ msgctxt "button" msgid "Add or Edit Link" msgstr "" -#. [src.pages.components.PageListPage.1767905232] - button -#. defaultMessage is: -#. Add page -#: build/locale/src/pages/components/PageListPage/PageListPage.json -msgctxt "button" -msgid "Add page" -msgstr "Dodaj stronę" - #. [src.categories.components.CategoryProducts.3554578821] - button #. defaultMessage is: #. Add product @@ -384,14 +280,6 @@ msgctxt "button" msgid "Add product" msgstr "Dodaj produkt" -#. [src.productTypes.components.ProductTypeListPage.889729490] - button -#. defaultMessage is: -#. Add product type -#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json -msgctxt "button" -msgid "Add product type" -msgstr "Dodaj typ produktów" - #. [src.orders.components.OrderDraftDetails.2528459381] - button #. defaultMessage is: #. Add products @@ -400,14 +288,6 @@ msgctxt "button" msgid "Add products" msgstr "" -#. [src.shipping.components.ShippingZoneRates.352297149] - button -#. defaultMessage is: -#. Add rate -#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json -msgctxt "button" -msgid "Add rate" -msgstr "" - #. [src.categories.components.CategoryCreatePage.2563994280] #. defaultMessage is: #. Add search engine title and description to make this category easier to @@ -469,30 +349,6 @@ msgctxt "button" msgid "Add shipping carrier" msgstr "" -#. [src.shipping.components.ShippingZonesList.2474410767] - button -#. defaultMessage is: -#. Add shipping zone -#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json -msgctxt "button" -msgid "Add shipping zone" -msgstr "Dodaj strefę wysyłki" - -#. [src.staff.components.StaffListPage.802625341] - button -#. defaultMessage is: -#. Add staff member -#: build/locale/src/staff/components/StaffListPage/StaffListPage.json -msgctxt "button" -msgid "Add staff member" -msgstr "Dodaj nowego pracownika" - -#. [src.categories.components.CategoryList.435697837] - button -#. defaultMessage is: -#. Add subcategory -#: build/locale/src/categories/components/CategoryList/CategoryList.json -msgctxt "button" -msgid "Add subcategory" -msgstr "" - #. [src.attributes.components.AttributeProperties.673770329] - add attribute #. as column in product list table #. defaultMessage is: @@ -520,35 +376,14 @@ msgctxt "dialog header" msgid "Add tracking code" msgstr "" -#. [src.attributes.components.AttributeValues.254756045] - add attribute value -#. button -#. defaultMessage is: -#. Add value -#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json -msgctxt "add attribute value button" -msgid "Add value" -msgstr "" - #. [src.products.components.ProductVariantNavigation.2845381934] - button #. defaultMessage is: #. Add variant -#. [src.products.components.ProductVariants.2845381934] - button -#. defaultMessage is: -#. Add variant #: build/locale/src/products/components/ProductVariantNavigation/ProductVariantNavigation.json -#: build/locale/src/products/components/ProductVariants/ProductVariants.json msgctxt "button" msgid "Add variant" msgstr "Dodaj wariant" -#. [src.discounts.components.VoucherListPage.1536809153] - button -#. defaultMessage is: -#. Add voucher -#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json -msgctxt "button" -msgid "Add voucher" -msgstr "Dodaj kupon" - #. [src.attributes.views.AttributeDetails.634268988] - added new attribute #. value #. defaultMessage is: @@ -606,14 +441,6 @@ msgctxt "description" msgid "Address line 2" msgstr "" -#. [src.customers.components.CustomerAddress.1320082647] - addres card header -#. defaultMessage is: -#. Address {addressNumber} -#: build/locale/src/customers/components/CustomerAddress/CustomerAddress.json -msgctxt "addres card header" -msgid "Address {addressNumber}" -msgstr "" - #. [src.attributes.components.AttributeValues.1565474525] - attribute values #. list: slug column header #. defaultMessage is: @@ -663,6 +490,46 @@ msgctxt "tax rate" msgid "Agricultural supplies" msgstr "" +#. [src.attributes.components.AttributeListPage.2417065806] - tab name +#. defaultMessage is: +#. All Attributes +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "tab name" +msgid "All Attributes" +msgstr "" + +#. [src.categories.components.CategoryListPage.4294878092] - tab name +#. defaultMessage is: +#. All Categories +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "tab name" +msgid "All Categories" +msgstr "" + +#. [src.collections.components.CollectionListPage.1631917001] - tab name +#. defaultMessage is: +#. All Collections +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "tab name" +msgid "All Collections" +msgstr "" + +#. [src.customers.components.CustomerListPage.477293306] - tab name +#. defaultMessage is: +#. All Customers +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "tab name" +msgid "All Customers" +msgstr "" + +#. [src.orders.components.OrderDraftListPage.551325728] - tab name +#. defaultMessage is: +#. All Drafts +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "tab name" +msgid "All Drafts" +msgstr "" + #. [src.orders.components.OrderListPage.875489544] - tab name #. defaultMessage is: #. All Orders @@ -680,22 +547,54 @@ msgctxt "section header" msgid "All Photos" msgstr "" -#. [src.products.components.ProductListPage.821159718] - tab name +#. [src.productTypes.components.ProductTypeListPage.1776073799] - tab name +#. defaultMessage is: +#. All Product Types +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "tab name" +msgid "All Product Types" +msgstr "" + +#. [src.products.components.ProductListFilter.821159718] - tab name #. defaultMessage is: #. All Products -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "tab name" msgid "All Products" msgstr "" -#. [src.categories.components.CategoryList.3229914152] - section header +#. [src.discounts.components.SaleListPage.3907768880] - tab name +#. defaultMessage is: +#. All Sales +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "tab name" +msgid "All Sales" +msgstr "" + +#. [src.staff.components.StaffListPage.2852350932] - tab name +#. defaultMessage is: +#. All Staff Members +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "tab name" +msgid "All Staff Members" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.3229914152] - section header #. defaultMessage is: #. All Subcategories -#: build/locale/src/categories/components/CategoryList/CategoryList.json +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json msgctxt "section header" msgid "All Subcategories" msgstr "" +#. [src.discounts.components.VoucherListPage.1112241061] - tab name +#. defaultMessage is: +#. All Vouchers +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "tab name" +msgid "All Vouchers" +msgstr "" + #. [src.taxes.components.TaxConfiguration.142803418] #. defaultMessage is: #. All products prices are entered with tax included @@ -803,6 +702,14 @@ msgctxt "description" msgid "Are you sure you want to delete collection's image?" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.36681973] +#. defaultMessage is: +#. Are you sure you want to delete draft #{number}? +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "description" +msgid "Are you sure you want to delete draft #{number}?" +msgstr "" + #. [menuDetailsDeleteMenuContent] #. defaultMessage is: #. Are you sure you want to delete menu {menuName}? @@ -819,6 +726,14 @@ msgctxt "description" msgid "Are you sure you want to delete this address from users address book?" msgstr "" +#. [src.products.views.2880386427] +#. defaultMessage is: +#. Are you sure you want to delete this image? +#: build/locale/src/products/views/ProductImage.json +msgctxt "description" +msgid "Are you sure you want to delete this image?" +msgstr "" + #. [src.attributes.components.AttributeDeleteDialog.3738429348] - dialog #. content #. defaultMessage is: @@ -869,12 +784,7 @@ msgstr "" #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this attribute} #. other{{displayQuantity} categories}}? -#. [src.categories.views.844574071] -#. defaultMessage is: -#. Are you sure you want to delete {counter,plural,one{this attribute} -#. other{{displayQuantity} categories}}? #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this attribute} " @@ -892,22 +802,33 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.2497542455] +#. [src.categories.views.CategoryList.2144707585] +#. defaultMessage is: +#. Are you sure you want to delete {counter,plural,one{this category} +#. other{{displayQuantity} categories}}? +#: build/locale/src/categories/views/CategoryList/CategoryList.json +msgctxt "description" +msgid "" +"Are you sure you want to delete {counter,plural,one{this category} " +"other{{displayQuantity} categories}}?" +msgstr "" + +#. [src.collections.views.CollectionList.2497542455] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this collection} " "other{{displayQuantity} collections}}?" msgstr "" -#. [src.customers.views.409347866] +#. [src.customers.views.CustomerList.409347866] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this customer} #. other{{displayQuantity} customers}}? -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this customer} " @@ -925,11 +846,11 @@ msgid "" "other{{displayQuantity} menus}}?" msgstr "" -#. [src.orders.views.1389231130] - dialog content +#. [src.orders.views.OrderDraftList.1389231130] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this order draft} #. other{{displayQuantity} orderDrafts}}? -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this order draft} " @@ -947,11 +868,11 @@ msgid "" "other{{displayQuantity} pages}}?" msgstr "" -#. [src.productTypes.views.2294091098] - dialog content +#. [src.productTypes.views.ProductTypeList.2294091098] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this product type} #. other{{displayQuantity} product types}}? -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this product type} " @@ -969,11 +890,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.discounts.views.2516361175] - dialog content +#. [src.discounts.views.SaleList.2516361175] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this sale} #. other{{displayQuantity} sales}}? -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this sale} " @@ -1002,17 +923,33 @@ msgid "" "other{{displayQuantity} variants}}?" msgstr "" -#. [src.discounts.views.1791926983] - dialog content +#. [src.discounts.views.VoucherList.1791926983] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this voucher} #. other{{displayQuantity} vouchers}}? -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this voucher} " "other{{displayQuantity} vouchers}}?" msgstr "" +#. [src.shipping.views.ShippingZoneDetails.131963671] - unassign country +#. defaultMessage is: +#. Are you sure you want to delete {countryName} from this shipping zone? +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country" +msgid "Are you sure you want to delete {countryName} from this shipping zone?" +msgstr "" + +#. [src.staff.views.8878988] +#. defaultMessage is: +#. Are you sure you want to delete {email} from staff members? +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "description" +msgid "Are you sure you want to delete {email} from staff members?" +msgstr "" + #. [src.customers.views.1927691511] - delete customer, dialog content #. defaultMessage is: #. Are you sure you want to delete {email}? @@ -1127,11 +1064,11 @@ msgctxt "description" msgid "Are you sure you want to mark this order as paid?" msgstr "" -#. [src.collections.views.1348793822] +#. [src.collections.views.CollectionList.1348793822] #. defaultMessage is: #. Are you sure you want to publish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to publish {counter,plural,one{this collection} " @@ -1160,30 +1097,6 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.orders.components.OrderDraftCancelDialog.3199827590] -#. defaultMessage is: -#. Are you sure you want to remove draft #{number}? -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "description" -msgid "Are you sure you want to remove draft #{number}?" -msgstr "" - -#. [src.products.views.672103788] -#. defaultMessage is: -#. Are you sure you want to remove this image? -#: build/locale/src/products/views/ProductImage.json -msgctxt "description" -msgid "Are you sure you want to remove this image?" -msgstr "" - -#. [src.shipping.views.ShippingZoneDetails.1790261672] - unassign country -#. defaultMessage is: -#. Are you sure you want to remove {countryName} from this shipping zone? -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country" -msgid "Are you sure you want to remove {countryName} from this shipping zone?" -msgstr "" - #. [src.staff.views.3945766678] #. defaultMessage is: #. Are you sure you want to remove {email} avatar? @@ -1192,14 +1105,6 @@ msgctxt "description" msgid "Are you sure you want to remove {email} avatar?" msgstr "" -#. [src.staff.views.2728048444] -#. defaultMessage is: -#. Are you sure you want to remove {email} from staff members? -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "description" -msgid "Are you sure you want to remove {email} from staff members?" -msgstr "" - #. [src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450] #. defaultMessage is: #. Are you sure you want to unassign {attributeName} from {productTypeName}? @@ -1280,11 +1185,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.3944356444] +#. [src.collections.views.CollectionList.3944356444] #. defaultMessage is: #. Are you sure you want to unpublish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to unpublish {counter,plural,one{this collection} " @@ -1445,6 +1350,15 @@ msgctxt "button" msgid "Assign products" msgstr "" +#. [src.attributes.components.AttributeValues.351422234] - assign attribute +#. value button +#. defaultMessage is: +#. Assign value +#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json +msgctxt "assign attribute value button" +msgid "Assign value" +msgstr "" + #. [src.attributes.components.AttributeDetails.3605174225] - attribute's slug #. short code label #. defaultMessage is: @@ -1523,6 +1437,14 @@ msgctxt "product attributes, section header" msgid "Attributes" msgstr "Atrybuty" +#. [src.configuration.2326418019] +#. defaultMessage is: +#. Attributes and Product Typess +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Attributes and Product Typess" +msgstr "" + #. [src.attributes.views.AttributeList.3218248395] - deleted multiple #. attributes #. defaultMessage is: @@ -2306,6 +2228,22 @@ msgctxt "description" msgid "Country area" msgstr "" +#. [menuCreateDialogHeader] - dialog header +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json +msgctxt "dialog header" +msgid "Create Menu" +msgstr "" + +#. [menuListPageAddMenu] - button +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json +msgctxt "button" +msgid "Create Menu" +msgstr "" + #. [src.attributes.components.AttributePage.2855501559] - page title #. defaultMessage is: #. Create New Attribute @@ -2330,6 +2268,30 @@ msgctxt "header" msgid "Create New Shipping Zone" msgstr "" +#. [src.pages.components.PageDetailsPage.1068617485] - page header +#. defaultMessage is: +#. Create Page +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page header" +msgid "Create Page" +msgstr "" + +#. [src.orders.components.OrderProductAddDialog.1542417144] - dialog header +#. defaultMessage is: +#. Create Product +#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json +msgctxt "dialog header" +msgid "Create Product" +msgstr "" + +#. [src.products.components.ProductListPage.1542417144] - button +#. defaultMessage is: +#. Create Product +#: build/locale/src/products/components/ProductListPage/ProductListPage.json +msgctxt "button" +msgid "Create Product" +msgstr "" + #. [src.products.views.1542417144] - window title #. defaultMessage is: #. Create Product @@ -2362,11 +2324,19 @@ msgctxt "page header" msgid "Create Sale" msgstr "" -#. [src.products.views.2362587265] - window title +#. [src.discounts.components.SaleListPage.3866518732] - button +#. defaultMessage is: +#. Create Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "button" +msgid "Create Sale" +msgstr "" + +#. [src.products.views.2362587265] - header #. defaultMessage is: #. Create Variant #: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "window title" +msgctxt "header" msgid "Create Variant" msgstr "" @@ -2378,6 +2348,22 @@ msgctxt "page header" msgid "Create Voucher" msgstr "" +#. [src.attributes.components.AttributeListPage.3824684885] - button +#. defaultMessage is: +#. Create attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "button" +msgid "Create attribute" +msgstr "" + +#. [src.categories.components.CategoryListPage.1140231710] - button +#. defaultMessage is: +#. Create category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "button" +msgid "Create category" +msgstr "" + #. [src.categories.views.1140231710] - window title #. defaultMessage is: #. Create category @@ -2386,6 +2372,14 @@ msgctxt "window title" msgid "Create category" msgstr "" +#. [src.collections.components.CollectionListPage.686910896] - button +#. defaultMessage is: +#. Create collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "button" +msgid "Create collection" +msgstr "" + #. [src.collections.views.686910896] - window title #. defaultMessage is: #. Create collection @@ -2402,6 +2396,14 @@ msgctxt "window title" msgid "Create customer" msgstr "" +#. [menuItemsAddItem] - add new menu item +#. defaultMessage is: +#. Create new item +#: build/locale/src/navigation/components/MenuItems/MenuItems.json +msgctxt "add new menu item" +msgid "Create new item" +msgstr "" + #. [src.orders.components.OrderDraftListPage.2826235371] - button #. defaultMessage is: #. Create order @@ -2414,6 +2416,14 @@ msgctxt "button" msgid "Create order" msgstr "Stwórz zamówienie" +#. [src.pages.components.PageListPage.3785394515] - button +#. defaultMessage is: +#. Create page +#: build/locale/src/pages/components/PageListPage/PageListPage.json +msgctxt "button" +msgid "Create page" +msgstr "" + #. [src.pages.views.3785394515] - header #. defaultMessage is: #. Create page @@ -2425,11 +2435,55 @@ msgstr "" #. [src.shipping.components.ShippingZoneRateDialog.16061680] - button #. defaultMessage is: #. Create rate +#. [src.shipping.components.ShippingZoneRates.16061680] - button +#. defaultMessage is: +#. Create rate #: build/locale/src/shipping/components/ShippingZoneRateDialog/ShippingZoneRateDialog.json +#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json msgctxt "button" msgid "Create rate" msgstr "" +#. [src.shipping.components.ShippingZonesList.2673544109] - button +#. defaultMessage is: +#. Create shipping zone +#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json +msgctxt "button" +msgid "Create shipping zone" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.770296100] - button +#. defaultMessage is: +#. Create subcategory +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json +msgctxt "button" +msgid "Create subcategory" +msgstr "" + +#. [src.products.components.ProductVariants.3989383405] - button +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/components/ProductVariants/ProductVariants.json +msgctxt "button" +msgid "Create variant" +msgstr "" + +#. [src.products.views.3989383405] - window title +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/views/ProductVariantCreate.json +msgctxt "window title" +msgid "Create variant" +msgstr "" + +#. [src.discounts.components.VoucherListPage.614836274] - button +#. defaultMessage is: +#. Create voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "button" +msgid "Create voucher" +msgstr "" + #. [src.collections.views.1597339737] #. defaultMessage is: #. Created collection @@ -2476,7 +2530,11 @@ msgstr "" #. [src.components.FilterBar.2340527467] #. defaultMessage is: #. Custom Filter +#. [src.components.SearchBar.2340527467] +#. defaultMessage is: +#. Custom Filter #: build/locale/src/components/FilterBar/FilterBar.json +#: build/locale/src/components/SearchBar/SearchBar.json msgctxt "description" msgid "Custom Filter" msgstr "" @@ -2732,10 +2790,18 @@ msgctxt "dialog title" msgid "Delete Collection" msgstr "" -#. [src.orders.views.1161115149] - dialog header +#. [src.products.views.1731766393] - dialog header +#. defaultMessage is: +#. Delete Image +#: build/locale/src/products/views/ProductImage.json +msgctxt "dialog header" +msgid "Delete Image" +msgstr "" + +#. [src.orders.views.OrderDraftList.1161115149] - dialog header #. defaultMessage is: #. Delete Order Drafts -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog header" msgid "Delete Order Drafts" msgstr "" @@ -2773,10 +2839,10 @@ msgctxt "dialog header" msgid "Delete Product Type" msgstr "" -#. [src.productTypes.views.4080551769] - dialog header +#. [src.productTypes.views.ProductTypeList.4080551769] - dialog header #. defaultMessage is: #. Delete Product Types -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog header" msgid "Delete Product Types" msgstr "" @@ -2805,10 +2871,10 @@ msgctxt "dialog header" msgid "Delete Sale" msgstr "" -#. [src.discounts.views.2809303671] - dialog header +#. [src.discounts.views.SaleList.2809303671] - dialog header #. defaultMessage is: #. Delete Sales -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog header" msgid "Delete Sales" msgstr "" @@ -2822,9 +2888,13 @@ msgctxt "custom search delete, dialog header" msgid "Delete Search" msgstr "" +#. [src.components.Filter.2173195312] - button +#. defaultMessage is: +#. Delete Search #. [src.components.TableFilter.2173195312] - button #. defaultMessage is: #. Delete Search +#: build/locale/src/components/Filter/FilterSearch.json #: build/locale/src/components/TableFilter/FilterChips.json msgctxt "button" msgid "Delete Search" @@ -2891,10 +2961,10 @@ msgctxt "dialog header" msgid "Delete Voucher" msgstr "" -#. [src.discounts.views.367317371] - dialog header +#. [src.discounts.views.VoucherList.367317371] - dialog header #. defaultMessage is: #. Delete Vouchers -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog header" msgid "Delete Vouchers" msgstr "" @@ -2928,11 +2998,11 @@ msgstr "" #. [src.categories.views.712767046] - dialog title #. defaultMessage is: #. Delete categories -#. [src.categories.views.712767046] - dialog title +#. [src.categories.views.CategoryList.712767046] - dialog title #. defaultMessage is: #. Delete categories #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "dialog title" msgid "Delete categories" msgstr "" @@ -2949,10 +3019,10 @@ msgctxt "dialog title" msgid "Delete category" msgstr "" -#. [src.collections.views.3817188998] - dialog title +#. [src.collections.views.CollectionList.3817188998] - dialog title #. defaultMessage is: #. Delete collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Delete collections" msgstr "" @@ -2965,14 +3035,31 @@ msgctxt "dialog header" msgid "Delete customer" msgstr "" -#. [src.customers.views.1946482599] - dialog header +#. [src.customers.views.CustomerList.1946482599] - dialog header #. defaultMessage is: #. Delete customers -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "dialog header" msgid "Delete customers" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.632633254] - dialog header +#. defaultMessage is: +#. Delete draft order +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "dialog header" +msgid "Delete draft order" +msgstr "" + +#. [src.shipping.views.ShippingZoneDetails.1947090060] - unassign country, +#. dialog header +#. defaultMessage is: +#. Delete from shipping zone +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country, dialog header" +msgid "Delete from shipping zone" +msgstr "" + #. [src.collections.views.942133001] - dialog title #. defaultMessage is: #. Delete image @@ -3033,6 +3120,14 @@ msgctxt "description" msgid "Deleted collection" msgstr "Kolekcja usunięta" +#. [src.orders.views.OrderDraftList.1648805446] +#. defaultMessage is: +#. Deleted draft orders +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json +msgctxt "description" +msgid "Deleted draft orders" +msgstr "" + #. [menuListDeletedMenu] #. defaultMessage is: #. Deleted menu @@ -3632,14 +3727,6 @@ msgctxt "order history message" msgid "Fulfilled {quantity} items" msgstr "" -#. [src.orders.components.OrderListFilter.2943502192] - order -#. defaultMessage is: -#. Fulfillment Status -#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json -msgctxt "order" -msgid "Fulfillment Status" -msgstr "" - #. [src.orders.components.OrderHistory.3081292385] - order history message #. defaultMessage is: #. Fulfillment confirmation was sent to customer @@ -3798,12 +3885,12 @@ msgstr "" "Jeżeli pole jest puste, podgląd pokaże co zostanie automatycznie " "wygenerowane." -#. [src.attributes.components.AttributeProperties.2519239682] +#. [src.attributes.components.AttributeProperties.4048785456] #. defaultMessage is: -#. If enable this attribute can be used as a column in product table. +#. If enabled this attribute can be used as a column in product table. #: build/locale/src/attributes/components/AttributeProperties/AttributeProperties.json msgctxt "description" -msgid "If enable this attribute can be used as a column in product table." +msgid "If enabled this attribute can be used as a column in product table." msgstr "" #. [src.attributes.components.AttributeProperties.787251583] @@ -3909,6 +3996,22 @@ msgctxt "product variant stock" msgid "Inventory" msgstr "Inwentarz" +#. [src.staff.components.StaffAddMemberDialog.1481503299] - dialog header +#. defaultMessage is: +#. Invite Staff Member +#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json +msgctxt "dialog header" +msgid "Invite Staff Member" +msgstr "" + +#. [src.staff.components.StaffListPage.797461521] - button +#. defaultMessage is: +#. Invite staff member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "button" +msgid "Invite staff member" +msgstr "" + #. [src.productTypes.components.ProductTypeShipping.2143413921] - switch #. button #. defaultMessage is: @@ -4261,6 +4364,14 @@ msgctxt "voucher requirement" msgid "Minimum quantity of items" msgstr "" +#. [src.configuration.1233229030] +#. defaultMessage is: +#. Miscellaneous +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Miscellaneous" +msgstr "" + #. [src.attributes.components.AttributeDetails.3334509011] - product attribute #. type #. defaultMessage is: @@ -5093,6 +5204,14 @@ msgctxt "description" msgid "Order History" msgstr "" +#. [src.orders.components.OrderListFilter.2222765704] +#. defaultMessage is: +#. Order Status +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +msgctxt "description" +msgid "Order Status" +msgstr "" + #. [src.orders.components.OrderHistory.1230178536] - order history message #. defaultMessage is: #. Order address was updated @@ -5109,13 +5228,13 @@ msgctxt "order history message" msgid "Order confirmation was sent to customer" msgstr "" -#. [src.orders.views.1872939752] +#. [src.orders.views.OrderDraftList.1872939752] #. defaultMessage is: #. Order draft succesfully created #. [src.orders.views.OrderList.1872939752] #. defaultMessage is: #. Order draft succesfully created -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json #: build/locale/src/orders/views/OrderList/OrderList.json msgctxt "description" msgid "Order draft succesfully created" @@ -5780,6 +5899,14 @@ msgctxt "description" msgid "Product Name" msgstr "" +#. [src.configuration.3655543906] +#. defaultMessage is: +#. Product Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Product Settings" +msgstr "" + #. [src.discounts.components.DiscountProducts.4257289053] #. defaultMessage is: #. Product Type @@ -5938,12 +6065,12 @@ msgctxt "order history message" msgid "Products were added to draft order" msgstr "" -#. [src.orders.components.OrderHistory.2574162126] - order history message +#. [src.orders.components.OrderHistory.4067959693] - order history message #. defaultMessage is: -#. Products were removed from draft order +#. Products were deleted from draft order #: build/locale/src/orders/components/OrderHistory/OrderHistory.json msgctxt "order history message" -msgid "Products were removed from draft order" +msgid "Products were deleted from draft order" msgstr "" #. [src.properties] @@ -5970,10 +6097,10 @@ msgctxt "description" msgid "Provided email address does not exist in our database." msgstr "" -#. [src.collections.views.1547167026] - publish collections +#. [src.collections.views.CollectionList.1547167026] - publish collections #. defaultMessage is: #. Publish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "publish collections" msgid "Publish" msgstr "Opublikuj" @@ -6010,10 +6137,10 @@ msgctxt "dialog header" msgid "Publish Products" msgstr "" -#. [src.collections.views.2823425739] - dialog title +#. [src.collections.views.CollectionList.2823425739] - dialog title #. defaultMessage is: #. Publish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Publish collections" msgstr "" @@ -6187,6 +6314,18 @@ msgctxt "shipping method price" msgid "Rate Price" msgstr "" +#. [src.orders.components.OrderListFilter.2415661583] - order status +#. defaultMessage is: +#. Ready to Capture +#. [src.orders.views.OrderList.readyToCapture] - order status +#. defaultMessage is: +#. Ready to Capture +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +#: build/locale/src/orders/views/OrderList/filters.json +msgctxt "order status" +msgid "Ready to Capture" +msgstr "" + #. [src.customers.components.CustomerOrders.3878642352] - section header #. defaultMessage is: #. Recent orders @@ -6235,22 +6374,14 @@ msgctxt "switch button" msgid "Release all stock allocated to this order" msgstr "" -#. [src.auth.components.LoginPage.3182284913] - login -#. defaultMessage is: -#. Remember me -#: build/locale/src/auth/components/LoginPage/LoginPage.json -msgctxt "login" -msgid "Remember me" -msgstr "" - #. [src.categories.views.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. -#. [src.categories.views.3488150607] +#. [src.categories.views.CategoryList.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "description" msgid "Remember this will also delete all products assigned to this category." msgstr "" @@ -6263,39 +6394,6 @@ msgctxt "button" msgid "Remove" msgstr "Usuń" -#. [src.products.views.490753666] - dialog header -#. defaultMessage is: -#. Remove Image -#: build/locale/src/products/views/ProductImage.json -msgctxt "dialog header" -msgid "Remove Image" -msgstr "" - -#. [src.orders.components.OrderDraftCancelDialog.500287069] - dialog header -#. defaultMessage is: -#. Remove draft order -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "dialog header" -msgid "Remove draft order" -msgstr "Usuń wersję roboczą zamówienia" - -#. [src.shipping.views.ShippingZoneDetails.254167659] - unassign country, -#. dialog header -#. defaultMessage is: -#. Remove from shipping zone -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country, dialog header" -msgid "Remove from shipping zone" -msgstr "" - -#. [src.orders.views.3880993240] -#. defaultMessage is: -#. Removed draft orders -#: build/locale/src/orders/views/OrderDraftList.json -msgctxt "description" -msgid "Removed draft orders" -msgstr "" - #. [src.pages.views.1457312643] #. defaultMessage is: #. Removed page @@ -6461,6 +6559,18 @@ msgctxt "button" msgid "Save" msgstr "Zapisz" +#. [src.components.Filter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#. [src.components.TableFilter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#: build/locale/src/components/Filter/FilterSearch.json +#: build/locale/src/components/TableFilter/FilterChips.json +msgctxt "button" +msgid "Save Custom Search" +msgstr "" + #. [src.components.SaveFilterTabDialog.1514415736] - save filter tab, header #. defaultMessage is: #. Save Custom Search @@ -6469,14 +6579,6 @@ msgctxt "save filter tab, header" msgid "Save Custom Search" msgstr "" -#. [src.components.TableFilter.1514415736] - button -#. defaultMessage is: -#. Save Custom Search -#: build/locale/src/components/TableFilter/FilterChips.json -msgctxt "button" -msgid "Save Custom Search" -msgstr "" - #. [src.products.components.ProductVariantCreatePage.2853608829] - button #. defaultMessage is: #. Save variant @@ -6493,6 +6595,14 @@ msgctxt "description" msgid "Saved changes" msgstr "" +#. [src.attributes.components.AttributeListPage.3916653510] +#. defaultMessage is: +#. Search Attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "description" +msgid "Search Attribute" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.902296540] #. defaultMessage is: #. Search Attributes @@ -6509,10 +6619,30 @@ msgctxt "description" msgid "Search Categories" msgstr "" +#. [src.categories.components.CategoryListPage.3841025483] +#. defaultMessage is: +#. Search Category +#. [src.translations.components.TranslationsEntitiesListPage.3841025483] +#. defaultMessage is: +#. Search Category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Category" +msgstr "" + +#. [src.collections.components.CollectionListPage.4057224233] +#. defaultMessage is: +#. Search Collection #. [src.components.AssignCollectionDialog.4057224233] #. defaultMessage is: #. Search Collection +#. [src.translations.components.TranslationsEntitiesListPage.4057224233] +#. defaultMessage is: +#. Search Collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json #: build/locale/src/components/AssignCollectionDialog/AssignCollectionDialog.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json msgctxt "description" msgid "Search Collection" msgstr "" @@ -6525,6 +6655,14 @@ msgctxt "description" msgid "Search Countries" msgstr "" +#. [src.customers.components.CustomerListPage.1643417013] +#. defaultMessage is: +#. Search Customer +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "description" +msgid "Search Customer" +msgstr "" + #. [src.orders.components.OrderCustomer.2433460203] #. defaultMessage is: #. Search Customers @@ -6533,6 +6671,14 @@ msgctxt "description" msgid "Search Customers" msgstr "" +#. [src.orders.components.OrderDraftListPage.77765281] +#. defaultMessage is: +#. Search Draft +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "description" +msgid "Search Draft" +msgstr "" + #. [src.translations.components.TranslationsCategoriesPage.1406947243] #. defaultMessage is: #. Search Engine Description @@ -6613,6 +6759,34 @@ msgctxt "description" msgid "Search Orders..." msgstr "" +#. [src.translations.components.TranslationsEntitiesListPage.2559018090] +#. defaultMessage is: +#. Search Page +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Page" +msgstr "" + +#. [src.translations.components.TranslationsEntitiesListPage.2105464697] +#. defaultMessage is: +#. Search Product +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product" +msgstr "" + +#. [src.productTypes.components.ProductTypeListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#. [src.translations.components.TranslationsEntitiesListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product Type" +msgstr "" + #. [src.components.AssignProductDialog.2850255786] #. defaultMessage is: #. Search Products @@ -6625,14 +6799,46 @@ msgctxt "description" msgid "Search Products" msgstr "" -#. [src.products.components.ProductListPage.3550330425] +#. [src.products.components.ProductListFilter.3550330425] #. defaultMessage is: #. Search Products... -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Search Products..." msgstr "" +#. [src.discounts.components.SaleListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#. [src.translations.components.TranslationsEntitiesListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Sale" +msgstr "" + +#. [src.staff.components.StaffListPage.61043583] +#. defaultMessage is: +#. Search Staff Member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "description" +msgid "Search Staff Member" +msgstr "" + +#. [src.discounts.components.VoucherListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#. [src.translations.components.TranslationsEntitiesListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Voucher" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.524117994] #. defaultMessage is: #. Search by attribute name @@ -6739,10 +6945,10 @@ msgctxt "description" msgid "Select all orders where:" msgstr "" -#. [src.products.components.ProductListPage.1421689426] +#. [src.products.components.ProductListFilter.1421689426] #. defaultMessage is: #. Select all products where: -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Select all products where:" msgstr "" @@ -6828,6 +7034,14 @@ msgctxt "description" msgid "Set plugin as Active" msgstr "" +#. [src.components.VisibilityCard.292404896] +#. defaultMessage is: +#. Set publication date +#: build/locale/src/components/VisibilityCard/VisibilityCard.json +msgctxt "description" +msgid "Set publication date" +msgstr "" + #. [src.discounts.shipment] - voucher discount #. defaultMessage is: #. Shipment @@ -7093,6 +7307,14 @@ msgctxt "staff section name" msgid "Staff Members" msgstr "" +#. [src.configuration.3140151600] +#. defaultMessage is: +#. Staff Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Staff Settings" +msgstr "" + #. [src.standard] - tax rate #. defaultMessage is: #. Standard @@ -8077,10 +8299,10 @@ msgctxt "payment status" msgid "Unpaid" msgstr "" -#. [src.collections.views.2237014112] - unpublish collections +#. [src.collections.views.CollectionList.2237014112] - unpublish collections #. defaultMessage is: #. Unpublish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "unpublish collections" msgid "Unpublish" msgstr "Cofnij publikację" @@ -8117,10 +8339,10 @@ msgctxt "dialog header" msgid "Unpublish Products" msgstr "" -#. [src.collections.views.2637364047] - dialog title +#. [src.collections.views.CollectionList.2637364047] - dialog title #. defaultMessage is: #. Unpublish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Unpublish collections" msgstr "" @@ -8620,6 +8842,22 @@ msgctxt "description" msgid "ZIP / Postal code" msgstr "" +#. [src.productTypes.components.ProductTypeListPage.3479705616] - button +#. defaultMessage is: +#. create product type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "button" +msgid "create product type" +msgstr "" + +#. [src.staff.views.1308770978] - dialog header +#. defaultMessage is: +#. delete Staff User +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "dialog header" +msgid "delete Staff User" +msgstr "" + #. [orderPaymentVATDoesNotApply] - vat not included in order price #. defaultMessage is: #. does not apply @@ -8693,19 +8931,35 @@ msgctxt "product status is set as" msgid "is set as" msgstr "" -#. [src.staff.views.2240444792] - dialog header -#. defaultMessage is: -#. remove Staff User -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "dialog header" -msgid "remove Staff User" -msgstr "" - -#. [src.components.VisibilityCard.1815688500] +#. [src.collections.components.CollectionCreatePage.1815688500] - collection #. defaultMessage is: #. since {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.1815688500] - collection +#. defaultMessage is: +#. since {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "since {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.1815688500] - page +#. defaultMessage is: +#. since {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "since {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#. [src.products.components.ProductUpdatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "since {date}" msgstr "" @@ -8733,11 +8987,35 @@ msgctxt "weight" msgid "to {value} {unit}" msgstr "" -#. [src.components.VisibilityCard.2001551496] +#. [src.collections.components.CollectionCreatePage.2001551496] - collection #. defaultMessage is: #. will be visible from {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.2001551496] - collection +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "will be visible from {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.2001551496] - page +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "will be visible from {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#. [src.products.components.ProductUpdatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "will be visible from {date}" msgstr "" diff --git a/locale/pt.json b/locale/pt.json index 253de5a4b..ee2dad2b4 100644 --- a/locale/pt.json +++ b/locale/pt.json @@ -1 +1 @@ -{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.350498821":"Adicionar atributo","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.2519239682":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"Nome","src.categories.components.CategoryProducts.636461959":"Nome","src.collections.components.CollectionProducts.636461959":"Nome","src.products.components.ProductDetailsForm.636461959":"Nome","src.collections.components.CollectionDetails.636461959":"Nome","src.components.ProductList.636461959":"Nome","src.discounts.components.SaleInfo.636461959":"Nome","src.discounts.components.SaleList.636461959":"Nome","src.discounts.components.SaleSummary.636461959":"Nome","menuItemDialogNameLabel":"Nome","src.products.components.ProductVariants.636461959":"Nome","src.shipping.components.ShippingZoneRates.636461959":"Nome","src.shipping.components.ShippingZonesList.636461959":"Nome","src.staff.components.StaffList.636461959":"Nome","src.translations.components.TranslationsEntitiesList.636461959":"Nome","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.254756045":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.3182284913":"","src.auth.components.LoginPage.109182747":"Entrar","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"","src.categories.views.2004894945":"","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.3229914152":"","src.categories.components.CategoryList.435697837":"","src.categories.components.CategoryList.2159874182":"Subcategorias","src.categories.components.CategoryUpdatePage.2159874182":"Subcategorias","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.228151782":"Adicionar categoria","src.categories.components.CategoryProducts.2968663655":"Produtos","src.categories.components.CategoryUpdatePage.2968663655":"Produtos","src.discounts.components.DiscountCategories.2968663655":"Produtos","src.discounts.components.DiscountCollections.2968663655":"Produtos","src.products":"Produtos","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryProducts.3554578821":"Adicionar produto","src.categories.components.CategoryProductsCard.3554578821":"Adicionar produto","src.categories.components.CategoryProducts.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProducts.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.categories.components.CategoryProductsCard.4164156574":"","src.categories.views.1754466114":"","src.categories.views.1140231710":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.712767046":"","src.categories.views.299584400":"","src.categories.views.844574071":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.collections.components.CollectionCreatePage.3958681866":"Adicionar coleção","src.collections.components.CollectionListPage.3958681866":"Adicionar coleção","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"Disponibilidade","src.availability":"","src.collections.components.CollectionList.3640454975":"Publicado ","src.collections.components.CollectionProducts.3640454975":"Publicado ","src.discounts.components.DiscountProducts.3640454975":"Publicado ","src.components.ProductList.3640454975":"Publicado ","src.products.components.ProductListPage.3640454975":"Publicado ","src.pages.components.PageList.3640454975":"Publicado ","src.products.views.ProductList.published":"Publicado ","src.collections.components.CollectionList.2341910657":"Não publicado","src.collections.components.CollectionProducts.2341910657":"Não publicado","src.discounts.components.DiscountProducts.2341910657":"Não publicado","src.components.ProductList.2341910657":"Não publicado","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.686910896":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"","src.collections.views.2402899582":"","src.collections.views.2237014112":"Remover","src.pages.views.2237014112":"Remover","src.products.views.ProductList.2237014112":"Remover","src.collections.views.1547167026":"Publicado","src.pages.views.1547167026":"Publicado","src.products.views.ProductList.1547167026":"Publicado","src.collections.views.2823425739":"","src.collections.views.1348793822":"","src.collections.views.2637364047":"","src.collections.views.3944356444":"","src.collections.views.3817188998":"","src.collections.views.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"Sair","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.4057224233":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"","src.components.ErrorMessageCard.2845142593":"","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.FilterBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"Adicionar","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.ProductList.1134347598":"Preço","src.orders.components.OrderDraftDetailsProducts.1134347598":"Preço","src.orders.components.OrderFulfillment.1134347598":"Preço","src.products.components.ProductListPage.1134347598":"Preço","src.products.components.ProductPricing.1134347598":"Preço","src.orders.components.OrderUnfulfilledItems.1134347598":"Preço","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"Preço","src.shipping.components.ShippingZoneRates.1134347598":"Preço","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"Visibilidade","src.pages.components.PageList.1459686496":"Visibilidade","src.products.components.ProductListFilter.1459686496":"Visibilidade","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"Oculto","src.products.views.ProductList.hidden":"Oculto","src.components.VisibilityCard.1815688500":"","src.components.VisibilityCard.2001551496":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","configurationMenuStaff":"","configurationMenuShipping":"","configurationMenuTaxes":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","src.customers.components.CustomerAddress.1320082647":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"Morada para cobrança","src.customers.components.CustomerAddresses.3517722732":"Endereço de entrega","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"Endereço","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"Notas","src.orders.components.OrderCustomerNote.1520756907":"Notas","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"Nota","src.customers.components.CustomerDetails.577013340":"Nota","src.customers.components.CustomerCreatePage.1934221653":"Adicionar cliente","src.customers.components.CustomerListPage.1934221653":"Adicionar cliente","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerOrders.3878642352":"Pedidos recentes","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"Data","src.orders.components.OrderDraftList.4205493358":"Data","src.orders.components.OrderList.4205493358":"Data","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"Status","src.orders.components.OrderListFilter.1756106276":"Status","src.products.components.ProductListFilter.1756106276":"Status","src.products.components.ProductVariants.1756106276":"Status","src.customers.components.CustomerOrders.878013594":"Total","src.orders.components.OrderDraftDetailsProducts.878013594":"Total","src.orders.components.OrderDraftDetailsSummary.878013594":"Total","src.orders.components.OrderDraftList.878013594":"Total","src.orders.components.OrderFulfillment.878013594":"Total","src.orders.components.OrderUnfulfilledItems.878013594":"Total","src.orders.components.OrderList.878013594":"Total","src.orders.components.OrderPayment.878013594":"Total","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.1946482599":"","src.customers.views.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"Valor","src.discounts.components.SaleSummary.1148029984":"Valor","src.discounts.components.VoucherList.1148029984":"Valor","src.discounts.components.VoucherSummary.1148029984":"Valor","src.discounts.components.VoucherValue.1148029984":"Valor","src.products.components.ProductAttributes.1148029984":"Valor","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.1742771332":"","src.discounts.components.SalePricing.1099355007":"Preços","src.products.components.ProductPricing.1099355007":"Preços","src.products.components.ProductVariantPrice.1099355007":"Preços","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"Países","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"Código","src.discounts.components.VoucherSummary.78726751":"Código","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.1536809153":"Adicionar voucher","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"Produtos específicos","src.discounts.shipment":"Envio","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.2809303671":"","src.discounts.views.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.367317371":"","src.discounts.views.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"Cancelar","src.orders.views.OrderList.3528672691":"Cancelar","src.confirm":"","src.delete":"","src.edit":"Editar","src.manage":"","src.remove":"Remover","src.save":"Guardar","src.show":"","src.undo":"","src.attributes":"Atributos","src.products.components.ProductAttributes.4153345096":"Atributos","src.categories":"categorias","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"Coleções","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"Configuração","src.customers":"Clientes","src.draftOrders":"","src.home":"Início","src.navigation":"Navegação","src.orders":"Pedidos","src.pages":"Páginas","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"Vendas","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"Impostos","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"Impostos","src.taxes.components.CountryListPage.3955023266":"Impostos","src.translations":"","src.vouchers":"Cupons","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"","src.partiallyPaid":"","src.partiallyRefunded":"Parcialmente reembolsado","src.refunded":"Totalmente reembolsado","src.unpaid":"","src.cancelled":"","src.draft":"Rascunho","src.fulfilled":"Completo","src.orders.views.OrderList.fulfilled":"Completo","src.orders.components.OrderListFilter.1712863026":"Completo","src.partiallyFulfilled":"Parcialmente completo","src.unfulfilled":"Incompleto","src.orders.views.OrderList.unfulfilled":"Incompleto","src.orders.components.OrderListFilter.1751787272":"Incompleto","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","src.1395232177":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"Link","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"Cancelar pedido","src.orders.components.OrderDetailsPage.1854613983":"Cancelar pedido","src.orders.components.OrderDraftPage.1854613983":"Cancelar pedido","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"Cliente","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"Cliente","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"Mesmo que o endereço de entrega","src.orders.components.OrderCustomerEditDialog.1411666943":"Editar detalhes do cliente","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.500287069":"Remover pedido","src.orders.components.OrderDraftCancelDialog.3199827590":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"Produtos","src.orders.components.OrderUnfulfilledItems.1895667608":"Produtos","src.orders.components.OrderDraftDetailsProducts.2796503714":"Quantidade","src.orders.components.OrderFulfillment.2796503714":"Quantidade","src.orders.components.OrderFulfillmentDialog.2796503714":"Quantidade","src.orders.components.OrderUnfulfilledItems.2796503714":"Quantidade","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"Subtotal","src.orders.components.OrderPayment.781550514":"Subtotal","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"Criar pedido","src.orders.components.OrderListPage.2826235371":"Criar pedido","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"Adicionar rastreamento","src.orders.components.OrderFulfillmentCancelDialog.732594284":"Cancelar processo","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"Cancelar processo","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"SKU","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"Código de rastreamento","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.2574162126":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"Pedido foi pago","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"Pedido foi realizado","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"Forma de pagamento","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2943502192":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"Entrega","src.productTypes.components.ProductTypeShipping.1325966144":"Entrega","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"Entrega","src.orders.components.OrderPayment.3768782744":"Quantidade pré-autorizada","src.orders.components.OrderPayment.2320183694":"Quantidade capturada","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"Capturar","src.orders.components.OrderPayment.2845258362":"Restituição","src.orders.components.OrderPayment.2444197639":"Cancelar","src.orders.components.OrderPayment.3500506678":"Sinalizar como pago","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"Montante","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.2775402904":"","src.products.components.ProductListPage.2775402904":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"Faturar","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.3880993240":"","src.orders.views.1161115149":"","src.orders.views.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.755314116":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"Título","src.pages.components.PageList.1124600214":"Título","src.pages.components.PageInfo.1116746286":"Conteúdo","src.translations.components.TranslationsPagesPage.1116746286":"Conteúdo","src.pages.components.PageList.3478065224":"slug","src.pages.components.PageSlug.3478065224":"slug","src.productTypes.components.ProductTypeAttributes.3478065224":"slug","src.pages.components.PageList.3767550649":"","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.1767905232":"Adicionar página","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.3785394515":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"Valores","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"imagens","src.products.components.ProductVariantImages.3240888698":"imagens","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"","src.products.components.ProductVariantStock.3841616483":"","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListPage.821159718":"","src.products.components.ProductListPage.1421689426":"","src.products.components.ProductListPage.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"Inventário","prodictStockInventoryLabel":"Inventário","src.products.components.ProductVariantStock.3490038570":"Inventário","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"","src.products.components.ProductVariants.2153006789":"","src.products.components.ProductVariantNavigation.2845381934":"Adicionar variação","src.products.components.ProductVariants.2845381934":"Adicionar variação","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1542417144":"","src.products.views.1591632382":"","src.products.views.490753666":"","src.products.views.672103788":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.1694086800":"","src.products.views.ProductList.224127438":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.products.views.2178905289":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1756957616":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.889729490":"Adicionar tipo de produto","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.4080551769":"","src.productTypes.views.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.352297149":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2474410767":"Adicionar região de entrega","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.254167659":"","src.shipping.views.ShippingZoneDetails.1790261672":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"Chave","src.siteSettings.components.SiteSettingsKeys.2446088470":"Chave","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.3490059488":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"Permissões","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.3247064221":"Ativo","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.802625341":"Adicionar membro da equipa","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"Usuário está ativo","src.staff.views.2240444792":"","src.staff.views.2728048444":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file +{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.3824684885":"","src.attributes.components.AttributeListPage.2417065806":"","src.attributes.components.AttributeListPage.3916653510":"","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.4048785456":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"Nome","src.categories.components.CategoryProductList.636461959":"Nome","src.components.ProductList.636461959":"Nome","src.products.components.ProductList.636461959":"Nome","src.collections.components.CollectionDetails.636461959":"Nome","src.collections.components.CollectionProducts.636461959":"Nome","src.products.components.ProductDetailsForm.636461959":"Nome","src.discounts.components.SaleInfo.636461959":"Nome","src.discounts.components.SaleList.636461959":"Nome","src.discounts.components.SaleSummary.636461959":"Nome","menuItemDialogNameLabel":"Nome","src.plugins.components.PluginsList.636461959":"Nome","src.products.components.ProductVariants.636461959":"Nome","src.shipping.components.ShippingZoneRates.636461959":"Nome","src.shipping.components.ShippingZonesList.636461959":"Nome","src.staff.components.StaffList.636461959":"Nome","src.translations.components.TranslationsEntitiesList.636461959":"Nome","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.351422234":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.109182747":"Entrar","src.auth.components.LoginPage.4028609483":"","src.auth.components.NewPasswordPage.1915811227":"","src.auth.components.NewPasswordPage.1254879564":"","src.auth.components.NewPasswordPage.2799926859":"","src.auth.components.NewPasswordPage.4253911811":"","src.auth.components.NewPasswordPage.2342634351":"","src.auth.components.ResetPasswordPage.2370700732":"","src.auth.components.ResetPasswordPage.3663311080":"","src.auth.components.ResetPasswordSuccessPage.4066297200":"","src.auth.components.ResetPasswordSuccessPage.2245157344":"","src.auth.views.2388238158":"","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"","src.categories.views.2004894945":"","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.2159874182":"Subcategorias","src.categories.components.CategoryUpdatePage.2159874182":"Subcategorias","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.1140231710":"","src.categories.views.1140231710":"","src.categories.components.CategoryListPage.4294878092":"","src.categories.components.CategoryListPage.3841025483":"","src.translations.components.TranslationsEntitiesListPage.3841025483":"","src.categories.components.CategoryProductList.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductList.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProductList.3640454975":"Publicado ","src.components.ProductList.3640454975":"Publicado ","src.products.components.ProductList.3640454975":"Publicado ","src.products.components.ProductListPage.3640454975":"Publicado ","productStatusLabel":"Publicado ","src.collections.components.CollectionList.3640454975":"Publicado ","src.collections.components.CollectionProducts.3640454975":"Publicado ","src.discounts.components.DiscountProducts.3640454975":"Publicado ","src.pages.components.PageList.3640454975":"Publicado ","src.products.views.ProductList.published":"Publicado ","src.categories.components.CategoryProductList.1134347598":"Preço","src.orders.components.OrderFulfillment.1134347598":"Preço","src.products.components.ProductList.1134347598":"Preço","src.products.components.ProductListPage.1134347598":"Preço","src.products.components.ProductPricing.1134347598":"Preço","src.components.ProductList.1134347598":"Preço","src.orders.components.OrderDraftDetailsProducts.1134347598":"Preço","src.orders.components.OrderUnfulfilledItems.1134347598":"Preço","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"Preço","src.shipping.components.ShippingZoneRates.1134347598":"Preço","src.categories.components.CategoryProductList.2341910657":"Não publicado","src.products.components.ProductList.2341910657":"Não publicado","src.collections.components.CollectionList.2341910657":"Não publicado","src.collections.components.CollectionProducts.2341910657":"Não publicado","src.discounts.components.DiscountProducts.2341910657":"Não publicado","src.components.ProductList.2341910657":"Não publicado","src.categories.components.CategoryProductList.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.products.components.ProductList.1657559629":"","src.categories.components.CategoryProducts.4164156574":"","src.categories.components.CategoryProducts.3554578821":"Adicionar produto","src.categories.components.CategoryUpdatePage.2968663655":"Produtos","src.discounts.components.DiscountCategories.2968663655":"Produtos","src.discounts.components.DiscountCollections.2968663655":"Produtos","src.products":"Produtos","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryUpdatePage.3229914152":"","src.categories.components.CategoryUpdatePage.770296100":"","src.categories.views.1754466114":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.CategoryList.3488150607":"","src.categories.views.712767046":"","src.categories.views.CategoryList.712767046":"","src.categories.views.299584400":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.categories.views.CategoryList.2144707585":"","src.collections.components.CollectionCreatePage.3958681866":"Adicionar coleção","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionCreatePage.2001551496":"","src.collections.components.CollectionDetailsPage.2001551496":"","src.pages.components.PageDetailsPage.2001551496":"","src.products.components.ProductCreatePage.2001551496":"","src.products.components.ProductUpdatePage.2001551496":"","src.collections.components.CollectionCreatePage.1815688500":"","src.collections.components.CollectionDetailsPage.1815688500":"","src.pages.components.PageDetailsPage.1815688500":"","src.products.components.ProductCreatePage.1815688500":"","src.products.components.ProductUpdatePage.1815688500":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"Disponibilidade","src.availability":"","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionListPage.686910896":"","src.collections.views.686910896":"","src.collections.components.CollectionListPage.1631917001":"","src.collections.components.CollectionListPage.4057224233":"","src.components.AssignCollectionDialog.4057224233":"","src.translations.components.TranslationsEntitiesListPage.4057224233":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"","src.collections.views.2402899582":"","src.collections.views.CollectionList.2237014112":"Remover","src.pages.views.2237014112":"Remover","src.products.views.ProductList.2237014112":"Remover","src.collections.views.CollectionList.1547167026":"Publicado","src.pages.views.1547167026":"Publicado","src.products.views.ProductList.1547167026":"Publicado","src.collections.views.CollectionList.2823425739":"","src.collections.views.CollectionList.1348793822":"","src.collections.views.CollectionList.2637364047":"","src.collections.views.CollectionList.3944356444":"","src.collections.views.CollectionList.3817188998":"","src.collections.views.CollectionList.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"Sair","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"","src.components.ErrorMessageCard.2845142593":"","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.Filter.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.Filter.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.FilterBar.2340527467":"","src.components.SearchBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"Adicionar","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"Visibilidade","src.pages.components.PageList.1459686496":"Visibilidade","src.products.components.ProductListFilter.1459686496":"Visibilidade","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"Oculto","src.products.views.ProductList.hidden":"Oculto","src.components.VisibilityCard.292404896":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","src.configuration.2326418019":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","src.configuration.3655543906":"","configurationMenuShipping":"","configurationMenuTaxes":"","src.configuration.3140151600":"","configurationMenuStaff":"","src.configuration.1233229030":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","configurationPluginsPages":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"Morada para cobrança","src.customers.components.CustomerAddresses.3517722732":"Endereço de entrega","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"Endereço","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"Notas","src.orders.components.OrderCustomerNote.1520756907":"Notas","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"Nota","src.customers.components.CustomerDetails.577013340":"Nota","src.customers.components.CustomerCreatePage.1934221653":"Adicionar cliente","src.customers.components.CustomerListPage.1934221653":"Adicionar cliente","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerListPage.477293306":"","src.customers.components.CustomerListPage.1643417013":"","src.customers.components.CustomerOrders.3878642352":"Pedidos recentes","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"Data","src.orders.components.OrderDraftList.4205493358":"Data","src.orders.components.OrderList.4205493358":"Data","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"Status","src.orders.components.OrderListFilter.1756106276":"Status","src.plugins.components.PluginInfo.1756106276":"Status","src.products.components.ProductListFilter.1756106276":"Status","src.products.components.ProductVariants.1756106276":"Status","src.customers.components.CustomerOrders.878013594":"Total","src.orders.components.OrderDraftDetailsProducts.878013594":"Total","src.orders.components.OrderDraftDetailsSummary.878013594":"Total","src.orders.components.OrderDraftList.878013594":"Total","src.orders.components.OrderFulfillment.878013594":"Total","src.orders.components.OrderUnfulfilledItems.878013594":"Total","src.orders.components.OrderList.878013594":"Total","src.orders.components.OrderPayment.878013594":"Total","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.CustomerList.1946482599":"","src.customers.views.CustomerList.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","src.discounts.components.SaleListPage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"Valor","src.discounts.components.SaleSummary.1148029984":"Valor","src.discounts.components.VoucherList.1148029984":"Valor","src.discounts.components.VoucherSummary.1148029984":"Valor","src.discounts.components.VoucherValue.1148029984":"Valor","src.products.components.ProductAttributes.1148029984":"Valor","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.3907768880":"","src.discounts.components.SaleListPage.1866913828":"","src.translations.components.TranslationsEntitiesListPage.1866913828":"","src.discounts.components.SalePricing.1099355007":"Preços","src.products.components.ProductPricing.1099355007":"Preços","src.products.components.ProductVariantPrice.1099355007":"Preços","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"Países","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"Código","src.discounts.components.VoucherSummary.78726751":"Código","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.614836274":"","src.discounts.components.VoucherListPage.1112241061":"","src.discounts.components.VoucherListPage.1930485532":"","src.translations.components.TranslationsEntitiesListPage.1930485532":"","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"Produtos específicos","src.discounts.shipment":"Envio","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.SaleList.2809303671":"","src.discounts.views.SaleList.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.VoucherList.367317371":"","src.discounts.views.VoucherList.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.somethingWentWrong":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"Cancelar","src.orders.views.OrderList.3528672691":"Cancelar","src.confirm":"","src.delete":"","src.edit":"Editar","src.manage":"","src.remove":"Remover","src.save":"Guardar","src.show":"","src.undo":"","src.attributes":"Atributos","src.products.components.ProductAttributes.4153345096":"Atributos","src.categories":"categorias","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"Coleções","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"Configuração","src.customers":"Clientes","src.draftOrders":"","src.home":"Início","src.navigation":"Navegação","src.orders":"Pedidos","src.pages":"Páginas","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.plugins":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"Vendas","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"Impostos","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"Impostos","src.taxes.components.CountryListPage.3955023266":"Impostos","src.translations":"","src.vouchers":"Cupons","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"","src.partiallyPaid":"","src.partiallyRefunded":"Parcialmente reembolsado","src.refunded":"Totalmente reembolsado","src.unpaid":"","src.cancelled":"","src.draft":"Rascunho","src.fulfilled":"Completo","src.orders.views.OrderList.fulfilled":"Completo","src.orders.components.OrderListFilter.1712863026":"Completo","src.partiallyFulfilled":"Parcialmente completo","src.unfulfilled":"Incompleto","src.orders.views.OrderList.unfulfilled":"Incompleto","src.orders.components.OrderListFilter.1751787272":"Incompleto","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"Link","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"Cancelar pedido","src.orders.components.OrderDetailsPage.1854613983":"Cancelar pedido","src.orders.components.OrderDraftPage.1854613983":"Cancelar pedido","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"Cliente","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"Cliente","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"Mesmo que o endereço de entrega","src.orders.components.OrderCustomerEditDialog.1411666943":"Editar detalhes do cliente","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.632633254":"","src.orders.components.OrderDraftCancelDialog.36681973":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"Produtos","src.orders.components.OrderUnfulfilledItems.1895667608":"Produtos","src.orders.components.OrderDraftDetailsProducts.2796503714":"Quantidade","src.orders.components.OrderFulfillment.2796503714":"Quantidade","src.orders.components.OrderFulfillmentDialog.2796503714":"Quantidade","src.orders.components.OrderUnfulfilledItems.2796503714":"Quantidade","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"Subtotal","src.orders.components.OrderPayment.781550514":"Subtotal","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"Criar pedido","src.orders.components.OrderListPage.2826235371":"Criar pedido","src.orders.components.OrderDraftListPage.551325728":"","src.orders.components.OrderDraftListPage.77765281":"","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"Adicionar rastreamento","src.orders.components.OrderFulfillmentCancelDialog.732594284":"Cancelar processo","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"Cancelar processo","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"SKU","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"Código de rastreamento","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.4067959693":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"Pedido foi pago","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"Pedido foi realizado","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"Forma de pagamento","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2415661583":"","src.orders.views.OrderList.readyToCapture":"","src.orders.components.OrderListFilter.2222765704":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"Entrega","src.productTypes.components.ProductTypeShipping.1325966144":"Entrega","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"Entrega","src.orders.components.OrderPayment.3768782744":"Quantidade pré-autorizada","src.orders.components.OrderPayment.2320183694":"Quantidade capturada","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"Capturar","src.orders.components.OrderPayment.2845258362":"Restituição","src.orders.components.OrderPayment.2444197639":"Cancelar","src.orders.components.OrderPayment.3500506678":"Sinalizar como pago","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"Montante","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.1542417144":"","src.products.components.ProductListPage.1542417144":"","src.products.views.1542417144":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"Faturar","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.OrderDraftList.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.OrderDraftList.1648805446":"","src.orders.views.OrderDraftList.1161115149":"","src.orders.views.OrderDraftList.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.1068617485":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"Título","src.pages.components.PageList.1124600214":"Título","src.pages.components.PageInfo.1116746286":"Conteúdo","src.translations.components.TranslationsPagesPage.1116746286":"Conteúdo","src.pages.components.PageList.3478065224":"slug","src.pages.components.PageSlug.3478065224":"slug","src.productTypes.components.ProductTypeAttributes.3478065224":"slug","src.pages.components.PageList.3767550649":"","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.3785394515":"","src.pages.views.3785394515":"","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.plugins.components.PluginInfo.3425535100":"","src.plugins.components.PluginsDetailsPage.3425535100":"","src.plugins.components.PluginInfo.1049131348":"","src.plugins.components.PluginInfo.4013064767":"","src.plugins.components.PluginsDetailsPage.3352026836":"","src.plugins.components.PluginsDetailsPage.2277745418":"","src.plugins.components.PluginsDetailsPage.1970881031":"","src.plugins.components.PluginSettings.1970881031":"","src.plugins.components.PluginsDetailsPage.4241018152":"","src.plugins.components.PluginsList.3247064221":"Ativo","src.staff.components.StaffList.3247064221":"Ativo","src.plugins.components.PluginsList.4120604650":"","src.plugins.components.PluginsList.666641390":"","src.plugins.views.100549097":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"Valores","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"imagens","src.products.components.ProductVariantImages.3240888698":"imagens","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"","src.products.components.ProductVariantStock.3841616483":"","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListFilter.821159718":"","src.products.components.ProductListFilter.1421689426":"","src.products.components.ProductListFilter.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"Inventário","prodictStockInventoryLabel":"Inventário","src.products.components.ProductVariantStock.3490038570":"Inventário","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"","src.products.components.ProductVariants.2153006789":"","src.products.components.ProductVariantNavigation.2845381934":"Adicionar variação","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.3989383405":"","src.products.views.3989383405":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1591632382":"","src.products.views.1731766393":"","src.products.views.2880386427":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1217376589":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.3479705616":"","src.productTypes.components.ProductTypeListPage.1776073799":"","src.productTypes.components.ProductTypeListPage.3420445375":"","src.translations.components.TranslationsEntitiesListPage.3420445375":"","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.ProductTypeList.4080551769":"","src.productTypes.views.ProductTypeList.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRates.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2673544109":"","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.1947090060":"","src.shipping.views.ShippingZoneDetails.131963671":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"Chave","src.siteSettings.components.SiteSettingsKeys.2446088470":"Chave","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.1481503299":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"Permissões","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.797461521":"","src.staff.components.StaffListPage.2852350932":"","src.staff.components.StaffListPage.61043583":"","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"Usuário está ativo","src.staff.views.1308770978":"","src.staff.views.8878988":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.2105464697":"","src.translations.components.TranslationsEntitiesListPage.2559018090":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file diff --git a/locale/pt.po b/locale/pt.po index 0d8384069..083554c50 100644 --- a/locale/pt.po +++ b/locale/pt.po @@ -3,7 +3,7 @@ # msgid "" msgstr "" -"POT-Creation-Date: 2019-09-06T13:56:36.897Z\n" +"POT-Creation-Date: 2019-09-16T15:25:09.340Z\n" "Last-Translator: Carlos Fontinha , 2019\n" "Language-Team: Portuguese (https://www.transifex.com/mirumee/teams/34782/pt/)\n" "MIME-Version: 1.0\n" @@ -141,22 +141,6 @@ msgctxt "create new menu item, header" msgid "Add Item" msgstr "" -#. [menuCreateDialogHeader] - dialog header -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json -msgctxt "dialog header" -msgid "Add Menu" -msgstr "" - -#. [menuListPageAddMenu] - button -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json -msgctxt "button" -msgid "Add Menu" -msgstr "" - #. [src.siteSettings.components.SiteSettingsKeyDialog.1238948746] - dialog #. header #. defaultMessage is: @@ -166,14 +150,6 @@ msgctxt "dialog header" msgid "Add New Authorization Key" msgstr "" -#. [src.pages.components.PageDetailsPage.755314116] - page header -#. defaultMessage is: -#. Add Page -#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json -msgctxt "page header" -msgid "Add Page" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.2892088870] - dialog header #. defaultMessage is: #. Add Price Rate @@ -182,38 +158,6 @@ msgctxt "dialog header" msgid "Add Price Rate" msgstr "" -#. [src.orders.components.OrderProductAddDialog.2775402904] - dialog header -#. defaultMessage is: -#. Add Product -#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json -msgctxt "dialog header" -msgid "Add Product" -msgstr "" - -#. [src.products.components.ProductListPage.2775402904] - button -#. defaultMessage is: -#. Add Product -#: build/locale/src/products/components/ProductListPage/ProductListPage.json -msgctxt "button" -msgid "Add Product" -msgstr "" - -#. [src.discounts.components.SaleListPage.1742771332] - button -#. defaultMessage is: -#. Add Sale -#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json -msgctxt "button" -msgid "Add Sale" -msgstr "" - -#. [src.staff.components.StaffAddMemberDialog.3490059488] - dialog header -#. defaultMessage is: -#. Add Staff Member -#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json -msgctxt "dialog header" -msgid "Add Staff Member" -msgstr "" - #. [src.attributes.components.AttributeValueEditDialog.1841790893] - add #. attribute value #. defaultMessage is: @@ -223,14 +167,6 @@ msgctxt "add attribute value" msgid "Add Value" msgstr "" -#. [src.products.views.2178905289] - header -#. defaultMessage is: -#. Add Variant -#: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "header" -msgid "Add Variant" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.1397795758] - add weight #. based shipping method, dialog header #. defaultMessage is: @@ -248,14 +184,6 @@ msgctxt "button" msgid "Add address" msgstr "" -#. [src.attributes.components.AttributeListPage.350498821] - button -#. defaultMessage is: -#. Add attribute -#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json -msgctxt "button" -msgid "Add attribute" -msgstr "Adicionar atributo" - #. [src.siteSettings.components.SiteSettingsKeyDialog.50561933] - button #. defaultMessage is: #. Add authentication @@ -264,14 +192,6 @@ msgctxt "button" msgid "Add authentication" msgstr "" -#. [src.categories.components.CategoryListPage.228151782] - button -#. defaultMessage is: -#. Add category -#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json -msgctxt "button" -msgid "Add category" -msgstr "Adicionar categoria" - #. [src.collections.components.CollectionCreatePage.3958681866] - page header #. defaultMessage is: #. Add collection @@ -280,14 +200,6 @@ msgctxt "page header" msgid "Add collection" msgstr "Adicionar coleção" -#. [src.collections.components.CollectionListPage.3958681866] - button -#. defaultMessage is: -#. Add collection -#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json -msgctxt "button" -msgid "Add collection" -msgstr "Adicionar coleção" - #. [src.customers.components.CustomerCreatePage.1934221653] - page header #. defaultMessage is: #. Add customer @@ -320,14 +232,6 @@ msgctxt "button" msgid "Add key" msgstr "" -#. [menuItemsAddItem] - add new menu item -#. defaultMessage is: -#. Add new item -#: build/locale/src/navigation/components/MenuItems/MenuItems.json -msgctxt "add new menu item" -msgid "Add new item" -msgstr "" - #. [menuItemsPlaceholder] #. defaultMessage is: #. Add new menu item to begin creating menu @@ -362,14 +266,6 @@ msgctxt "button" msgid "Add or Edit Link" msgstr "" -#. [src.pages.components.PageListPage.1767905232] - button -#. defaultMessage is: -#. Add page -#: build/locale/src/pages/components/PageListPage/PageListPage.json -msgctxt "button" -msgid "Add page" -msgstr "Adicionar página" - #. [src.categories.components.CategoryProducts.3554578821] - button #. defaultMessage is: #. Add product @@ -378,14 +274,6 @@ msgctxt "button" msgid "Add product" msgstr "Adicionar produto" -#. [src.productTypes.components.ProductTypeListPage.889729490] - button -#. defaultMessage is: -#. Add product type -#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json -msgctxt "button" -msgid "Add product type" -msgstr "Adicionar tipo de produto" - #. [src.orders.components.OrderDraftDetails.2528459381] - button #. defaultMessage is: #. Add products @@ -394,14 +282,6 @@ msgctxt "button" msgid "Add products" msgstr "" -#. [src.shipping.components.ShippingZoneRates.352297149] - button -#. defaultMessage is: -#. Add rate -#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json -msgctxt "button" -msgid "Add rate" -msgstr "" - #. [src.categories.components.CategoryCreatePage.2563994280] #. defaultMessage is: #. Add search engine title and description to make this category easier to @@ -463,30 +343,6 @@ msgctxt "button" msgid "Add shipping carrier" msgstr "" -#. [src.shipping.components.ShippingZonesList.2474410767] - button -#. defaultMessage is: -#. Add shipping zone -#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json -msgctxt "button" -msgid "Add shipping zone" -msgstr "Adicionar região de entrega" - -#. [src.staff.components.StaffListPage.802625341] - button -#. defaultMessage is: -#. Add staff member -#: build/locale/src/staff/components/StaffListPage/StaffListPage.json -msgctxt "button" -msgid "Add staff member" -msgstr "Adicionar membro da equipa" - -#. [src.categories.components.CategoryList.435697837] - button -#. defaultMessage is: -#. Add subcategory -#: build/locale/src/categories/components/CategoryList/CategoryList.json -msgctxt "button" -msgid "Add subcategory" -msgstr "" - #. [src.attributes.components.AttributeProperties.673770329] - add attribute #. as column in product list table #. defaultMessage is: @@ -514,35 +370,14 @@ msgctxt "dialog header" msgid "Add tracking code" msgstr "" -#. [src.attributes.components.AttributeValues.254756045] - add attribute value -#. button -#. defaultMessage is: -#. Add value -#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json -msgctxt "add attribute value button" -msgid "Add value" -msgstr "" - #. [src.products.components.ProductVariantNavigation.2845381934] - button #. defaultMessage is: #. Add variant -#. [src.products.components.ProductVariants.2845381934] - button -#. defaultMessage is: -#. Add variant #: build/locale/src/products/components/ProductVariantNavigation/ProductVariantNavigation.json -#: build/locale/src/products/components/ProductVariants/ProductVariants.json msgctxt "button" msgid "Add variant" msgstr "Adicionar variação" -#. [src.discounts.components.VoucherListPage.1536809153] - button -#. defaultMessage is: -#. Add voucher -#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json -msgctxt "button" -msgid "Add voucher" -msgstr "Adicionar voucher" - #. [src.attributes.views.AttributeDetails.634268988] - added new attribute #. value #. defaultMessage is: @@ -600,14 +435,6 @@ msgctxt "description" msgid "Address line 2" msgstr "" -#. [src.customers.components.CustomerAddress.1320082647] - addres card header -#. defaultMessage is: -#. Address {addressNumber} -#: build/locale/src/customers/components/CustomerAddress/CustomerAddress.json -msgctxt "addres card header" -msgid "Address {addressNumber}" -msgstr "" - #. [src.attributes.components.AttributeValues.1565474525] - attribute values #. list: slug column header #. defaultMessage is: @@ -657,6 +484,46 @@ msgctxt "tax rate" msgid "Agricultural supplies" msgstr "" +#. [src.attributes.components.AttributeListPage.2417065806] - tab name +#. defaultMessage is: +#. All Attributes +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "tab name" +msgid "All Attributes" +msgstr "" + +#. [src.categories.components.CategoryListPage.4294878092] - tab name +#. defaultMessage is: +#. All Categories +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "tab name" +msgid "All Categories" +msgstr "" + +#. [src.collections.components.CollectionListPage.1631917001] - tab name +#. defaultMessage is: +#. All Collections +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "tab name" +msgid "All Collections" +msgstr "" + +#. [src.customers.components.CustomerListPage.477293306] - tab name +#. defaultMessage is: +#. All Customers +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "tab name" +msgid "All Customers" +msgstr "" + +#. [src.orders.components.OrderDraftListPage.551325728] - tab name +#. defaultMessage is: +#. All Drafts +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "tab name" +msgid "All Drafts" +msgstr "" + #. [src.orders.components.OrderListPage.875489544] - tab name #. defaultMessage is: #. All Orders @@ -674,22 +541,54 @@ msgctxt "section header" msgid "All Photos" msgstr "" -#. [src.products.components.ProductListPage.821159718] - tab name +#. [src.productTypes.components.ProductTypeListPage.1776073799] - tab name +#. defaultMessage is: +#. All Product Types +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "tab name" +msgid "All Product Types" +msgstr "" + +#. [src.products.components.ProductListFilter.821159718] - tab name #. defaultMessage is: #. All Products -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "tab name" msgid "All Products" msgstr "" -#. [src.categories.components.CategoryList.3229914152] - section header +#. [src.discounts.components.SaleListPage.3907768880] - tab name +#. defaultMessage is: +#. All Sales +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "tab name" +msgid "All Sales" +msgstr "" + +#. [src.staff.components.StaffListPage.2852350932] - tab name +#. defaultMessage is: +#. All Staff Members +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "tab name" +msgid "All Staff Members" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.3229914152] - section header #. defaultMessage is: #. All Subcategories -#: build/locale/src/categories/components/CategoryList/CategoryList.json +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json msgctxt "section header" msgid "All Subcategories" msgstr "" +#. [src.discounts.components.VoucherListPage.1112241061] - tab name +#. defaultMessage is: +#. All Vouchers +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "tab name" +msgid "All Vouchers" +msgstr "" + #. [src.taxes.components.TaxConfiguration.142803418] #. defaultMessage is: #. All products prices are entered with tax included @@ -797,6 +696,14 @@ msgctxt "description" msgid "Are you sure you want to delete collection's image?" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.36681973] +#. defaultMessage is: +#. Are you sure you want to delete draft #{number}? +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "description" +msgid "Are you sure you want to delete draft #{number}?" +msgstr "" + #. [menuDetailsDeleteMenuContent] #. defaultMessage is: #. Are you sure you want to delete menu {menuName}? @@ -813,6 +720,14 @@ msgctxt "description" msgid "Are you sure you want to delete this address from users address book?" msgstr "" +#. [src.products.views.2880386427] +#. defaultMessage is: +#. Are you sure you want to delete this image? +#: build/locale/src/products/views/ProductImage.json +msgctxt "description" +msgid "Are you sure you want to delete this image?" +msgstr "" + #. [src.attributes.components.AttributeDeleteDialog.3738429348] - dialog #. content #. defaultMessage is: @@ -863,12 +778,7 @@ msgstr "" #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this attribute} #. other{{displayQuantity} categories}}? -#. [src.categories.views.844574071] -#. defaultMessage is: -#. Are you sure you want to delete {counter,plural,one{this attribute} -#. other{{displayQuantity} categories}}? #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this attribute} " @@ -886,22 +796,33 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.2497542455] +#. [src.categories.views.CategoryList.2144707585] +#. defaultMessage is: +#. Are you sure you want to delete {counter,plural,one{this category} +#. other{{displayQuantity} categories}}? +#: build/locale/src/categories/views/CategoryList/CategoryList.json +msgctxt "description" +msgid "" +"Are you sure you want to delete {counter,plural,one{this category} " +"other{{displayQuantity} categories}}?" +msgstr "" + +#. [src.collections.views.CollectionList.2497542455] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this collection} " "other{{displayQuantity} collections}}?" msgstr "" -#. [src.customers.views.409347866] +#. [src.customers.views.CustomerList.409347866] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this customer} #. other{{displayQuantity} customers}}? -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this customer} " @@ -919,11 +840,11 @@ msgid "" "other{{displayQuantity} menus}}?" msgstr "" -#. [src.orders.views.1389231130] - dialog content +#. [src.orders.views.OrderDraftList.1389231130] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this order draft} #. other{{displayQuantity} orderDrafts}}? -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this order draft} " @@ -941,11 +862,11 @@ msgid "" "other{{displayQuantity} pages}}?" msgstr "" -#. [src.productTypes.views.2294091098] - dialog content +#. [src.productTypes.views.ProductTypeList.2294091098] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this product type} #. other{{displayQuantity} product types}}? -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this product type} " @@ -963,11 +884,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.discounts.views.2516361175] - dialog content +#. [src.discounts.views.SaleList.2516361175] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this sale} #. other{{displayQuantity} sales}}? -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this sale} " @@ -996,17 +917,33 @@ msgid "" "other{{displayQuantity} variants}}?" msgstr "" -#. [src.discounts.views.1791926983] - dialog content +#. [src.discounts.views.VoucherList.1791926983] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this voucher} #. other{{displayQuantity} vouchers}}? -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this voucher} " "other{{displayQuantity} vouchers}}?" msgstr "" +#. [src.shipping.views.ShippingZoneDetails.131963671] - unassign country +#. defaultMessage is: +#. Are you sure you want to delete {countryName} from this shipping zone? +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country" +msgid "Are you sure you want to delete {countryName} from this shipping zone?" +msgstr "" + +#. [src.staff.views.8878988] +#. defaultMessage is: +#. Are you sure you want to delete {email} from staff members? +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "description" +msgid "Are you sure you want to delete {email} from staff members?" +msgstr "" + #. [src.customers.views.1927691511] - delete customer, dialog content #. defaultMessage is: #. Are you sure you want to delete {email}? @@ -1121,11 +1058,11 @@ msgctxt "description" msgid "Are you sure you want to mark this order as paid?" msgstr "" -#. [src.collections.views.1348793822] +#. [src.collections.views.CollectionList.1348793822] #. defaultMessage is: #. Are you sure you want to publish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to publish {counter,plural,one{this collection} " @@ -1154,30 +1091,6 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.orders.components.OrderDraftCancelDialog.3199827590] -#. defaultMessage is: -#. Are you sure you want to remove draft #{number}? -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "description" -msgid "Are you sure you want to remove draft #{number}?" -msgstr "" - -#. [src.products.views.672103788] -#. defaultMessage is: -#. Are you sure you want to remove this image? -#: build/locale/src/products/views/ProductImage.json -msgctxt "description" -msgid "Are you sure you want to remove this image?" -msgstr "" - -#. [src.shipping.views.ShippingZoneDetails.1790261672] - unassign country -#. defaultMessage is: -#. Are you sure you want to remove {countryName} from this shipping zone? -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country" -msgid "Are you sure you want to remove {countryName} from this shipping zone?" -msgstr "" - #. [src.staff.views.3945766678] #. defaultMessage is: #. Are you sure you want to remove {email} avatar? @@ -1186,14 +1099,6 @@ msgctxt "description" msgid "Are you sure you want to remove {email} avatar?" msgstr "" -#. [src.staff.views.2728048444] -#. defaultMessage is: -#. Are you sure you want to remove {email} from staff members? -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "description" -msgid "Are you sure you want to remove {email} from staff members?" -msgstr "" - #. [src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450] #. defaultMessage is: #. Are you sure you want to unassign {attributeName} from {productTypeName}? @@ -1274,11 +1179,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.3944356444] +#. [src.collections.views.CollectionList.3944356444] #. defaultMessage is: #. Are you sure you want to unpublish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to unpublish {counter,plural,one{this collection} " @@ -1439,6 +1344,15 @@ msgctxt "button" msgid "Assign products" msgstr "" +#. [src.attributes.components.AttributeValues.351422234] - assign attribute +#. value button +#. defaultMessage is: +#. Assign value +#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json +msgctxt "assign attribute value button" +msgid "Assign value" +msgstr "" + #. [src.attributes.components.AttributeDetails.3605174225] - attribute's slug #. short code label #. defaultMessage is: @@ -1517,6 +1431,14 @@ msgctxt "product attributes, section header" msgid "Attributes" msgstr "Atributos" +#. [src.configuration.2326418019] +#. defaultMessage is: +#. Attributes and Product Typess +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Attributes and Product Typess" +msgstr "" + #. [src.attributes.views.AttributeList.3218248395] - deleted multiple #. attributes #. defaultMessage is: @@ -2300,6 +2222,22 @@ msgctxt "description" msgid "Country area" msgstr "" +#. [menuCreateDialogHeader] - dialog header +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json +msgctxt "dialog header" +msgid "Create Menu" +msgstr "" + +#. [menuListPageAddMenu] - button +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json +msgctxt "button" +msgid "Create Menu" +msgstr "" + #. [src.attributes.components.AttributePage.2855501559] - page title #. defaultMessage is: #. Create New Attribute @@ -2324,6 +2262,30 @@ msgctxt "header" msgid "Create New Shipping Zone" msgstr "" +#. [src.pages.components.PageDetailsPage.1068617485] - page header +#. defaultMessage is: +#. Create Page +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page header" +msgid "Create Page" +msgstr "" + +#. [src.orders.components.OrderProductAddDialog.1542417144] - dialog header +#. defaultMessage is: +#. Create Product +#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json +msgctxt "dialog header" +msgid "Create Product" +msgstr "" + +#. [src.products.components.ProductListPage.1542417144] - button +#. defaultMessage is: +#. Create Product +#: build/locale/src/products/components/ProductListPage/ProductListPage.json +msgctxt "button" +msgid "Create Product" +msgstr "" + #. [src.products.views.1542417144] - window title #. defaultMessage is: #. Create Product @@ -2356,11 +2318,19 @@ msgctxt "page header" msgid "Create Sale" msgstr "" -#. [src.products.views.2362587265] - window title +#. [src.discounts.components.SaleListPage.3866518732] - button +#. defaultMessage is: +#. Create Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "button" +msgid "Create Sale" +msgstr "" + +#. [src.products.views.2362587265] - header #. defaultMessage is: #. Create Variant #: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "window title" +msgctxt "header" msgid "Create Variant" msgstr "" @@ -2372,6 +2342,22 @@ msgctxt "page header" msgid "Create Voucher" msgstr "" +#. [src.attributes.components.AttributeListPage.3824684885] - button +#. defaultMessage is: +#. Create attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "button" +msgid "Create attribute" +msgstr "" + +#. [src.categories.components.CategoryListPage.1140231710] - button +#. defaultMessage is: +#. Create category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "button" +msgid "Create category" +msgstr "" + #. [src.categories.views.1140231710] - window title #. defaultMessage is: #. Create category @@ -2380,6 +2366,14 @@ msgctxt "window title" msgid "Create category" msgstr "" +#. [src.collections.components.CollectionListPage.686910896] - button +#. defaultMessage is: +#. Create collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "button" +msgid "Create collection" +msgstr "" + #. [src.collections.views.686910896] - window title #. defaultMessage is: #. Create collection @@ -2396,6 +2390,14 @@ msgctxt "window title" msgid "Create customer" msgstr "" +#. [menuItemsAddItem] - add new menu item +#. defaultMessage is: +#. Create new item +#: build/locale/src/navigation/components/MenuItems/MenuItems.json +msgctxt "add new menu item" +msgid "Create new item" +msgstr "" + #. [src.orders.components.OrderDraftListPage.2826235371] - button #. defaultMessage is: #. Create order @@ -2408,6 +2410,14 @@ msgctxt "button" msgid "Create order" msgstr "Criar pedido" +#. [src.pages.components.PageListPage.3785394515] - button +#. defaultMessage is: +#. Create page +#: build/locale/src/pages/components/PageListPage/PageListPage.json +msgctxt "button" +msgid "Create page" +msgstr "" + #. [src.pages.views.3785394515] - header #. defaultMessage is: #. Create page @@ -2419,11 +2429,55 @@ msgstr "" #. [src.shipping.components.ShippingZoneRateDialog.16061680] - button #. defaultMessage is: #. Create rate +#. [src.shipping.components.ShippingZoneRates.16061680] - button +#. defaultMessage is: +#. Create rate #: build/locale/src/shipping/components/ShippingZoneRateDialog/ShippingZoneRateDialog.json +#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json msgctxt "button" msgid "Create rate" msgstr "" +#. [src.shipping.components.ShippingZonesList.2673544109] - button +#. defaultMessage is: +#. Create shipping zone +#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json +msgctxt "button" +msgid "Create shipping zone" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.770296100] - button +#. defaultMessage is: +#. Create subcategory +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json +msgctxt "button" +msgid "Create subcategory" +msgstr "" + +#. [src.products.components.ProductVariants.3989383405] - button +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/components/ProductVariants/ProductVariants.json +msgctxt "button" +msgid "Create variant" +msgstr "" + +#. [src.products.views.3989383405] - window title +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/views/ProductVariantCreate.json +msgctxt "window title" +msgid "Create variant" +msgstr "" + +#. [src.discounts.components.VoucherListPage.614836274] - button +#. defaultMessage is: +#. Create voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "button" +msgid "Create voucher" +msgstr "" + #. [src.collections.views.1597339737] #. defaultMessage is: #. Created collection @@ -2470,7 +2524,11 @@ msgstr "" #. [src.components.FilterBar.2340527467] #. defaultMessage is: #. Custom Filter +#. [src.components.SearchBar.2340527467] +#. defaultMessage is: +#. Custom Filter #: build/locale/src/components/FilterBar/FilterBar.json +#: build/locale/src/components/SearchBar/SearchBar.json msgctxt "description" msgid "Custom Filter" msgstr "" @@ -2726,10 +2784,18 @@ msgctxt "dialog title" msgid "Delete Collection" msgstr "" -#. [src.orders.views.1161115149] - dialog header +#. [src.products.views.1731766393] - dialog header +#. defaultMessage is: +#. Delete Image +#: build/locale/src/products/views/ProductImage.json +msgctxt "dialog header" +msgid "Delete Image" +msgstr "" + +#. [src.orders.views.OrderDraftList.1161115149] - dialog header #. defaultMessage is: #. Delete Order Drafts -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog header" msgid "Delete Order Drafts" msgstr "" @@ -2767,10 +2833,10 @@ msgctxt "dialog header" msgid "Delete Product Type" msgstr "" -#. [src.productTypes.views.4080551769] - dialog header +#. [src.productTypes.views.ProductTypeList.4080551769] - dialog header #. defaultMessage is: #. Delete Product Types -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog header" msgid "Delete Product Types" msgstr "" @@ -2799,10 +2865,10 @@ msgctxt "dialog header" msgid "Delete Sale" msgstr "" -#. [src.discounts.views.2809303671] - dialog header +#. [src.discounts.views.SaleList.2809303671] - dialog header #. defaultMessage is: #. Delete Sales -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog header" msgid "Delete Sales" msgstr "" @@ -2816,9 +2882,13 @@ msgctxt "custom search delete, dialog header" msgid "Delete Search" msgstr "" +#. [src.components.Filter.2173195312] - button +#. defaultMessage is: +#. Delete Search #. [src.components.TableFilter.2173195312] - button #. defaultMessage is: #. Delete Search +#: build/locale/src/components/Filter/FilterSearch.json #: build/locale/src/components/TableFilter/FilterChips.json msgctxt "button" msgid "Delete Search" @@ -2885,10 +2955,10 @@ msgctxt "dialog header" msgid "Delete Voucher" msgstr "" -#. [src.discounts.views.367317371] - dialog header +#. [src.discounts.views.VoucherList.367317371] - dialog header #. defaultMessage is: #. Delete Vouchers -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog header" msgid "Delete Vouchers" msgstr "" @@ -2922,11 +2992,11 @@ msgstr "" #. [src.categories.views.712767046] - dialog title #. defaultMessage is: #. Delete categories -#. [src.categories.views.712767046] - dialog title +#. [src.categories.views.CategoryList.712767046] - dialog title #. defaultMessage is: #. Delete categories #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "dialog title" msgid "Delete categories" msgstr "" @@ -2943,10 +3013,10 @@ msgctxt "dialog title" msgid "Delete category" msgstr "" -#. [src.collections.views.3817188998] - dialog title +#. [src.collections.views.CollectionList.3817188998] - dialog title #. defaultMessage is: #. Delete collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Delete collections" msgstr "" @@ -2959,14 +3029,31 @@ msgctxt "dialog header" msgid "Delete customer" msgstr "" -#. [src.customers.views.1946482599] - dialog header +#. [src.customers.views.CustomerList.1946482599] - dialog header #. defaultMessage is: #. Delete customers -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "dialog header" msgid "Delete customers" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.632633254] - dialog header +#. defaultMessage is: +#. Delete draft order +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "dialog header" +msgid "Delete draft order" +msgstr "" + +#. [src.shipping.views.ShippingZoneDetails.1947090060] - unassign country, +#. dialog header +#. defaultMessage is: +#. Delete from shipping zone +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country, dialog header" +msgid "Delete from shipping zone" +msgstr "" + #. [src.collections.views.942133001] - dialog title #. defaultMessage is: #. Delete image @@ -3027,6 +3114,14 @@ msgctxt "description" msgid "Deleted collection" msgstr "Coleção deletada" +#. [src.orders.views.OrderDraftList.1648805446] +#. defaultMessage is: +#. Deleted draft orders +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json +msgctxt "description" +msgid "Deleted draft orders" +msgstr "" + #. [menuListDeletedMenu] #. defaultMessage is: #. Deleted menu @@ -3626,14 +3721,6 @@ msgctxt "order history message" msgid "Fulfilled {quantity} items" msgstr "" -#. [src.orders.components.OrderListFilter.2943502192] - order -#. defaultMessage is: -#. Fulfillment Status -#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json -msgctxt "order" -msgid "Fulfillment Status" -msgstr "" - #. [src.orders.components.OrderHistory.3081292385] - order history message #. defaultMessage is: #. Fulfillment confirmation was sent to customer @@ -3790,12 +3877,12 @@ msgctxt "description" msgid "If empty, the preview shows what will be autogenerated." msgstr "Se vazio, a pré-visualização será auto-gerada." -#. [src.attributes.components.AttributeProperties.2519239682] +#. [src.attributes.components.AttributeProperties.4048785456] #. defaultMessage is: -#. If enable this attribute can be used as a column in product table. +#. If enabled this attribute can be used as a column in product table. #: build/locale/src/attributes/components/AttributeProperties/AttributeProperties.json msgctxt "description" -msgid "If enable this attribute can be used as a column in product table." +msgid "If enabled this attribute can be used as a column in product table." msgstr "" #. [src.attributes.components.AttributeProperties.787251583] @@ -3901,6 +3988,22 @@ msgctxt "product variant stock" msgid "Inventory" msgstr "Inventário" +#. [src.staff.components.StaffAddMemberDialog.1481503299] - dialog header +#. defaultMessage is: +#. Invite Staff Member +#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json +msgctxt "dialog header" +msgid "Invite Staff Member" +msgstr "" + +#. [src.staff.components.StaffListPage.797461521] - button +#. defaultMessage is: +#. Invite staff member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "button" +msgid "Invite staff member" +msgstr "" + #. [src.productTypes.components.ProductTypeShipping.2143413921] - switch #. button #. defaultMessage is: @@ -4253,6 +4356,14 @@ msgctxt "voucher requirement" msgid "Minimum quantity of items" msgstr "" +#. [src.configuration.1233229030] +#. defaultMessage is: +#. Miscellaneous +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Miscellaneous" +msgstr "" + #. [src.attributes.components.AttributeDetails.3334509011] - product attribute #. type #. defaultMessage is: @@ -5085,6 +5196,14 @@ msgctxt "description" msgid "Order History" msgstr "" +#. [src.orders.components.OrderListFilter.2222765704] +#. defaultMessage is: +#. Order Status +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +msgctxt "description" +msgid "Order Status" +msgstr "" + #. [src.orders.components.OrderHistory.1230178536] - order history message #. defaultMessage is: #. Order address was updated @@ -5101,13 +5220,13 @@ msgctxt "order history message" msgid "Order confirmation was sent to customer" msgstr "" -#. [src.orders.views.1872939752] +#. [src.orders.views.OrderDraftList.1872939752] #. defaultMessage is: #. Order draft succesfully created #. [src.orders.views.OrderList.1872939752] #. defaultMessage is: #. Order draft succesfully created -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json #: build/locale/src/orders/views/OrderList/OrderList.json msgctxt "description" msgid "Order draft succesfully created" @@ -5772,6 +5891,14 @@ msgctxt "description" msgid "Product Name" msgstr "" +#. [src.configuration.3655543906] +#. defaultMessage is: +#. Product Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Product Settings" +msgstr "" + #. [src.discounts.components.DiscountProducts.4257289053] #. defaultMessage is: #. Product Type @@ -5930,12 +6057,12 @@ msgctxt "order history message" msgid "Products were added to draft order" msgstr "" -#. [src.orders.components.OrderHistory.2574162126] - order history message +#. [src.orders.components.OrderHistory.4067959693] - order history message #. defaultMessage is: -#. Products were removed from draft order +#. Products were deleted from draft order #: build/locale/src/orders/components/OrderHistory/OrderHistory.json msgctxt "order history message" -msgid "Products were removed from draft order" +msgid "Products were deleted from draft order" msgstr "" #. [src.properties] @@ -5962,10 +6089,10 @@ msgctxt "description" msgid "Provided email address does not exist in our database." msgstr "" -#. [src.collections.views.1547167026] - publish collections +#. [src.collections.views.CollectionList.1547167026] - publish collections #. defaultMessage is: #. Publish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "publish collections" msgid "Publish" msgstr "Publicado" @@ -6002,10 +6129,10 @@ msgctxt "dialog header" msgid "Publish Products" msgstr "" -#. [src.collections.views.2823425739] - dialog title +#. [src.collections.views.CollectionList.2823425739] - dialog title #. defaultMessage is: #. Publish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Publish collections" msgstr "" @@ -6179,6 +6306,18 @@ msgctxt "shipping method price" msgid "Rate Price" msgstr "" +#. [src.orders.components.OrderListFilter.2415661583] - order status +#. defaultMessage is: +#. Ready to Capture +#. [src.orders.views.OrderList.readyToCapture] - order status +#. defaultMessage is: +#. Ready to Capture +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +#: build/locale/src/orders/views/OrderList/filters.json +msgctxt "order status" +msgid "Ready to Capture" +msgstr "" + #. [src.customers.components.CustomerOrders.3878642352] - section header #. defaultMessage is: #. Recent orders @@ -6227,22 +6366,14 @@ msgctxt "switch button" msgid "Release all stock allocated to this order" msgstr "" -#. [src.auth.components.LoginPage.3182284913] - login -#. defaultMessage is: -#. Remember me -#: build/locale/src/auth/components/LoginPage/LoginPage.json -msgctxt "login" -msgid "Remember me" -msgstr "" - #. [src.categories.views.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. -#. [src.categories.views.3488150607] +#. [src.categories.views.CategoryList.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "description" msgid "Remember this will also delete all products assigned to this category." msgstr "" @@ -6255,39 +6386,6 @@ msgctxt "button" msgid "Remove" msgstr "Remover" -#. [src.products.views.490753666] - dialog header -#. defaultMessage is: -#. Remove Image -#: build/locale/src/products/views/ProductImage.json -msgctxt "dialog header" -msgid "Remove Image" -msgstr "" - -#. [src.orders.components.OrderDraftCancelDialog.500287069] - dialog header -#. defaultMessage is: -#. Remove draft order -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "dialog header" -msgid "Remove draft order" -msgstr "Remover pedido" - -#. [src.shipping.views.ShippingZoneDetails.254167659] - unassign country, -#. dialog header -#. defaultMessage is: -#. Remove from shipping zone -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country, dialog header" -msgid "Remove from shipping zone" -msgstr "" - -#. [src.orders.views.3880993240] -#. defaultMessage is: -#. Removed draft orders -#: build/locale/src/orders/views/OrderDraftList.json -msgctxt "description" -msgid "Removed draft orders" -msgstr "" - #. [src.pages.views.1457312643] #. defaultMessage is: #. Removed page @@ -6453,6 +6551,18 @@ msgctxt "button" msgid "Save" msgstr "Guardar" +#. [src.components.Filter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#. [src.components.TableFilter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#: build/locale/src/components/Filter/FilterSearch.json +#: build/locale/src/components/TableFilter/FilterChips.json +msgctxt "button" +msgid "Save Custom Search" +msgstr "" + #. [src.components.SaveFilterTabDialog.1514415736] - save filter tab, header #. defaultMessage is: #. Save Custom Search @@ -6461,14 +6571,6 @@ msgctxt "save filter tab, header" msgid "Save Custom Search" msgstr "" -#. [src.components.TableFilter.1514415736] - button -#. defaultMessage is: -#. Save Custom Search -#: build/locale/src/components/TableFilter/FilterChips.json -msgctxt "button" -msgid "Save Custom Search" -msgstr "" - #. [src.products.components.ProductVariantCreatePage.2853608829] - button #. defaultMessage is: #. Save variant @@ -6485,6 +6587,14 @@ msgctxt "description" msgid "Saved changes" msgstr "" +#. [src.attributes.components.AttributeListPage.3916653510] +#. defaultMessage is: +#. Search Attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "description" +msgid "Search Attribute" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.902296540] #. defaultMessage is: #. Search Attributes @@ -6501,10 +6611,30 @@ msgctxt "description" msgid "Search Categories" msgstr "" +#. [src.categories.components.CategoryListPage.3841025483] +#. defaultMessage is: +#. Search Category +#. [src.translations.components.TranslationsEntitiesListPage.3841025483] +#. defaultMessage is: +#. Search Category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Category" +msgstr "" + +#. [src.collections.components.CollectionListPage.4057224233] +#. defaultMessage is: +#. Search Collection #. [src.components.AssignCollectionDialog.4057224233] #. defaultMessage is: #. Search Collection +#. [src.translations.components.TranslationsEntitiesListPage.4057224233] +#. defaultMessage is: +#. Search Collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json #: build/locale/src/components/AssignCollectionDialog/AssignCollectionDialog.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json msgctxt "description" msgid "Search Collection" msgstr "" @@ -6517,6 +6647,14 @@ msgctxt "description" msgid "Search Countries" msgstr "" +#. [src.customers.components.CustomerListPage.1643417013] +#. defaultMessage is: +#. Search Customer +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "description" +msgid "Search Customer" +msgstr "" + #. [src.orders.components.OrderCustomer.2433460203] #. defaultMessage is: #. Search Customers @@ -6525,6 +6663,14 @@ msgctxt "description" msgid "Search Customers" msgstr "" +#. [src.orders.components.OrderDraftListPage.77765281] +#. defaultMessage is: +#. Search Draft +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "description" +msgid "Search Draft" +msgstr "" + #. [src.translations.components.TranslationsCategoriesPage.1406947243] #. defaultMessage is: #. Search Engine Description @@ -6605,6 +6751,34 @@ msgctxt "description" msgid "Search Orders..." msgstr "" +#. [src.translations.components.TranslationsEntitiesListPage.2559018090] +#. defaultMessage is: +#. Search Page +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Page" +msgstr "" + +#. [src.translations.components.TranslationsEntitiesListPage.2105464697] +#. defaultMessage is: +#. Search Product +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product" +msgstr "" + +#. [src.productTypes.components.ProductTypeListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#. [src.translations.components.TranslationsEntitiesListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product Type" +msgstr "" + #. [src.components.AssignProductDialog.2850255786] #. defaultMessage is: #. Search Products @@ -6617,14 +6791,46 @@ msgctxt "description" msgid "Search Products" msgstr "" -#. [src.products.components.ProductListPage.3550330425] +#. [src.products.components.ProductListFilter.3550330425] #. defaultMessage is: #. Search Products... -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Search Products..." msgstr "" +#. [src.discounts.components.SaleListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#. [src.translations.components.TranslationsEntitiesListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Sale" +msgstr "" + +#. [src.staff.components.StaffListPage.61043583] +#. defaultMessage is: +#. Search Staff Member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "description" +msgid "Search Staff Member" +msgstr "" + +#. [src.discounts.components.VoucherListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#. [src.translations.components.TranslationsEntitiesListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Voucher" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.524117994] #. defaultMessage is: #. Search by attribute name @@ -6731,10 +6937,10 @@ msgctxt "description" msgid "Select all orders where:" msgstr "" -#. [src.products.components.ProductListPage.1421689426] +#. [src.products.components.ProductListFilter.1421689426] #. defaultMessage is: #. Select all products where: -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Select all products where:" msgstr "" @@ -6820,6 +7026,14 @@ msgctxt "description" msgid "Set plugin as Active" msgstr "" +#. [src.components.VisibilityCard.292404896] +#. defaultMessage is: +#. Set publication date +#: build/locale/src/components/VisibilityCard/VisibilityCard.json +msgctxt "description" +msgid "Set publication date" +msgstr "" + #. [src.discounts.shipment] - voucher discount #. defaultMessage is: #. Shipment @@ -7085,6 +7299,14 @@ msgctxt "staff section name" msgid "Staff Members" msgstr "" +#. [src.configuration.3140151600] +#. defaultMessage is: +#. Staff Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Staff Settings" +msgstr "" + #. [src.standard] - tax rate #. defaultMessage is: #. Standard @@ -8069,10 +8291,10 @@ msgctxt "payment status" msgid "Unpaid" msgstr "" -#. [src.collections.views.2237014112] - unpublish collections +#. [src.collections.views.CollectionList.2237014112] - unpublish collections #. defaultMessage is: #. Unpublish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "unpublish collections" msgid "Unpublish" msgstr "Remover" @@ -8109,10 +8331,10 @@ msgctxt "dialog header" msgid "Unpublish Products" msgstr "" -#. [src.collections.views.2637364047] - dialog title +#. [src.collections.views.CollectionList.2637364047] - dialog title #. defaultMessage is: #. Unpublish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Unpublish collections" msgstr "" @@ -8612,6 +8834,22 @@ msgctxt "description" msgid "ZIP / Postal code" msgstr "" +#. [src.productTypes.components.ProductTypeListPage.3479705616] - button +#. defaultMessage is: +#. create product type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "button" +msgid "create product type" +msgstr "" + +#. [src.staff.views.1308770978] - dialog header +#. defaultMessage is: +#. delete Staff User +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "dialog header" +msgid "delete Staff User" +msgstr "" + #. [orderPaymentVATDoesNotApply] - vat not included in order price #. defaultMessage is: #. does not apply @@ -8685,19 +8923,35 @@ msgctxt "product status is set as" msgid "is set as" msgstr "" -#. [src.staff.views.2240444792] - dialog header -#. defaultMessage is: -#. remove Staff User -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "dialog header" -msgid "remove Staff User" -msgstr "" - -#. [src.components.VisibilityCard.1815688500] +#. [src.collections.components.CollectionCreatePage.1815688500] - collection #. defaultMessage is: #. since {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.1815688500] - collection +#. defaultMessage is: +#. since {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "since {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.1815688500] - page +#. defaultMessage is: +#. since {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "since {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#. [src.products.components.ProductUpdatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "since {date}" msgstr "" @@ -8725,11 +8979,35 @@ msgctxt "weight" msgid "to {value} {unit}" msgstr "" -#. [src.components.VisibilityCard.2001551496] +#. [src.collections.components.CollectionCreatePage.2001551496] - collection #. defaultMessage is: #. will be visible from {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.2001551496] - collection +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "will be visible from {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.2001551496] - page +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "will be visible from {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#. [src.products.components.ProductUpdatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "will be visible from {date}" msgstr "" diff --git a/locale/pt_BR.json b/locale/pt_BR.json index 7a5aeb03e..4555dd361 100644 --- a/locale/pt_BR.json +++ b/locale/pt_BR.json @@ -1 +1 @@ -{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"Excluir atributo","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.350498821":"Adicionar atributo","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.2519239682":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"Nome","src.categories.components.CategoryProducts.636461959":"Nome","src.collections.components.CollectionProducts.636461959":"Nome","src.products.components.ProductDetailsForm.636461959":"Nome","src.collections.components.CollectionDetails.636461959":"Nome","src.components.ProductList.636461959":"Nome","src.discounts.components.SaleInfo.636461959":"Nome","src.discounts.components.SaleList.636461959":"Nome","src.discounts.components.SaleSummary.636461959":"Nome","menuItemDialogNameLabel":"Nome","src.products.components.ProductVariants.636461959":"Nome","src.shipping.components.ShippingZoneRates.636461959":"Nome","src.shipping.components.ShippingZonesList.636461959":"Nome","src.staff.components.StaffList.636461959":"Nome","src.translations.components.TranslationsEntitiesList.636461959":"Nome","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.254756045":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.3182284913":"","src.auth.components.LoginPage.109182747":"Entrar","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"Eliminar categoria","src.categories.views.2004894945":"Eliminar categoria","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.3229914152":"","src.categories.components.CategoryList.435697837":"","src.categories.components.CategoryList.2159874182":"Subcategorias","src.categories.components.CategoryUpdatePage.2159874182":"Subcategorias","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.228151782":"Adicionar categoria","src.categories.components.CategoryProducts.2968663655":"Produtos","src.categories.components.CategoryUpdatePage.2968663655":"Produtos","src.discounts.components.DiscountCategories.2968663655":"Produtos","src.discounts.components.DiscountCollections.2968663655":"Produtos","src.products":"Produtos","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryProducts.3554578821":"Adicionar produto","src.categories.components.CategoryProductsCard.3554578821":"Adicionar produto","src.categories.components.CategoryProducts.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProducts.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.categories.components.CategoryProductsCard.4164156574":"","src.categories.views.1754466114":"","src.categories.views.1140231710":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.712767046":"","src.categories.views.299584400":"","src.categories.views.844574071":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.collections.components.CollectionCreatePage.3958681866":"Adicionar coleção","src.collections.components.CollectionListPage.3958681866":"Adicionar coleção","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"Disponibilidade","src.availability":"","src.collections.components.CollectionList.3640454975":"Publicado ","src.collections.components.CollectionProducts.3640454975":"Publicado ","src.discounts.components.DiscountProducts.3640454975":"Publicado ","src.components.ProductList.3640454975":"Publicado ","src.products.components.ProductListPage.3640454975":"Publicado ","src.pages.components.PageList.3640454975":"Publicado ","src.products.views.ProductList.published":"Publicado ","src.collections.components.CollectionList.2341910657":"Não publicado","src.collections.components.CollectionProducts.2341910657":"Não publicado","src.discounts.components.DiscountProducts.2341910657":"Não publicado","src.components.ProductList.2341910657":"Não publicado","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.686910896":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"excluir imagem","src.collections.views.2402899582":"","src.collections.views.2237014112":"Remover","src.pages.views.2237014112":"Remover","src.products.views.ProductList.2237014112":"Remover","src.collections.views.1547167026":"Publicado","src.pages.views.1547167026":"Publicado","src.products.views.ProductList.1547167026":"Publicado","src.collections.views.2823425739":"","src.collections.views.1348793822":"","src.collections.views.2637364047":"","src.collections.views.3944356444":"","src.collections.views.3817188998":"","src.collections.views.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"Sair","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.4057224233":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"Erro","src.components.ErrorMessageCard.2845142593":"Erro","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.FilterBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"Adicionar","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.ProductList.1134347598":"Preço","src.orders.components.OrderDraftDetailsProducts.1134347598":"Preço","src.orders.components.OrderFulfillment.1134347598":"Preço","src.products.components.ProductListPage.1134347598":"Preço","src.products.components.ProductPricing.1134347598":"Preço","src.orders.components.OrderUnfulfilledItems.1134347598":"Preço","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"Preço","src.shipping.components.ShippingZoneRates.1134347598":"Preço","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"Visibilidade","src.pages.components.PageList.1459686496":"Visibilidade","src.products.components.ProductListFilter.1459686496":"Visibilidade","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"Oculto","src.products.views.ProductList.hidden":"Oculto","src.components.VisibilityCard.1815688500":"","src.components.VisibilityCard.2001551496":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","configurationMenuStaff":"","configurationMenuShipping":"","configurationMenuTaxes":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","src.customers.components.CustomerAddress.1320082647":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"Endereço de cobrança","src.customers.components.CustomerAddresses.3517722732":"Endereço de entrega","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"Endereço","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"Notas","src.orders.components.OrderCustomerNote.1520756907":"Notas","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"Nota","src.customers.components.CustomerDetails.577013340":"Nota","src.customers.components.CustomerCreatePage.1934221653":"Adicionar cliente","src.customers.components.CustomerListPage.1934221653":"Adicionar cliente","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerOrders.3878642352":"Pedidos recentes","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"Data","src.orders.components.OrderDraftList.4205493358":"Data","src.orders.components.OrderList.4205493358":"Data","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"Status","src.orders.components.OrderListFilter.1756106276":"Status","src.products.components.ProductListFilter.1756106276":"Status","src.products.components.ProductVariants.1756106276":"Status","src.customers.components.CustomerOrders.878013594":"Total","src.orders.components.OrderDraftDetailsProducts.878013594":"Total","src.orders.components.OrderDraftDetailsSummary.878013594":"Total","src.orders.components.OrderDraftList.878013594":"Total","src.orders.components.OrderFulfillment.878013594":"Total","src.orders.components.OrderUnfulfilledItems.878013594":"Total","src.orders.components.OrderList.878013594":"Total","src.orders.components.OrderPayment.878013594":"Total","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"Excluir Endereço","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.1946482599":"","src.customers.views.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"Valor","src.discounts.components.SaleSummary.1148029984":"Valor","src.discounts.components.VoucherList.1148029984":"Valor","src.discounts.components.VoucherSummary.1148029984":"Valor","src.discounts.components.VoucherValue.1148029984":"Valor","src.products.components.ProductAttributes.1148029984":"Valor","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.1742771332":"","src.discounts.components.SalePricing.1099355007":"Preços","src.products.components.ProductPricing.1099355007":"Preços","src.products.components.ProductVariantPrice.1099355007":"Preços","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"Países","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"Código","src.discounts.components.VoucherSummary.78726751":"Código","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.1536809153":"Adicionar comprovante","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"Produtos específicos","src.discounts.shipment":"Envio","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.2809303671":"","src.discounts.views.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.367317371":"","src.discounts.views.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"Cancelar","src.orders.views.OrderList.3528672691":"Cancelar","src.confirm":"","src.delete":"Excluir","src.edit":"Editar","src.manage":"","src.remove":"Remover","src.save":"Salvar","src.show":"","src.undo":"","src.attributes":"Atributos","src.products.components.ProductAttributes.4153345096":"Atributos","src.categories":"Categorias","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"Coleções","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"Configuração","src.customers":"Clientes","src.draftOrders":"","src.home":"Início","src.navigation":"Navegação","src.orders":"Pedidos","src.pages":"Páginas","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"Liquidações","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"Impostos","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"Impostos","src.taxes.components.CountryListPage.3955023266":"Impostos","src.translations":"","src.vouchers":"Cupons","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"Totalmente pago","src.partiallyPaid":"","src.partiallyRefunded":"Parcialmente reembolsado","src.refunded":"Totalmente reembolsado","src.unpaid":"","src.cancelled":"Cancelado","src.draft":"Rascunho","src.fulfilled":"Completo","src.orders.views.OrderList.fulfilled":"Completo","src.orders.components.OrderListFilter.1712863026":"Completo","src.partiallyFulfilled":"Parcialmente completo","src.unfulfilled":"Incompleto","src.orders.views.OrderList.unfulfilled":"Incompleto","src.orders.components.OrderListFilter.1751787272":"Incompleto","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","src.1395232177":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"Link","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"Cancelar pedido","src.orders.components.OrderDetailsPage.1854613983":"Cancelar pedido","src.orders.components.OrderDraftPage.1854613983":"Cancelar pedido","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"Cliente","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"Cliente","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"Mesmo que o endereço de entrega","src.orders.components.OrderCustomerEditDialog.1411666943":"Editar detalhes do cliente","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.500287069":"Remover orçamento","src.orders.components.OrderDraftCancelDialog.3199827590":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"Produto","src.orders.components.OrderUnfulfilledItems.1895667608":"Produto","src.orders.components.OrderDraftDetailsProducts.2796503714":"Quantidade","src.orders.components.OrderFulfillment.2796503714":"Quantidade","src.orders.components.OrderFulfillmentDialog.2796503714":"Quantidade","src.orders.components.OrderUnfulfilledItems.2796503714":"Quantidade","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"Subtotal","src.orders.components.OrderPayment.781550514":"Subtotal","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"Criar pedido","src.orders.components.OrderListPage.2826235371":"Criar pedido","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"Adicionar rastreamento","src.orders.components.OrderFulfillmentCancelDialog.732594284":"Cancelar faturamento","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"Cancelar faturamento","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"SKU","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"Código de rastreamento","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.2574162126":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"Pedido foi pago","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"Pedido foi realizado","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"Pagamento","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2943502192":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"Envio","src.productTypes.components.ProductTypeShipping.1325966144":"Envio","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"Envio","src.orders.components.OrderPayment.3768782744":"Quantidade pré-autorizada","src.orders.components.OrderPayment.2320183694":"Quantidade capturada","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"Receber","src.orders.components.OrderPayment.2845258362":"Restituição","src.orders.components.OrderPayment.2444197639":"Vazio","src.orders.components.OrderPayment.3500506678":"Sinalizar como pago","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"Montante","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.2775402904":"","src.products.components.ProductListPage.2775402904":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"Faturar","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.3880993240":"","src.orders.views.1161115149":"","src.orders.views.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.755314116":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"Título","src.pages.components.PageList.1124600214":"Título","src.pages.components.PageInfo.1116746286":"Conteúdo","src.translations.components.TranslationsPagesPage.1116746286":"Conteúdo","src.pages.components.PageList.3478065224":"slug","src.pages.components.PageSlug.3478065224":"slug","src.productTypes.components.ProductTypeAttributes.3478065224":"slug","src.pages.components.PageList.3767550649":"Não publicado","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.1767905232":"Adicionar página","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.3785394515":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"Valores","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"imagens","src.products.components.ProductVariantImages.3240888698":"imagens","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"estoque","src.products.components.ProductVariantStock.3841616483":"estoque","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListPage.821159718":"","src.products.components.ProductListPage.1421689426":"","src.products.components.ProductListPage.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"Inventário","prodictStockInventoryLabel":"Inventário","src.products.components.ProductVariantStock.3490038570":"Inventário","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"Excluir variação","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"Variações","src.products.components.ProductVariants.2153006789":"Variações","src.products.components.ProductVariantNavigation.2845381934":"Adicionar variação","src.products.components.ProductVariants.2845381934":"Adicionar variação","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1542417144":"","src.products.views.1591632382":"","src.products.views.490753666":"","src.products.views.672103788":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.1694086800":"","src.products.views.ProductList.224127438":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.products.views.2178905289":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1756957616":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.889729490":"Adicionar tipo de produto","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.4080551769":"","src.productTypes.views.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.352297149":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2474410767":"Adicionar região de entrega","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.254167659":"","src.shipping.views.ShippingZoneDetails.1790261672":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"Chave","src.siteSettings.components.SiteSettingsKeys.2446088470":"Chave","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.3490059488":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"Permissões","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.3247064221":"Ativo","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.802625341":"Adicionar membro da equipe","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"Usuário está ativo","src.staff.views.2240444792":"","src.staff.views.2728048444":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file +{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"Excluir atributo","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.3824684885":"","src.attributes.components.AttributeListPage.2417065806":"","src.attributes.components.AttributeListPage.3916653510":"","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.4048785456":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"Nome","src.categories.components.CategoryProductList.636461959":"Nome","src.components.ProductList.636461959":"Nome","src.products.components.ProductList.636461959":"Nome","src.collections.components.CollectionDetails.636461959":"Nome","src.collections.components.CollectionProducts.636461959":"Nome","src.products.components.ProductDetailsForm.636461959":"Nome","src.discounts.components.SaleInfo.636461959":"Nome","src.discounts.components.SaleList.636461959":"Nome","src.discounts.components.SaleSummary.636461959":"Nome","menuItemDialogNameLabel":"Nome","src.plugins.components.PluginsList.636461959":"Nome","src.products.components.ProductVariants.636461959":"Nome","src.shipping.components.ShippingZoneRates.636461959":"Nome","src.shipping.components.ShippingZonesList.636461959":"Nome","src.staff.components.StaffList.636461959":"Nome","src.translations.components.TranslationsEntitiesList.636461959":"Nome","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.351422234":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.109182747":"Entrar","src.auth.components.LoginPage.4028609483":"","src.auth.components.NewPasswordPage.1915811227":"","src.auth.components.NewPasswordPage.1254879564":"","src.auth.components.NewPasswordPage.2799926859":"","src.auth.components.NewPasswordPage.4253911811":"","src.auth.components.NewPasswordPage.2342634351":"","src.auth.components.ResetPasswordPage.2370700732":"","src.auth.components.ResetPasswordPage.3663311080":"","src.auth.components.ResetPasswordSuccessPage.4066297200":"","src.auth.components.ResetPasswordSuccessPage.2245157344":"","src.auth.views.2388238158":"","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"Eliminar categoria","src.categories.views.2004894945":"Eliminar categoria","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.2159874182":"Subcategorias","src.categories.components.CategoryUpdatePage.2159874182":"Subcategorias","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.1140231710":"","src.categories.views.1140231710":"","src.categories.components.CategoryListPage.4294878092":"","src.categories.components.CategoryListPage.3841025483":"","src.translations.components.TranslationsEntitiesListPage.3841025483":"","src.categories.components.CategoryProductList.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductList.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProductList.3640454975":"Publicado ","src.components.ProductList.3640454975":"Publicado ","src.products.components.ProductList.3640454975":"Publicado ","src.products.components.ProductListPage.3640454975":"Publicado ","productStatusLabel":"Publicado ","src.collections.components.CollectionList.3640454975":"Publicado ","src.collections.components.CollectionProducts.3640454975":"Publicado ","src.discounts.components.DiscountProducts.3640454975":"Publicado ","src.pages.components.PageList.3640454975":"Publicado ","src.products.views.ProductList.published":"Publicado ","src.categories.components.CategoryProductList.1134347598":"Preço","src.orders.components.OrderFulfillment.1134347598":"Preço","src.products.components.ProductList.1134347598":"Preço","src.products.components.ProductListPage.1134347598":"Preço","src.products.components.ProductPricing.1134347598":"Preço","src.components.ProductList.1134347598":"Preço","src.orders.components.OrderDraftDetailsProducts.1134347598":"Preço","src.orders.components.OrderUnfulfilledItems.1134347598":"Preço","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"Preço","src.shipping.components.ShippingZoneRates.1134347598":"Preço","src.categories.components.CategoryProductList.2341910657":"Não publicado","src.products.components.ProductList.2341910657":"Não publicado","src.collections.components.CollectionList.2341910657":"Não publicado","src.collections.components.CollectionProducts.2341910657":"Não publicado","src.discounts.components.DiscountProducts.2341910657":"Não publicado","src.components.ProductList.2341910657":"Não publicado","src.categories.components.CategoryProductList.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.products.components.ProductList.1657559629":"","src.categories.components.CategoryProducts.4164156574":"","src.categories.components.CategoryProducts.3554578821":"Adicionar produto","src.categories.components.CategoryUpdatePage.2968663655":"Produtos","src.discounts.components.DiscountCategories.2968663655":"Produtos","src.discounts.components.DiscountCollections.2968663655":"Produtos","src.products":"Produtos","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryUpdatePage.3229914152":"","src.categories.components.CategoryUpdatePage.770296100":"","src.categories.views.1754466114":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.CategoryList.3488150607":"","src.categories.views.712767046":"","src.categories.views.CategoryList.712767046":"","src.categories.views.299584400":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.categories.views.CategoryList.2144707585":"","src.collections.components.CollectionCreatePage.3958681866":"Adicionar coleção","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionCreatePage.2001551496":"","src.collections.components.CollectionDetailsPage.2001551496":"","src.pages.components.PageDetailsPage.2001551496":"","src.products.components.ProductCreatePage.2001551496":"","src.products.components.ProductUpdatePage.2001551496":"","src.collections.components.CollectionCreatePage.1815688500":"","src.collections.components.CollectionDetailsPage.1815688500":"","src.pages.components.PageDetailsPage.1815688500":"","src.products.components.ProductCreatePage.1815688500":"","src.products.components.ProductUpdatePage.1815688500":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"Disponibilidade","src.availability":"","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionListPage.686910896":"","src.collections.views.686910896":"","src.collections.components.CollectionListPage.1631917001":"","src.collections.components.CollectionListPage.4057224233":"","src.components.AssignCollectionDialog.4057224233":"","src.translations.components.TranslationsEntitiesListPage.4057224233":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"excluir imagem","src.collections.views.2402899582":"","src.collections.views.CollectionList.2237014112":"Remover","src.pages.views.2237014112":"Remover","src.products.views.ProductList.2237014112":"Remover","src.collections.views.CollectionList.1547167026":"Publicado","src.pages.views.1547167026":"Publicado","src.products.views.ProductList.1547167026":"Publicado","src.collections.views.CollectionList.2823425739":"","src.collections.views.CollectionList.1348793822":"","src.collections.views.CollectionList.2637364047":"","src.collections.views.CollectionList.3944356444":"","src.collections.views.CollectionList.3817188998":"","src.collections.views.CollectionList.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"Sair","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"Erro","src.components.ErrorMessageCard.2845142593":"Erro","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.Filter.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.Filter.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.FilterBar.2340527467":"","src.components.SearchBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"Adicionar","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"Visibilidade","src.pages.components.PageList.1459686496":"Visibilidade","src.products.components.ProductListFilter.1459686496":"Visibilidade","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"Oculto","src.products.views.ProductList.hidden":"Oculto","src.components.VisibilityCard.292404896":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","src.configuration.2326418019":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","src.configuration.3655543906":"","configurationMenuShipping":"","configurationMenuTaxes":"","src.configuration.3140151600":"","configurationMenuStaff":"","src.configuration.1233229030":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","configurationPluginsPages":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"Endereço de cobrança","src.customers.components.CustomerAddresses.3517722732":"Endereço de entrega","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"Endereço","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"Notas","src.orders.components.OrderCustomerNote.1520756907":"Notas","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"Nota","src.customers.components.CustomerDetails.577013340":"Nota","src.customers.components.CustomerCreatePage.1934221653":"Adicionar cliente","src.customers.components.CustomerListPage.1934221653":"Adicionar cliente","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerListPage.477293306":"","src.customers.components.CustomerListPage.1643417013":"","src.customers.components.CustomerOrders.3878642352":"Pedidos recentes","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"Data","src.orders.components.OrderDraftList.4205493358":"Data","src.orders.components.OrderList.4205493358":"Data","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"Status","src.orders.components.OrderListFilter.1756106276":"Status","src.plugins.components.PluginInfo.1756106276":"Status","src.products.components.ProductListFilter.1756106276":"Status","src.products.components.ProductVariants.1756106276":"Status","src.customers.components.CustomerOrders.878013594":"Total","src.orders.components.OrderDraftDetailsProducts.878013594":"Total","src.orders.components.OrderDraftDetailsSummary.878013594":"Total","src.orders.components.OrderDraftList.878013594":"Total","src.orders.components.OrderFulfillment.878013594":"Total","src.orders.components.OrderUnfulfilledItems.878013594":"Total","src.orders.components.OrderList.878013594":"Total","src.orders.components.OrderPayment.878013594":"Total","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"Excluir Endereço","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.CustomerList.1946482599":"","src.customers.views.CustomerList.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","src.discounts.components.SaleListPage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"Valor","src.discounts.components.SaleSummary.1148029984":"Valor","src.discounts.components.VoucherList.1148029984":"Valor","src.discounts.components.VoucherSummary.1148029984":"Valor","src.discounts.components.VoucherValue.1148029984":"Valor","src.products.components.ProductAttributes.1148029984":"Valor","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.3907768880":"","src.discounts.components.SaleListPage.1866913828":"","src.translations.components.TranslationsEntitiesListPage.1866913828":"","src.discounts.components.SalePricing.1099355007":"Preços","src.products.components.ProductPricing.1099355007":"Preços","src.products.components.ProductVariantPrice.1099355007":"Preços","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"Países","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"Código","src.discounts.components.VoucherSummary.78726751":"Código","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.614836274":"","src.discounts.components.VoucherListPage.1112241061":"","src.discounts.components.VoucherListPage.1930485532":"","src.translations.components.TranslationsEntitiesListPage.1930485532":"","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"Produtos específicos","src.discounts.shipment":"Envio","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.SaleList.2809303671":"","src.discounts.views.SaleList.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.VoucherList.367317371":"","src.discounts.views.VoucherList.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.somethingWentWrong":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"Cancelar","src.orders.views.OrderList.3528672691":"Cancelar","src.confirm":"","src.delete":"Excluir","src.edit":"Editar","src.manage":"","src.remove":"Remover","src.save":"Salvar","src.show":"","src.undo":"","src.attributes":"Atributos","src.products.components.ProductAttributes.4153345096":"Atributos","src.categories":"Categorias","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"Coleções","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"Configuração","src.customers":"Clientes","src.draftOrders":"","src.home":"Início","src.navigation":"Navegação","src.orders":"Pedidos","src.pages":"Páginas","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.plugins":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"Liquidações","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"Impostos","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"Impostos","src.taxes.components.CountryListPage.3955023266":"Impostos","src.translations":"","src.vouchers":"Cupons","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"Totalmente pago","src.partiallyPaid":"","src.partiallyRefunded":"Parcialmente reembolsado","src.refunded":"Totalmente reembolsado","src.unpaid":"","src.cancelled":"Cancelado","src.draft":"Rascunho","src.fulfilled":"Completo","src.orders.views.OrderList.fulfilled":"Completo","src.orders.components.OrderListFilter.1712863026":"Completo","src.partiallyFulfilled":"Parcialmente completo","src.unfulfilled":"Incompleto","src.orders.views.OrderList.unfulfilled":"Incompleto","src.orders.components.OrderListFilter.1751787272":"Incompleto","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"Link","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"Cancelar pedido","src.orders.components.OrderDetailsPage.1854613983":"Cancelar pedido","src.orders.components.OrderDraftPage.1854613983":"Cancelar pedido","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"Cliente","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"Cliente","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"Mesmo que o endereço de entrega","src.orders.components.OrderCustomerEditDialog.1411666943":"Editar detalhes do cliente","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.632633254":"","src.orders.components.OrderDraftCancelDialog.36681973":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"Produto","src.orders.components.OrderUnfulfilledItems.1895667608":"Produto","src.orders.components.OrderDraftDetailsProducts.2796503714":"Quantidade","src.orders.components.OrderFulfillment.2796503714":"Quantidade","src.orders.components.OrderFulfillmentDialog.2796503714":"Quantidade","src.orders.components.OrderUnfulfilledItems.2796503714":"Quantidade","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"Subtotal","src.orders.components.OrderPayment.781550514":"Subtotal","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"Criar pedido","src.orders.components.OrderListPage.2826235371":"Criar pedido","src.orders.components.OrderDraftListPage.551325728":"","src.orders.components.OrderDraftListPage.77765281":"","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"Adicionar rastreamento","src.orders.components.OrderFulfillmentCancelDialog.732594284":"Cancelar faturamento","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"Cancelar faturamento","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"SKU","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"Código de rastreamento","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.4067959693":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"Pedido foi pago","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"Pedido foi realizado","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"Pagamento","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2415661583":"","src.orders.views.OrderList.readyToCapture":"","src.orders.components.OrderListFilter.2222765704":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"Envio","src.productTypes.components.ProductTypeShipping.1325966144":"Envio","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"Envio","src.orders.components.OrderPayment.3768782744":"Quantidade pré-autorizada","src.orders.components.OrderPayment.2320183694":"Quantidade capturada","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"Receber","src.orders.components.OrderPayment.2845258362":"Restituição","src.orders.components.OrderPayment.2444197639":"Vazio","src.orders.components.OrderPayment.3500506678":"Sinalizar como pago","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"Montante","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.1542417144":"","src.products.components.ProductListPage.1542417144":"","src.products.views.1542417144":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"Faturar","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.OrderDraftList.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.OrderDraftList.1648805446":"","src.orders.views.OrderDraftList.1161115149":"","src.orders.views.OrderDraftList.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.1068617485":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"Título","src.pages.components.PageList.1124600214":"Título","src.pages.components.PageInfo.1116746286":"Conteúdo","src.translations.components.TranslationsPagesPage.1116746286":"Conteúdo","src.pages.components.PageList.3478065224":"slug","src.pages.components.PageSlug.3478065224":"slug","src.productTypes.components.ProductTypeAttributes.3478065224":"slug","src.pages.components.PageList.3767550649":"Não publicado","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.3785394515":"","src.pages.views.3785394515":"","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.plugins.components.PluginInfo.3425535100":"","src.plugins.components.PluginsDetailsPage.3425535100":"","src.plugins.components.PluginInfo.1049131348":"","src.plugins.components.PluginInfo.4013064767":"","src.plugins.components.PluginsDetailsPage.3352026836":"","src.plugins.components.PluginsDetailsPage.2277745418":"","src.plugins.components.PluginsDetailsPage.1970881031":"","src.plugins.components.PluginSettings.1970881031":"","src.plugins.components.PluginsDetailsPage.4241018152":"","src.plugins.components.PluginsList.3247064221":"Ativo","src.staff.components.StaffList.3247064221":"Ativo","src.plugins.components.PluginsList.4120604650":"","src.plugins.components.PluginsList.666641390":"","src.plugins.views.100549097":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"Valores","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"imagens","src.products.components.ProductVariantImages.3240888698":"imagens","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"estoque","src.products.components.ProductVariantStock.3841616483":"estoque","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListFilter.821159718":"","src.products.components.ProductListFilter.1421689426":"","src.products.components.ProductListFilter.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"Inventário","prodictStockInventoryLabel":"Inventário","src.products.components.ProductVariantStock.3490038570":"Inventário","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"Excluir variação","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"Variações","src.products.components.ProductVariants.2153006789":"Variações","src.products.components.ProductVariantNavigation.2845381934":"Adicionar variação","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.3989383405":"","src.products.views.3989383405":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1591632382":"","src.products.views.1731766393":"","src.products.views.2880386427":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1217376589":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.3479705616":"","src.productTypes.components.ProductTypeListPage.1776073799":"","src.productTypes.components.ProductTypeListPage.3420445375":"","src.translations.components.TranslationsEntitiesListPage.3420445375":"","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.ProductTypeList.4080551769":"","src.productTypes.views.ProductTypeList.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRates.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2673544109":"","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.1947090060":"","src.shipping.views.ShippingZoneDetails.131963671":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"Chave","src.siteSettings.components.SiteSettingsKeys.2446088470":"Chave","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.1481503299":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"Permissões","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.797461521":"","src.staff.components.StaffListPage.2852350932":"","src.staff.components.StaffListPage.61043583":"","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"Usuário está ativo","src.staff.views.1308770978":"","src.staff.views.8878988":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.2105464697":"","src.translations.components.TranslationsEntitiesListPage.2559018090":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file diff --git a/locale/pt_BR.po b/locale/pt_BR.po index 007b8ded4..089714346 100644 --- a/locale/pt_BR.po +++ b/locale/pt_BR.po @@ -13,7 +13,7 @@ # msgid "" msgstr "" -"POT-Creation-Date: 2019-09-06T13:56:36.897Z\n" +"POT-Creation-Date: 2019-09-16T15:25:09.340Z\n" "Last-Translator: Wellington Oliveira , 2019\n" "Language-Team: Portuguese (Brazil) (https://www.transifex.com/mirumee/teams/34782/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -151,22 +151,6 @@ msgctxt "create new menu item, header" msgid "Add Item" msgstr "" -#. [menuCreateDialogHeader] - dialog header -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json -msgctxt "dialog header" -msgid "Add Menu" -msgstr "" - -#. [menuListPageAddMenu] - button -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json -msgctxt "button" -msgid "Add Menu" -msgstr "" - #. [src.siteSettings.components.SiteSettingsKeyDialog.1238948746] - dialog #. header #. defaultMessage is: @@ -176,14 +160,6 @@ msgctxt "dialog header" msgid "Add New Authorization Key" msgstr "" -#. [src.pages.components.PageDetailsPage.755314116] - page header -#. defaultMessage is: -#. Add Page -#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json -msgctxt "page header" -msgid "Add Page" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.2892088870] - dialog header #. defaultMessage is: #. Add Price Rate @@ -192,38 +168,6 @@ msgctxt "dialog header" msgid "Add Price Rate" msgstr "" -#. [src.orders.components.OrderProductAddDialog.2775402904] - dialog header -#. defaultMessage is: -#. Add Product -#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json -msgctxt "dialog header" -msgid "Add Product" -msgstr "" - -#. [src.products.components.ProductListPage.2775402904] - button -#. defaultMessage is: -#. Add Product -#: build/locale/src/products/components/ProductListPage/ProductListPage.json -msgctxt "button" -msgid "Add Product" -msgstr "" - -#. [src.discounts.components.SaleListPage.1742771332] - button -#. defaultMessage is: -#. Add Sale -#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json -msgctxt "button" -msgid "Add Sale" -msgstr "" - -#. [src.staff.components.StaffAddMemberDialog.3490059488] - dialog header -#. defaultMessage is: -#. Add Staff Member -#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json -msgctxt "dialog header" -msgid "Add Staff Member" -msgstr "" - #. [src.attributes.components.AttributeValueEditDialog.1841790893] - add #. attribute value #. defaultMessage is: @@ -233,14 +177,6 @@ msgctxt "add attribute value" msgid "Add Value" msgstr "" -#. [src.products.views.2178905289] - header -#. defaultMessage is: -#. Add Variant -#: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "header" -msgid "Add Variant" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.1397795758] - add weight #. based shipping method, dialog header #. defaultMessage is: @@ -258,14 +194,6 @@ msgctxt "button" msgid "Add address" msgstr "" -#. [src.attributes.components.AttributeListPage.350498821] - button -#. defaultMessage is: -#. Add attribute -#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json -msgctxt "button" -msgid "Add attribute" -msgstr "Adicionar atributo" - #. [src.siteSettings.components.SiteSettingsKeyDialog.50561933] - button #. defaultMessage is: #. Add authentication @@ -274,14 +202,6 @@ msgctxt "button" msgid "Add authentication" msgstr "" -#. [src.categories.components.CategoryListPage.228151782] - button -#. defaultMessage is: -#. Add category -#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json -msgctxt "button" -msgid "Add category" -msgstr "Adicionar categoria" - #. [src.collections.components.CollectionCreatePage.3958681866] - page header #. defaultMessage is: #. Add collection @@ -290,14 +210,6 @@ msgctxt "page header" msgid "Add collection" msgstr "Adicionar coleção" -#. [src.collections.components.CollectionListPage.3958681866] - button -#. defaultMessage is: -#. Add collection -#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json -msgctxt "button" -msgid "Add collection" -msgstr "Adicionar coleção" - #. [src.customers.components.CustomerCreatePage.1934221653] - page header #. defaultMessage is: #. Add customer @@ -330,14 +242,6 @@ msgctxt "button" msgid "Add key" msgstr "" -#. [menuItemsAddItem] - add new menu item -#. defaultMessage is: -#. Add new item -#: build/locale/src/navigation/components/MenuItems/MenuItems.json -msgctxt "add new menu item" -msgid "Add new item" -msgstr "" - #. [menuItemsPlaceholder] #. defaultMessage is: #. Add new menu item to begin creating menu @@ -372,14 +276,6 @@ msgctxt "button" msgid "Add or Edit Link" msgstr "" -#. [src.pages.components.PageListPage.1767905232] - button -#. defaultMessage is: -#. Add page -#: build/locale/src/pages/components/PageListPage/PageListPage.json -msgctxt "button" -msgid "Add page" -msgstr "Adicionar página" - #. [src.categories.components.CategoryProducts.3554578821] - button #. defaultMessage is: #. Add product @@ -388,14 +284,6 @@ msgctxt "button" msgid "Add product" msgstr "Adicionar produto" -#. [src.productTypes.components.ProductTypeListPage.889729490] - button -#. defaultMessage is: -#. Add product type -#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json -msgctxt "button" -msgid "Add product type" -msgstr "Adicionar tipo de produto" - #. [src.orders.components.OrderDraftDetails.2528459381] - button #. defaultMessage is: #. Add products @@ -404,14 +292,6 @@ msgctxt "button" msgid "Add products" msgstr "" -#. [src.shipping.components.ShippingZoneRates.352297149] - button -#. defaultMessage is: -#. Add rate -#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json -msgctxt "button" -msgid "Add rate" -msgstr "" - #. [src.categories.components.CategoryCreatePage.2563994280] #. defaultMessage is: #. Add search engine title and description to make this category easier to @@ -473,30 +353,6 @@ msgctxt "button" msgid "Add shipping carrier" msgstr "" -#. [src.shipping.components.ShippingZonesList.2474410767] - button -#. defaultMessage is: -#. Add shipping zone -#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json -msgctxt "button" -msgid "Add shipping zone" -msgstr "Adicionar região de entrega" - -#. [src.staff.components.StaffListPage.802625341] - button -#. defaultMessage is: -#. Add staff member -#: build/locale/src/staff/components/StaffListPage/StaffListPage.json -msgctxt "button" -msgid "Add staff member" -msgstr "Adicionar membro da equipe" - -#. [src.categories.components.CategoryList.435697837] - button -#. defaultMessage is: -#. Add subcategory -#: build/locale/src/categories/components/CategoryList/CategoryList.json -msgctxt "button" -msgid "Add subcategory" -msgstr "" - #. [src.attributes.components.AttributeProperties.673770329] - add attribute #. as column in product list table #. defaultMessage is: @@ -524,35 +380,14 @@ msgctxt "dialog header" msgid "Add tracking code" msgstr "" -#. [src.attributes.components.AttributeValues.254756045] - add attribute value -#. button -#. defaultMessage is: -#. Add value -#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json -msgctxt "add attribute value button" -msgid "Add value" -msgstr "" - #. [src.products.components.ProductVariantNavigation.2845381934] - button #. defaultMessage is: #. Add variant -#. [src.products.components.ProductVariants.2845381934] - button -#. defaultMessage is: -#. Add variant #: build/locale/src/products/components/ProductVariantNavigation/ProductVariantNavigation.json -#: build/locale/src/products/components/ProductVariants/ProductVariants.json msgctxt "button" msgid "Add variant" msgstr "Adicionar variação" -#. [src.discounts.components.VoucherListPage.1536809153] - button -#. defaultMessage is: -#. Add voucher -#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json -msgctxt "button" -msgid "Add voucher" -msgstr "Adicionar comprovante" - #. [src.attributes.views.AttributeDetails.634268988] - added new attribute #. value #. defaultMessage is: @@ -610,14 +445,6 @@ msgctxt "description" msgid "Address line 2" msgstr "" -#. [src.customers.components.CustomerAddress.1320082647] - addres card header -#. defaultMessage is: -#. Address {addressNumber} -#: build/locale/src/customers/components/CustomerAddress/CustomerAddress.json -msgctxt "addres card header" -msgid "Address {addressNumber}" -msgstr "" - #. [src.attributes.components.AttributeValues.1565474525] - attribute values #. list: slug column header #. defaultMessage is: @@ -667,6 +494,46 @@ msgctxt "tax rate" msgid "Agricultural supplies" msgstr "" +#. [src.attributes.components.AttributeListPage.2417065806] - tab name +#. defaultMessage is: +#. All Attributes +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "tab name" +msgid "All Attributes" +msgstr "" + +#. [src.categories.components.CategoryListPage.4294878092] - tab name +#. defaultMessage is: +#. All Categories +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "tab name" +msgid "All Categories" +msgstr "" + +#. [src.collections.components.CollectionListPage.1631917001] - tab name +#. defaultMessage is: +#. All Collections +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "tab name" +msgid "All Collections" +msgstr "" + +#. [src.customers.components.CustomerListPage.477293306] - tab name +#. defaultMessage is: +#. All Customers +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "tab name" +msgid "All Customers" +msgstr "" + +#. [src.orders.components.OrderDraftListPage.551325728] - tab name +#. defaultMessage is: +#. All Drafts +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "tab name" +msgid "All Drafts" +msgstr "" + #. [src.orders.components.OrderListPage.875489544] - tab name #. defaultMessage is: #. All Orders @@ -684,22 +551,54 @@ msgctxt "section header" msgid "All Photos" msgstr "" -#. [src.products.components.ProductListPage.821159718] - tab name +#. [src.productTypes.components.ProductTypeListPage.1776073799] - tab name +#. defaultMessage is: +#. All Product Types +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "tab name" +msgid "All Product Types" +msgstr "" + +#. [src.products.components.ProductListFilter.821159718] - tab name #. defaultMessage is: #. All Products -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "tab name" msgid "All Products" msgstr "" -#. [src.categories.components.CategoryList.3229914152] - section header +#. [src.discounts.components.SaleListPage.3907768880] - tab name +#. defaultMessage is: +#. All Sales +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "tab name" +msgid "All Sales" +msgstr "" + +#. [src.staff.components.StaffListPage.2852350932] - tab name +#. defaultMessage is: +#. All Staff Members +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "tab name" +msgid "All Staff Members" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.3229914152] - section header #. defaultMessage is: #. All Subcategories -#: build/locale/src/categories/components/CategoryList/CategoryList.json +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json msgctxt "section header" msgid "All Subcategories" msgstr "" +#. [src.discounts.components.VoucherListPage.1112241061] - tab name +#. defaultMessage is: +#. All Vouchers +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "tab name" +msgid "All Vouchers" +msgstr "" + #. [src.taxes.components.TaxConfiguration.142803418] #. defaultMessage is: #. All products prices are entered with tax included @@ -807,6 +706,14 @@ msgctxt "description" msgid "Are you sure you want to delete collection's image?" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.36681973] +#. defaultMessage is: +#. Are you sure you want to delete draft #{number}? +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "description" +msgid "Are you sure you want to delete draft #{number}?" +msgstr "" + #. [menuDetailsDeleteMenuContent] #. defaultMessage is: #. Are you sure you want to delete menu {menuName}? @@ -823,6 +730,14 @@ msgctxt "description" msgid "Are you sure you want to delete this address from users address book?" msgstr "" +#. [src.products.views.2880386427] +#. defaultMessage is: +#. Are you sure you want to delete this image? +#: build/locale/src/products/views/ProductImage.json +msgctxt "description" +msgid "Are you sure you want to delete this image?" +msgstr "" + #. [src.attributes.components.AttributeDeleteDialog.3738429348] - dialog #. content #. defaultMessage is: @@ -873,12 +788,7 @@ msgstr "" #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this attribute} #. other{{displayQuantity} categories}}? -#. [src.categories.views.844574071] -#. defaultMessage is: -#. Are you sure you want to delete {counter,plural,one{this attribute} -#. other{{displayQuantity} categories}}? #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this attribute} " @@ -896,22 +806,33 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.2497542455] +#. [src.categories.views.CategoryList.2144707585] +#. defaultMessage is: +#. Are you sure you want to delete {counter,plural,one{this category} +#. other{{displayQuantity} categories}}? +#: build/locale/src/categories/views/CategoryList/CategoryList.json +msgctxt "description" +msgid "" +"Are you sure you want to delete {counter,plural,one{this category} " +"other{{displayQuantity} categories}}?" +msgstr "" + +#. [src.collections.views.CollectionList.2497542455] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this collection} " "other{{displayQuantity} collections}}?" msgstr "" -#. [src.customers.views.409347866] +#. [src.customers.views.CustomerList.409347866] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this customer} #. other{{displayQuantity} customers}}? -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this customer} " @@ -929,11 +850,11 @@ msgid "" "other{{displayQuantity} menus}}?" msgstr "" -#. [src.orders.views.1389231130] - dialog content +#. [src.orders.views.OrderDraftList.1389231130] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this order draft} #. other{{displayQuantity} orderDrafts}}? -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this order draft} " @@ -951,11 +872,11 @@ msgid "" "other{{displayQuantity} pages}}?" msgstr "" -#. [src.productTypes.views.2294091098] - dialog content +#. [src.productTypes.views.ProductTypeList.2294091098] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this product type} #. other{{displayQuantity} product types}}? -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this product type} " @@ -973,11 +894,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.discounts.views.2516361175] - dialog content +#. [src.discounts.views.SaleList.2516361175] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this sale} #. other{{displayQuantity} sales}}? -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this sale} " @@ -1006,17 +927,33 @@ msgid "" "other{{displayQuantity} variants}}?" msgstr "" -#. [src.discounts.views.1791926983] - dialog content +#. [src.discounts.views.VoucherList.1791926983] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this voucher} #. other{{displayQuantity} vouchers}}? -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this voucher} " "other{{displayQuantity} vouchers}}?" msgstr "" +#. [src.shipping.views.ShippingZoneDetails.131963671] - unassign country +#. defaultMessage is: +#. Are you sure you want to delete {countryName} from this shipping zone? +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country" +msgid "Are you sure you want to delete {countryName} from this shipping zone?" +msgstr "" + +#. [src.staff.views.8878988] +#. defaultMessage is: +#. Are you sure you want to delete {email} from staff members? +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "description" +msgid "Are you sure you want to delete {email} from staff members?" +msgstr "" + #. [src.customers.views.1927691511] - delete customer, dialog content #. defaultMessage is: #. Are you sure you want to delete {email}? @@ -1131,11 +1068,11 @@ msgctxt "description" msgid "Are you sure you want to mark this order as paid?" msgstr "" -#. [src.collections.views.1348793822] +#. [src.collections.views.CollectionList.1348793822] #. defaultMessage is: #. Are you sure you want to publish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to publish {counter,plural,one{this collection} " @@ -1164,30 +1101,6 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.orders.components.OrderDraftCancelDialog.3199827590] -#. defaultMessage is: -#. Are you sure you want to remove draft #{number}? -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "description" -msgid "Are you sure you want to remove draft #{number}?" -msgstr "" - -#. [src.products.views.672103788] -#. defaultMessage is: -#. Are you sure you want to remove this image? -#: build/locale/src/products/views/ProductImage.json -msgctxt "description" -msgid "Are you sure you want to remove this image?" -msgstr "" - -#. [src.shipping.views.ShippingZoneDetails.1790261672] - unassign country -#. defaultMessage is: -#. Are you sure you want to remove {countryName} from this shipping zone? -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country" -msgid "Are you sure you want to remove {countryName} from this shipping zone?" -msgstr "" - #. [src.staff.views.3945766678] #. defaultMessage is: #. Are you sure you want to remove {email} avatar? @@ -1196,14 +1109,6 @@ msgctxt "description" msgid "Are you sure you want to remove {email} avatar?" msgstr "" -#. [src.staff.views.2728048444] -#. defaultMessage is: -#. Are you sure you want to remove {email} from staff members? -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "description" -msgid "Are you sure you want to remove {email} from staff members?" -msgstr "" - #. [src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450] #. defaultMessage is: #. Are you sure you want to unassign {attributeName} from {productTypeName}? @@ -1284,11 +1189,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.3944356444] +#. [src.collections.views.CollectionList.3944356444] #. defaultMessage is: #. Are you sure you want to unpublish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to unpublish {counter,plural,one{this collection} " @@ -1449,6 +1354,15 @@ msgctxt "button" msgid "Assign products" msgstr "" +#. [src.attributes.components.AttributeValues.351422234] - assign attribute +#. value button +#. defaultMessage is: +#. Assign value +#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json +msgctxt "assign attribute value button" +msgid "Assign value" +msgstr "" + #. [src.attributes.components.AttributeDetails.3605174225] - attribute's slug #. short code label #. defaultMessage is: @@ -1527,6 +1441,14 @@ msgctxt "product attributes, section header" msgid "Attributes" msgstr "Atributos" +#. [src.configuration.2326418019] +#. defaultMessage is: +#. Attributes and Product Typess +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Attributes and Product Typess" +msgstr "" + #. [src.attributes.views.AttributeList.3218248395] - deleted multiple #. attributes #. defaultMessage is: @@ -2310,6 +2232,22 @@ msgctxt "description" msgid "Country area" msgstr "" +#. [menuCreateDialogHeader] - dialog header +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json +msgctxt "dialog header" +msgid "Create Menu" +msgstr "" + +#. [menuListPageAddMenu] - button +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json +msgctxt "button" +msgid "Create Menu" +msgstr "" + #. [src.attributes.components.AttributePage.2855501559] - page title #. defaultMessage is: #. Create New Attribute @@ -2334,6 +2272,30 @@ msgctxt "header" msgid "Create New Shipping Zone" msgstr "" +#. [src.pages.components.PageDetailsPage.1068617485] - page header +#. defaultMessage is: +#. Create Page +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page header" +msgid "Create Page" +msgstr "" + +#. [src.orders.components.OrderProductAddDialog.1542417144] - dialog header +#. defaultMessage is: +#. Create Product +#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json +msgctxt "dialog header" +msgid "Create Product" +msgstr "" + +#. [src.products.components.ProductListPage.1542417144] - button +#. defaultMessage is: +#. Create Product +#: build/locale/src/products/components/ProductListPage/ProductListPage.json +msgctxt "button" +msgid "Create Product" +msgstr "" + #. [src.products.views.1542417144] - window title #. defaultMessage is: #. Create Product @@ -2366,11 +2328,19 @@ msgctxt "page header" msgid "Create Sale" msgstr "" -#. [src.products.views.2362587265] - window title +#. [src.discounts.components.SaleListPage.3866518732] - button +#. defaultMessage is: +#. Create Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "button" +msgid "Create Sale" +msgstr "" + +#. [src.products.views.2362587265] - header #. defaultMessage is: #. Create Variant #: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "window title" +msgctxt "header" msgid "Create Variant" msgstr "" @@ -2382,6 +2352,22 @@ msgctxt "page header" msgid "Create Voucher" msgstr "" +#. [src.attributes.components.AttributeListPage.3824684885] - button +#. defaultMessage is: +#. Create attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "button" +msgid "Create attribute" +msgstr "" + +#. [src.categories.components.CategoryListPage.1140231710] - button +#. defaultMessage is: +#. Create category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "button" +msgid "Create category" +msgstr "" + #. [src.categories.views.1140231710] - window title #. defaultMessage is: #. Create category @@ -2390,6 +2376,14 @@ msgctxt "window title" msgid "Create category" msgstr "" +#. [src.collections.components.CollectionListPage.686910896] - button +#. defaultMessage is: +#. Create collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "button" +msgid "Create collection" +msgstr "" + #. [src.collections.views.686910896] - window title #. defaultMessage is: #. Create collection @@ -2406,6 +2400,14 @@ msgctxt "window title" msgid "Create customer" msgstr "" +#. [menuItemsAddItem] - add new menu item +#. defaultMessage is: +#. Create new item +#: build/locale/src/navigation/components/MenuItems/MenuItems.json +msgctxt "add new menu item" +msgid "Create new item" +msgstr "" + #. [src.orders.components.OrderDraftListPage.2826235371] - button #. defaultMessage is: #. Create order @@ -2418,6 +2420,14 @@ msgctxt "button" msgid "Create order" msgstr "Criar pedido" +#. [src.pages.components.PageListPage.3785394515] - button +#. defaultMessage is: +#. Create page +#: build/locale/src/pages/components/PageListPage/PageListPage.json +msgctxt "button" +msgid "Create page" +msgstr "" + #. [src.pages.views.3785394515] - header #. defaultMessage is: #. Create page @@ -2429,11 +2439,55 @@ msgstr "" #. [src.shipping.components.ShippingZoneRateDialog.16061680] - button #. defaultMessage is: #. Create rate +#. [src.shipping.components.ShippingZoneRates.16061680] - button +#. defaultMessage is: +#. Create rate #: build/locale/src/shipping/components/ShippingZoneRateDialog/ShippingZoneRateDialog.json +#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json msgctxt "button" msgid "Create rate" msgstr "" +#. [src.shipping.components.ShippingZonesList.2673544109] - button +#. defaultMessage is: +#. Create shipping zone +#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json +msgctxt "button" +msgid "Create shipping zone" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.770296100] - button +#. defaultMessage is: +#. Create subcategory +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json +msgctxt "button" +msgid "Create subcategory" +msgstr "" + +#. [src.products.components.ProductVariants.3989383405] - button +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/components/ProductVariants/ProductVariants.json +msgctxt "button" +msgid "Create variant" +msgstr "" + +#. [src.products.views.3989383405] - window title +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/views/ProductVariantCreate.json +msgctxt "window title" +msgid "Create variant" +msgstr "" + +#. [src.discounts.components.VoucherListPage.614836274] - button +#. defaultMessage is: +#. Create voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "button" +msgid "Create voucher" +msgstr "" + #. [src.collections.views.1597339737] #. defaultMessage is: #. Created collection @@ -2480,7 +2534,11 @@ msgstr "" #. [src.components.FilterBar.2340527467] #. defaultMessage is: #. Custom Filter +#. [src.components.SearchBar.2340527467] +#. defaultMessage is: +#. Custom Filter #: build/locale/src/components/FilterBar/FilterBar.json +#: build/locale/src/components/SearchBar/SearchBar.json msgctxt "description" msgid "Custom Filter" msgstr "" @@ -2736,10 +2794,18 @@ msgctxt "dialog title" msgid "Delete Collection" msgstr "" -#. [src.orders.views.1161115149] - dialog header +#. [src.products.views.1731766393] - dialog header +#. defaultMessage is: +#. Delete Image +#: build/locale/src/products/views/ProductImage.json +msgctxt "dialog header" +msgid "Delete Image" +msgstr "" + +#. [src.orders.views.OrderDraftList.1161115149] - dialog header #. defaultMessage is: #. Delete Order Drafts -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog header" msgid "Delete Order Drafts" msgstr "" @@ -2777,10 +2843,10 @@ msgctxt "dialog header" msgid "Delete Product Type" msgstr "" -#. [src.productTypes.views.4080551769] - dialog header +#. [src.productTypes.views.ProductTypeList.4080551769] - dialog header #. defaultMessage is: #. Delete Product Types -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog header" msgid "Delete Product Types" msgstr "" @@ -2809,10 +2875,10 @@ msgctxt "dialog header" msgid "Delete Sale" msgstr "" -#. [src.discounts.views.2809303671] - dialog header +#. [src.discounts.views.SaleList.2809303671] - dialog header #. defaultMessage is: #. Delete Sales -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog header" msgid "Delete Sales" msgstr "" @@ -2826,9 +2892,13 @@ msgctxt "custom search delete, dialog header" msgid "Delete Search" msgstr "" +#. [src.components.Filter.2173195312] - button +#. defaultMessage is: +#. Delete Search #. [src.components.TableFilter.2173195312] - button #. defaultMessage is: #. Delete Search +#: build/locale/src/components/Filter/FilterSearch.json #: build/locale/src/components/TableFilter/FilterChips.json msgctxt "button" msgid "Delete Search" @@ -2895,10 +2965,10 @@ msgctxt "dialog header" msgid "Delete Voucher" msgstr "" -#. [src.discounts.views.367317371] - dialog header +#. [src.discounts.views.VoucherList.367317371] - dialog header #. defaultMessage is: #. Delete Vouchers -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog header" msgid "Delete Vouchers" msgstr "" @@ -2932,11 +3002,11 @@ msgstr "" #. [src.categories.views.712767046] - dialog title #. defaultMessage is: #. Delete categories -#. [src.categories.views.712767046] - dialog title +#. [src.categories.views.CategoryList.712767046] - dialog title #. defaultMessage is: #. Delete categories #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "dialog title" msgid "Delete categories" msgstr "" @@ -2953,10 +3023,10 @@ msgctxt "dialog title" msgid "Delete category" msgstr "Eliminar categoria" -#. [src.collections.views.3817188998] - dialog title +#. [src.collections.views.CollectionList.3817188998] - dialog title #. defaultMessage is: #. Delete collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Delete collections" msgstr "" @@ -2969,14 +3039,31 @@ msgctxt "dialog header" msgid "Delete customer" msgstr "" -#. [src.customers.views.1946482599] - dialog header +#. [src.customers.views.CustomerList.1946482599] - dialog header #. defaultMessage is: #. Delete customers -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "dialog header" msgid "Delete customers" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.632633254] - dialog header +#. defaultMessage is: +#. Delete draft order +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "dialog header" +msgid "Delete draft order" +msgstr "" + +#. [src.shipping.views.ShippingZoneDetails.1947090060] - unassign country, +#. dialog header +#. defaultMessage is: +#. Delete from shipping zone +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country, dialog header" +msgid "Delete from shipping zone" +msgstr "" + #. [src.collections.views.942133001] - dialog title #. defaultMessage is: #. Delete image @@ -3037,6 +3124,14 @@ msgctxt "description" msgid "Deleted collection" msgstr "Coleção deletada" +#. [src.orders.views.OrderDraftList.1648805446] +#. defaultMessage is: +#. Deleted draft orders +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json +msgctxt "description" +msgid "Deleted draft orders" +msgstr "" + #. [menuListDeletedMenu] #. defaultMessage is: #. Deleted menu @@ -3636,14 +3731,6 @@ msgctxt "order history message" msgid "Fulfilled {quantity} items" msgstr "" -#. [src.orders.components.OrderListFilter.2943502192] - order -#. defaultMessage is: -#. Fulfillment Status -#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json -msgctxt "order" -msgid "Fulfillment Status" -msgstr "" - #. [src.orders.components.OrderHistory.3081292385] - order history message #. defaultMessage is: #. Fulfillment confirmation was sent to customer @@ -3800,12 +3887,12 @@ msgctxt "description" msgid "If empty, the preview shows what will be autogenerated." msgstr "Se vazio, a pré-visualização será auto-gerada." -#. [src.attributes.components.AttributeProperties.2519239682] +#. [src.attributes.components.AttributeProperties.4048785456] #. defaultMessage is: -#. If enable this attribute can be used as a column in product table. +#. If enabled this attribute can be used as a column in product table. #: build/locale/src/attributes/components/AttributeProperties/AttributeProperties.json msgctxt "description" -msgid "If enable this attribute can be used as a column in product table." +msgid "If enabled this attribute can be used as a column in product table." msgstr "" #. [src.attributes.components.AttributeProperties.787251583] @@ -3911,6 +3998,22 @@ msgctxt "product variant stock" msgid "Inventory" msgstr "Inventário" +#. [src.staff.components.StaffAddMemberDialog.1481503299] - dialog header +#. defaultMessage is: +#. Invite Staff Member +#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json +msgctxt "dialog header" +msgid "Invite Staff Member" +msgstr "" + +#. [src.staff.components.StaffListPage.797461521] - button +#. defaultMessage is: +#. Invite staff member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "button" +msgid "Invite staff member" +msgstr "" + #. [src.productTypes.components.ProductTypeShipping.2143413921] - switch #. button #. defaultMessage is: @@ -4263,6 +4366,14 @@ msgctxt "voucher requirement" msgid "Minimum quantity of items" msgstr "" +#. [src.configuration.1233229030] +#. defaultMessage is: +#. Miscellaneous +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Miscellaneous" +msgstr "" + #. [src.attributes.components.AttributeDetails.3334509011] - product attribute #. type #. defaultMessage is: @@ -5095,6 +5206,14 @@ msgctxt "description" msgid "Order History" msgstr "" +#. [src.orders.components.OrderListFilter.2222765704] +#. defaultMessage is: +#. Order Status +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +msgctxt "description" +msgid "Order Status" +msgstr "" + #. [src.orders.components.OrderHistory.1230178536] - order history message #. defaultMessage is: #. Order address was updated @@ -5111,13 +5230,13 @@ msgctxt "order history message" msgid "Order confirmation was sent to customer" msgstr "" -#. [src.orders.views.1872939752] +#. [src.orders.views.OrderDraftList.1872939752] #. defaultMessage is: #. Order draft succesfully created #. [src.orders.views.OrderList.1872939752] #. defaultMessage is: #. Order draft succesfully created -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json #: build/locale/src/orders/views/OrderList/OrderList.json msgctxt "description" msgid "Order draft succesfully created" @@ -5782,6 +5901,14 @@ msgctxt "description" msgid "Product Name" msgstr "" +#. [src.configuration.3655543906] +#. defaultMessage is: +#. Product Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Product Settings" +msgstr "" + #. [src.discounts.components.DiscountProducts.4257289053] #. defaultMessage is: #. Product Type @@ -5940,12 +6067,12 @@ msgctxt "order history message" msgid "Products were added to draft order" msgstr "" -#. [src.orders.components.OrderHistory.2574162126] - order history message +#. [src.orders.components.OrderHistory.4067959693] - order history message #. defaultMessage is: -#. Products were removed from draft order +#. Products were deleted from draft order #: build/locale/src/orders/components/OrderHistory/OrderHistory.json msgctxt "order history message" -msgid "Products were removed from draft order" +msgid "Products were deleted from draft order" msgstr "" #. [src.properties] @@ -5972,10 +6099,10 @@ msgctxt "description" msgid "Provided email address does not exist in our database." msgstr "" -#. [src.collections.views.1547167026] - publish collections +#. [src.collections.views.CollectionList.1547167026] - publish collections #. defaultMessage is: #. Publish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "publish collections" msgid "Publish" msgstr "Publicado" @@ -6012,10 +6139,10 @@ msgctxt "dialog header" msgid "Publish Products" msgstr "" -#. [src.collections.views.2823425739] - dialog title +#. [src.collections.views.CollectionList.2823425739] - dialog title #. defaultMessage is: #. Publish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Publish collections" msgstr "" @@ -6189,6 +6316,18 @@ msgctxt "shipping method price" msgid "Rate Price" msgstr "" +#. [src.orders.components.OrderListFilter.2415661583] - order status +#. defaultMessage is: +#. Ready to Capture +#. [src.orders.views.OrderList.readyToCapture] - order status +#. defaultMessage is: +#. Ready to Capture +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +#: build/locale/src/orders/views/OrderList/filters.json +msgctxt "order status" +msgid "Ready to Capture" +msgstr "" + #. [src.customers.components.CustomerOrders.3878642352] - section header #. defaultMessage is: #. Recent orders @@ -6237,22 +6376,14 @@ msgctxt "switch button" msgid "Release all stock allocated to this order" msgstr "" -#. [src.auth.components.LoginPage.3182284913] - login -#. defaultMessage is: -#. Remember me -#: build/locale/src/auth/components/LoginPage/LoginPage.json -msgctxt "login" -msgid "Remember me" -msgstr "" - #. [src.categories.views.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. -#. [src.categories.views.3488150607] +#. [src.categories.views.CategoryList.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "description" msgid "Remember this will also delete all products assigned to this category." msgstr "" @@ -6265,39 +6396,6 @@ msgctxt "button" msgid "Remove" msgstr "Remover" -#. [src.products.views.490753666] - dialog header -#. defaultMessage is: -#. Remove Image -#: build/locale/src/products/views/ProductImage.json -msgctxt "dialog header" -msgid "Remove Image" -msgstr "" - -#. [src.orders.components.OrderDraftCancelDialog.500287069] - dialog header -#. defaultMessage is: -#. Remove draft order -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "dialog header" -msgid "Remove draft order" -msgstr "Remover orçamento" - -#. [src.shipping.views.ShippingZoneDetails.254167659] - unassign country, -#. dialog header -#. defaultMessage is: -#. Remove from shipping zone -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country, dialog header" -msgid "Remove from shipping zone" -msgstr "" - -#. [src.orders.views.3880993240] -#. defaultMessage is: -#. Removed draft orders -#: build/locale/src/orders/views/OrderDraftList.json -msgctxt "description" -msgid "Removed draft orders" -msgstr "" - #. [src.pages.views.1457312643] #. defaultMessage is: #. Removed page @@ -6463,6 +6561,18 @@ msgctxt "button" msgid "Save" msgstr "Salvar" +#. [src.components.Filter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#. [src.components.TableFilter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#: build/locale/src/components/Filter/FilterSearch.json +#: build/locale/src/components/TableFilter/FilterChips.json +msgctxt "button" +msgid "Save Custom Search" +msgstr "" + #. [src.components.SaveFilterTabDialog.1514415736] - save filter tab, header #. defaultMessage is: #. Save Custom Search @@ -6471,14 +6581,6 @@ msgctxt "save filter tab, header" msgid "Save Custom Search" msgstr "" -#. [src.components.TableFilter.1514415736] - button -#. defaultMessage is: -#. Save Custom Search -#: build/locale/src/components/TableFilter/FilterChips.json -msgctxt "button" -msgid "Save Custom Search" -msgstr "" - #. [src.products.components.ProductVariantCreatePage.2853608829] - button #. defaultMessage is: #. Save variant @@ -6495,6 +6597,14 @@ msgctxt "description" msgid "Saved changes" msgstr "" +#. [src.attributes.components.AttributeListPage.3916653510] +#. defaultMessage is: +#. Search Attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "description" +msgid "Search Attribute" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.902296540] #. defaultMessage is: #. Search Attributes @@ -6511,10 +6621,30 @@ msgctxt "description" msgid "Search Categories" msgstr "" +#. [src.categories.components.CategoryListPage.3841025483] +#. defaultMessage is: +#. Search Category +#. [src.translations.components.TranslationsEntitiesListPage.3841025483] +#. defaultMessage is: +#. Search Category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Category" +msgstr "" + +#. [src.collections.components.CollectionListPage.4057224233] +#. defaultMessage is: +#. Search Collection #. [src.components.AssignCollectionDialog.4057224233] #. defaultMessage is: #. Search Collection +#. [src.translations.components.TranslationsEntitiesListPage.4057224233] +#. defaultMessage is: +#. Search Collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json #: build/locale/src/components/AssignCollectionDialog/AssignCollectionDialog.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json msgctxt "description" msgid "Search Collection" msgstr "" @@ -6527,6 +6657,14 @@ msgctxt "description" msgid "Search Countries" msgstr "" +#. [src.customers.components.CustomerListPage.1643417013] +#. defaultMessage is: +#. Search Customer +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "description" +msgid "Search Customer" +msgstr "" + #. [src.orders.components.OrderCustomer.2433460203] #. defaultMessage is: #. Search Customers @@ -6535,6 +6673,14 @@ msgctxt "description" msgid "Search Customers" msgstr "" +#. [src.orders.components.OrderDraftListPage.77765281] +#. defaultMessage is: +#. Search Draft +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "description" +msgid "Search Draft" +msgstr "" + #. [src.translations.components.TranslationsCategoriesPage.1406947243] #. defaultMessage is: #. Search Engine Description @@ -6615,6 +6761,34 @@ msgctxt "description" msgid "Search Orders..." msgstr "" +#. [src.translations.components.TranslationsEntitiesListPage.2559018090] +#. defaultMessage is: +#. Search Page +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Page" +msgstr "" + +#. [src.translations.components.TranslationsEntitiesListPage.2105464697] +#. defaultMessage is: +#. Search Product +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product" +msgstr "" + +#. [src.productTypes.components.ProductTypeListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#. [src.translations.components.TranslationsEntitiesListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product Type" +msgstr "" + #. [src.components.AssignProductDialog.2850255786] #. defaultMessage is: #. Search Products @@ -6627,14 +6801,46 @@ msgctxt "description" msgid "Search Products" msgstr "" -#. [src.products.components.ProductListPage.3550330425] +#. [src.products.components.ProductListFilter.3550330425] #. defaultMessage is: #. Search Products... -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Search Products..." msgstr "" +#. [src.discounts.components.SaleListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#. [src.translations.components.TranslationsEntitiesListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Sale" +msgstr "" + +#. [src.staff.components.StaffListPage.61043583] +#. defaultMessage is: +#. Search Staff Member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "description" +msgid "Search Staff Member" +msgstr "" + +#. [src.discounts.components.VoucherListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#. [src.translations.components.TranslationsEntitiesListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Voucher" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.524117994] #. defaultMessage is: #. Search by attribute name @@ -6741,10 +6947,10 @@ msgctxt "description" msgid "Select all orders where:" msgstr "" -#. [src.products.components.ProductListPage.1421689426] +#. [src.products.components.ProductListFilter.1421689426] #. defaultMessage is: #. Select all products where: -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Select all products where:" msgstr "" @@ -6830,6 +7036,14 @@ msgctxt "description" msgid "Set plugin as Active" msgstr "" +#. [src.components.VisibilityCard.292404896] +#. defaultMessage is: +#. Set publication date +#: build/locale/src/components/VisibilityCard/VisibilityCard.json +msgctxt "description" +msgid "Set publication date" +msgstr "" + #. [src.discounts.shipment] - voucher discount #. defaultMessage is: #. Shipment @@ -7095,6 +7309,14 @@ msgctxt "staff section name" msgid "Staff Members" msgstr "" +#. [src.configuration.3140151600] +#. defaultMessage is: +#. Staff Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Staff Settings" +msgstr "" + #. [src.standard] - tax rate #. defaultMessage is: #. Standard @@ -8079,10 +8301,10 @@ msgctxt "payment status" msgid "Unpaid" msgstr "" -#. [src.collections.views.2237014112] - unpublish collections +#. [src.collections.views.CollectionList.2237014112] - unpublish collections #. defaultMessage is: #. Unpublish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "unpublish collections" msgid "Unpublish" msgstr "Remover" @@ -8119,10 +8341,10 @@ msgctxt "dialog header" msgid "Unpublish Products" msgstr "" -#. [src.collections.views.2637364047] - dialog title +#. [src.collections.views.CollectionList.2637364047] - dialog title #. defaultMessage is: #. Unpublish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Unpublish collections" msgstr "" @@ -8622,6 +8844,22 @@ msgctxt "description" msgid "ZIP / Postal code" msgstr "" +#. [src.productTypes.components.ProductTypeListPage.3479705616] - button +#. defaultMessage is: +#. create product type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "button" +msgid "create product type" +msgstr "" + +#. [src.staff.views.1308770978] - dialog header +#. defaultMessage is: +#. delete Staff User +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "dialog header" +msgid "delete Staff User" +msgstr "" + #. [orderPaymentVATDoesNotApply] - vat not included in order price #. defaultMessage is: #. does not apply @@ -8695,19 +8933,35 @@ msgctxt "product status is set as" msgid "is set as" msgstr "" -#. [src.staff.views.2240444792] - dialog header -#. defaultMessage is: -#. remove Staff User -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "dialog header" -msgid "remove Staff User" -msgstr "" - -#. [src.components.VisibilityCard.1815688500] +#. [src.collections.components.CollectionCreatePage.1815688500] - collection #. defaultMessage is: #. since {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.1815688500] - collection +#. defaultMessage is: +#. since {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "since {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.1815688500] - page +#. defaultMessage is: +#. since {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "since {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#. [src.products.components.ProductUpdatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "since {date}" msgstr "" @@ -8735,11 +8989,35 @@ msgctxt "weight" msgid "to {value} {unit}" msgstr "" -#. [src.components.VisibilityCard.2001551496] +#. [src.collections.components.CollectionCreatePage.2001551496] - collection #. defaultMessage is: #. will be visible from {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.2001551496] - collection +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "will be visible from {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.2001551496] - page +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "will be visible from {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#. [src.products.components.ProductUpdatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "will be visible from {date}" msgstr "" diff --git a/locale/ro.json b/locale/ro.json index 0c65f87e6..c620952a8 100644 --- a/locale/ro.json +++ b/locale/ro.json @@ -1 +1 @@ -{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.350498821":"Adaugă atribut","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.2519239682":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"Nume","src.categories.components.CategoryProducts.636461959":"Nume","src.collections.components.CollectionProducts.636461959":"Nume","src.products.components.ProductDetailsForm.636461959":"Nume","src.collections.components.CollectionDetails.636461959":"Nume","src.components.ProductList.636461959":"Nume","src.discounts.components.SaleInfo.636461959":"Nume","src.discounts.components.SaleList.636461959":"Nume","src.discounts.components.SaleSummary.636461959":"Nume","menuItemDialogNameLabel":"Nume","src.products.components.ProductVariants.636461959":"Nume","src.shipping.components.ShippingZoneRates.636461959":"Nume","src.shipping.components.ShippingZonesList.636461959":"Nume","src.staff.components.StaffList.636461959":"Nume","src.translations.components.TranslationsEntitiesList.636461959":"Nume","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.254756045":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.3182284913":"","src.auth.components.LoginPage.109182747":"Logare","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"","src.categories.views.2004894945":"","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.3229914152":"","src.categories.components.CategoryList.435697837":"","src.categories.components.CategoryList.2159874182":"Subcategorii","src.categories.components.CategoryUpdatePage.2159874182":"Subcategorii","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.228151782":"Adaugă categorie","src.categories.components.CategoryProducts.2968663655":"Produse","src.categories.components.CategoryUpdatePage.2968663655":"Produse","src.discounts.components.DiscountCategories.2968663655":"Produse","src.discounts.components.DiscountCollections.2968663655":"Produse","src.products":"Produse","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryProducts.3554578821":"Adaugă produs","src.categories.components.CategoryProductsCard.3554578821":"Adaugă produs","src.categories.components.CategoryProducts.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProducts.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.categories.components.CategoryProductsCard.4164156574":"","src.categories.views.1754466114":"","src.categories.views.1140231710":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.712767046":"","src.categories.views.299584400":"","src.categories.views.844574071":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.collections.components.CollectionCreatePage.3958681866":"Colecție adăugată","src.collections.components.CollectionListPage.3958681866":"Colecție adăugată","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"Disponibilitate","src.availability":"","src.collections.components.CollectionList.3640454975":"Publicat","src.collections.components.CollectionProducts.3640454975":"Publicat","src.discounts.components.DiscountProducts.3640454975":"Publicat","src.components.ProductList.3640454975":"Publicat","src.products.components.ProductListPage.3640454975":"Publicat","src.pages.components.PageList.3640454975":"Publicat","src.products.views.ProductList.published":"Publicat","src.collections.components.CollectionList.2341910657":"Nu a fost publicat","src.collections.components.CollectionProducts.2341910657":"Nu a fost publicat","src.discounts.components.DiscountProducts.2341910657":"Nu a fost publicat","src.components.ProductList.2341910657":"Nu a fost publicat","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.686910896":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"","src.collections.views.2402899582":"","src.collections.views.2237014112":"Anulați publicarea","src.pages.views.2237014112":"Anulați publicarea","src.products.views.ProductList.2237014112":"Anulați publicarea","src.collections.views.1547167026":"Publică","src.pages.views.1547167026":"Publică","src.products.views.ProductList.1547167026":"Publică","src.collections.views.2823425739":"","src.collections.views.1348793822":"","src.collections.views.2637364047":"","src.collections.views.3944356444":"","src.collections.views.3817188998":"","src.collections.views.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"Deconectează-te","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.4057224233":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"","src.components.ErrorMessageCard.2845142593":"","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.FilterBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"Adaugă","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.ProductList.1134347598":"Preț","src.orders.components.OrderDraftDetailsProducts.1134347598":"Preț","src.orders.components.OrderFulfillment.1134347598":"Preț","src.products.components.ProductListPage.1134347598":"Preț","src.products.components.ProductPricing.1134347598":"Preț","src.orders.components.OrderUnfulfilledItems.1134347598":"Preț","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"Preț","src.shipping.components.ShippingZoneRates.1134347598":"Preț","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"Vizibilitate","src.pages.components.PageList.1459686496":"Vizibilitate","src.products.components.ProductListFilter.1459686496":"Vizibilitate","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"Ascuns","src.products.views.ProductList.hidden":"Ascuns","src.components.VisibilityCard.1815688500":"","src.components.VisibilityCard.2001551496":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","configurationMenuStaff":"","configurationMenuShipping":"","configurationMenuTaxes":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","src.customers.components.CustomerAddress.1320082647":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"Adresa de facturare","src.customers.components.CustomerAddresses.3517722732":"Adresa de livrare","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"Adresă","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"Notițe","src.orders.components.OrderCustomerNote.1520756907":"Notițe","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"Notă","src.customers.components.CustomerDetails.577013340":"Notă","src.customers.components.CustomerCreatePage.1934221653":"Adaugă client","src.customers.components.CustomerListPage.1934221653":"Adaugă client","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerOrders.3878642352":"Comenzi recente","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"Data","src.orders.components.OrderDraftList.4205493358":"Data","src.orders.components.OrderList.4205493358":"Data","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"Stare","src.orders.components.OrderListFilter.1756106276":"Stare","src.products.components.ProductListFilter.1756106276":"Stare","src.products.components.ProductVariants.1756106276":"Stare","src.customers.components.CustomerOrders.878013594":"Total","src.orders.components.OrderDraftDetailsProducts.878013594":"Total","src.orders.components.OrderDraftDetailsSummary.878013594":"Total","src.orders.components.OrderDraftList.878013594":"Total","src.orders.components.OrderFulfillment.878013594":"Total","src.orders.components.OrderUnfulfilledItems.878013594":"Total","src.orders.components.OrderList.878013594":"Total","src.orders.components.OrderPayment.878013594":"Total","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.1946482599":"","src.customers.views.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"Valoare","src.discounts.components.SaleSummary.1148029984":"Valoare","src.discounts.components.VoucherList.1148029984":"Valoare","src.discounts.components.VoucherSummary.1148029984":"Valoare","src.discounts.components.VoucherValue.1148029984":"Valoare","src.products.components.ProductAttributes.1148029984":"Valoare","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.1742771332":"","src.discounts.components.SalePricing.1099355007":"Prețuri","src.products.components.ProductPricing.1099355007":"Prețuri","src.products.components.ProductVariantPrice.1099355007":"Prețuri","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"Țări","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"Cod","src.discounts.components.VoucherSummary.78726751":"Cod","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.1536809153":"Adaugă voucher","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"Produse specifice","src.discounts.shipment":"Expediere","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.2809303671":"","src.discounts.views.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.367317371":"","src.discounts.views.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"Anulare","src.orders.views.OrderList.3528672691":"Anulare","src.confirm":"","src.delete":"","src.edit":"Editează","src.manage":"","src.remove":"Elimină","src.save":"Salvează","src.show":"","src.undo":"","src.attributes":"Atribute","src.products.components.ProductAttributes.4153345096":"Atribute","src.categories":"Categorii","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"Colecții","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"Configurație","src.customers":"Clienții","src.draftOrders":"","src.home":"Acasă","src.navigation":"Navigare","src.orders":"Comenzi","src.pages":"Pagini","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"Vânzări","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"Taxe ","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"Taxe ","src.taxes.components.CountryListPage.3955023266":"Taxe ","src.translations":"","src.vouchers":"Vouchers","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"","src.partiallyPaid":"","src.partiallyRefunded":"","src.refunded":"","src.unpaid":"","src.cancelled":"","src.draft":"Proiect","src.fulfilled":"Livrată","src.orders.views.OrderList.fulfilled":"Livrată","src.orders.components.OrderListFilter.1712863026":"Livrată","src.partiallyFulfilled":"Parțial livrată","src.unfulfilled":"Nelivrată","src.orders.views.OrderList.unfulfilled":"Nelivrată","src.orders.components.OrderListFilter.1751787272":"Nelivrată","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","src.1395232177":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"Link","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"Anulează comanda","src.orders.components.OrderDetailsPage.1854613983":"Anulează comanda","src.orders.components.OrderDraftPage.1854613983":"Anulează comanda","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"Client","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"Client","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"La fel ca adresa de livrare","src.orders.components.OrderCustomerEditDialog.1411666943":"Editează detaliile despre client","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.500287069":"Elimină comanda de proiect","src.orders.components.OrderDraftCancelDialog.3199827590":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"Produs","src.orders.components.OrderUnfulfilledItems.1895667608":"Produs","src.orders.components.OrderDraftDetailsProducts.2796503714":"Cantitate","src.orders.components.OrderFulfillment.2796503714":"Cantitate","src.orders.components.OrderFulfillmentDialog.2796503714":"Cantitate","src.orders.components.OrderUnfulfilledItems.2796503714":"Cantitate","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"Subtotal","src.orders.components.OrderPayment.781550514":"Subtotal","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"Crează comandă","src.orders.components.OrderListPage.2826235371":"Crează comandă","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"Adăugă urmărirea","src.orders.components.OrderFulfillmentCancelDialog.732594284":"Anulează Livrarea","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"Anulează livrarea","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"SKU","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"Număr de urmărire","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.2574162126":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"Comanda a fost plătită în totalitate","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"Comanda a fost plasată","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"Plată","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2943502192":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"Livrare","src.productTypes.components.ProductTypeShipping.1325966144":"Livrare","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"Livrare","src.orders.components.OrderPayment.3768782744":"Sumă prea mare","src.orders.components.OrderPayment.2320183694":"Suma capturată","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"Captură","src.orders.components.OrderPayment.2845258362":"Rambursare","src.orders.components.OrderPayment.2444197639":"","src.orders.components.OrderPayment.3500506678":"Marcă ca plătit","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"Cantitate","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.2775402904":"","src.products.components.ProductListPage.2775402904":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"Livrează","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.3880993240":"","src.orders.views.1161115149":"","src.orders.views.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.755314116":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"Titlu","src.pages.components.PageList.1124600214":"Titlu","src.pages.components.PageInfo.1116746286":"","src.translations.components.TranslationsPagesPage.1116746286":"","src.pages.components.PageList.3478065224":"","src.pages.components.PageSlug.3478065224":"","src.productTypes.components.ProductTypeAttributes.3478065224":"","src.pages.components.PageList.3767550649":"Nu este publicat","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.1767905232":"Adaugă pagină","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.3785394515":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"Valori","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"Imagini","src.products.components.ProductVariantImages.3240888698":"Imagini","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"","src.products.components.ProductVariantStock.3841616483":"","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListPage.821159718":"","src.products.components.ProductListPage.1421689426":"","src.products.components.ProductListPage.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"Inventar","prodictStockInventoryLabel":"Inventar","src.products.components.ProductVariantStock.3490038570":"Inventar","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"","src.products.components.ProductVariants.2153006789":"","src.products.components.ProductVariantNavigation.2845381934":"Adaugă varianta","src.products.components.ProductVariants.2845381934":"Adaugă varianta","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1542417144":"","src.products.views.1591632382":"","src.products.views.490753666":"","src.products.views.672103788":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.1694086800":"","src.products.views.ProductList.224127438":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.products.views.2178905289":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1756957616":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.889729490":"Adăugă tipul de produs","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.4080551769":"","src.productTypes.views.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.352297149":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2474410767":"Adaugă zonă livrare","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.254167659":"","src.shipping.views.ShippingZoneDetails.1790261672":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"Cheie","src.siteSettings.components.SiteSettingsKeys.2446088470":"Cheie","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.3490059488":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"Permisiuni","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.3247064221":"Activ","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.802625341":"Adăugă membru al personalului","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"Utilizatorul este activ","src.staff.views.2240444792":"","src.staff.views.2728048444":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file +{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.3824684885":"","src.attributes.components.AttributeListPage.2417065806":"","src.attributes.components.AttributeListPage.3916653510":"","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.4048785456":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"Nume","src.categories.components.CategoryProductList.636461959":"Nume","src.components.ProductList.636461959":"Nume","src.products.components.ProductList.636461959":"Nume","src.collections.components.CollectionDetails.636461959":"Nume","src.collections.components.CollectionProducts.636461959":"Nume","src.products.components.ProductDetailsForm.636461959":"Nume","src.discounts.components.SaleInfo.636461959":"Nume","src.discounts.components.SaleList.636461959":"Nume","src.discounts.components.SaleSummary.636461959":"Nume","menuItemDialogNameLabel":"Nume","src.plugins.components.PluginsList.636461959":"Nume","src.products.components.ProductVariants.636461959":"Nume","src.shipping.components.ShippingZoneRates.636461959":"Nume","src.shipping.components.ShippingZonesList.636461959":"Nume","src.staff.components.StaffList.636461959":"Nume","src.translations.components.TranslationsEntitiesList.636461959":"Nume","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.351422234":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.109182747":"Logare","src.auth.components.LoginPage.4028609483":"","src.auth.components.NewPasswordPage.1915811227":"","src.auth.components.NewPasswordPage.1254879564":"","src.auth.components.NewPasswordPage.2799926859":"","src.auth.components.NewPasswordPage.4253911811":"","src.auth.components.NewPasswordPage.2342634351":"","src.auth.components.ResetPasswordPage.2370700732":"","src.auth.components.ResetPasswordPage.3663311080":"","src.auth.components.ResetPasswordSuccessPage.4066297200":"","src.auth.components.ResetPasswordSuccessPage.2245157344":"","src.auth.views.2388238158":"","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"","src.categories.views.2004894945":"","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.2159874182":"Subcategorii","src.categories.components.CategoryUpdatePage.2159874182":"Subcategorii","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.1140231710":"","src.categories.views.1140231710":"","src.categories.components.CategoryListPage.4294878092":"","src.categories.components.CategoryListPage.3841025483":"","src.translations.components.TranslationsEntitiesListPage.3841025483":"","src.categories.components.CategoryProductList.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductList.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProductList.3640454975":"Publicat","src.components.ProductList.3640454975":"Publicat","src.products.components.ProductList.3640454975":"Publicat","src.products.components.ProductListPage.3640454975":"Publicat","productStatusLabel":"Publicat","src.collections.components.CollectionList.3640454975":"Publicat","src.collections.components.CollectionProducts.3640454975":"Publicat","src.discounts.components.DiscountProducts.3640454975":"Publicat","src.pages.components.PageList.3640454975":"Publicat","src.products.views.ProductList.published":"Publicat","src.categories.components.CategoryProductList.1134347598":"Preț","src.orders.components.OrderFulfillment.1134347598":"Preț","src.products.components.ProductList.1134347598":"Preț","src.products.components.ProductListPage.1134347598":"Preț","src.products.components.ProductPricing.1134347598":"Preț","src.components.ProductList.1134347598":"Preț","src.orders.components.OrderDraftDetailsProducts.1134347598":"Preț","src.orders.components.OrderUnfulfilledItems.1134347598":"Preț","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"Preț","src.shipping.components.ShippingZoneRates.1134347598":"Preț","src.categories.components.CategoryProductList.2341910657":"Nu a fost publicat","src.products.components.ProductList.2341910657":"Nu a fost publicat","src.collections.components.CollectionList.2341910657":"Nu a fost publicat","src.collections.components.CollectionProducts.2341910657":"Nu a fost publicat","src.discounts.components.DiscountProducts.2341910657":"Nu a fost publicat","src.components.ProductList.2341910657":"Nu a fost publicat","src.categories.components.CategoryProductList.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.products.components.ProductList.1657559629":"","src.categories.components.CategoryProducts.4164156574":"","src.categories.components.CategoryProducts.3554578821":"Adaugă produs","src.categories.components.CategoryUpdatePage.2968663655":"Produse","src.discounts.components.DiscountCategories.2968663655":"Produse","src.discounts.components.DiscountCollections.2968663655":"Produse","src.products":"Produse","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryUpdatePage.3229914152":"","src.categories.components.CategoryUpdatePage.770296100":"","src.categories.views.1754466114":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.CategoryList.3488150607":"","src.categories.views.712767046":"","src.categories.views.CategoryList.712767046":"","src.categories.views.299584400":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.categories.views.CategoryList.2144707585":"","src.collections.components.CollectionCreatePage.3958681866":"Colecție adăugată","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionCreatePage.2001551496":"","src.collections.components.CollectionDetailsPage.2001551496":"","src.pages.components.PageDetailsPage.2001551496":"","src.products.components.ProductCreatePage.2001551496":"","src.products.components.ProductUpdatePage.2001551496":"","src.collections.components.CollectionCreatePage.1815688500":"","src.collections.components.CollectionDetailsPage.1815688500":"","src.pages.components.PageDetailsPage.1815688500":"","src.products.components.ProductCreatePage.1815688500":"","src.products.components.ProductUpdatePage.1815688500":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"Disponibilitate","src.availability":"","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionListPage.686910896":"","src.collections.views.686910896":"","src.collections.components.CollectionListPage.1631917001":"","src.collections.components.CollectionListPage.4057224233":"","src.components.AssignCollectionDialog.4057224233":"","src.translations.components.TranslationsEntitiesListPage.4057224233":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"","src.collections.views.2402899582":"","src.collections.views.CollectionList.2237014112":"Anulați publicarea","src.pages.views.2237014112":"Anulați publicarea","src.products.views.ProductList.2237014112":"Anulați publicarea","src.collections.views.CollectionList.1547167026":"Publică","src.pages.views.1547167026":"Publică","src.products.views.ProductList.1547167026":"Publică","src.collections.views.CollectionList.2823425739":"","src.collections.views.CollectionList.1348793822":"","src.collections.views.CollectionList.2637364047":"","src.collections.views.CollectionList.3944356444":"","src.collections.views.CollectionList.3817188998":"","src.collections.views.CollectionList.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"Deconectează-te","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"","src.components.ErrorMessageCard.2845142593":"","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.Filter.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.Filter.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.FilterBar.2340527467":"","src.components.SearchBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"Adaugă","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"Vizibilitate","src.pages.components.PageList.1459686496":"Vizibilitate","src.products.components.ProductListFilter.1459686496":"Vizibilitate","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"Ascuns","src.products.views.ProductList.hidden":"Ascuns","src.components.VisibilityCard.292404896":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","src.configuration.2326418019":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","src.configuration.3655543906":"","configurationMenuShipping":"","configurationMenuTaxes":"","src.configuration.3140151600":"","configurationMenuStaff":"","src.configuration.1233229030":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","configurationPluginsPages":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"Adresa de facturare","src.customers.components.CustomerAddresses.3517722732":"Adresa de livrare","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"Adresă","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"Notițe","src.orders.components.OrderCustomerNote.1520756907":"Notițe","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"Notă","src.customers.components.CustomerDetails.577013340":"Notă","src.customers.components.CustomerCreatePage.1934221653":"Adaugă client","src.customers.components.CustomerListPage.1934221653":"Adaugă client","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerListPage.477293306":"","src.customers.components.CustomerListPage.1643417013":"","src.customers.components.CustomerOrders.3878642352":"Comenzi recente","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"Data","src.orders.components.OrderDraftList.4205493358":"Data","src.orders.components.OrderList.4205493358":"Data","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"Stare","src.orders.components.OrderListFilter.1756106276":"Stare","src.plugins.components.PluginInfo.1756106276":"Stare","src.products.components.ProductListFilter.1756106276":"Stare","src.products.components.ProductVariants.1756106276":"Stare","src.customers.components.CustomerOrders.878013594":"Total","src.orders.components.OrderDraftDetailsProducts.878013594":"Total","src.orders.components.OrderDraftDetailsSummary.878013594":"Total","src.orders.components.OrderDraftList.878013594":"Total","src.orders.components.OrderFulfillment.878013594":"Total","src.orders.components.OrderUnfulfilledItems.878013594":"Total","src.orders.components.OrderList.878013594":"Total","src.orders.components.OrderPayment.878013594":"Total","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.CustomerList.1946482599":"","src.customers.views.CustomerList.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","src.discounts.components.SaleListPage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"Valoare","src.discounts.components.SaleSummary.1148029984":"Valoare","src.discounts.components.VoucherList.1148029984":"Valoare","src.discounts.components.VoucherSummary.1148029984":"Valoare","src.discounts.components.VoucherValue.1148029984":"Valoare","src.products.components.ProductAttributes.1148029984":"Valoare","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.3907768880":"","src.discounts.components.SaleListPage.1866913828":"","src.translations.components.TranslationsEntitiesListPage.1866913828":"","src.discounts.components.SalePricing.1099355007":"Prețuri","src.products.components.ProductPricing.1099355007":"Prețuri","src.products.components.ProductVariantPrice.1099355007":"Prețuri","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"Țări","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"Cod","src.discounts.components.VoucherSummary.78726751":"Cod","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.614836274":"","src.discounts.components.VoucherListPage.1112241061":"","src.discounts.components.VoucherListPage.1930485532":"","src.translations.components.TranslationsEntitiesListPage.1930485532":"","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"Produse specifice","src.discounts.shipment":"Expediere","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.SaleList.2809303671":"","src.discounts.views.SaleList.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.VoucherList.367317371":"","src.discounts.views.VoucherList.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.somethingWentWrong":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"Anulare","src.orders.views.OrderList.3528672691":"Anulare","src.confirm":"","src.delete":"","src.edit":"Editează","src.manage":"","src.remove":"Elimină","src.save":"Salvează","src.show":"","src.undo":"","src.attributes":"Atribute","src.products.components.ProductAttributes.4153345096":"Atribute","src.categories":"Categorii","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"Colecții","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"Configurație","src.customers":"Clienții","src.draftOrders":"","src.home":"Acasă","src.navigation":"Navigare","src.orders":"Comenzi","src.pages":"Pagini","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.plugins":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"Vânzări","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"Taxe ","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"Taxe ","src.taxes.components.CountryListPage.3955023266":"Taxe ","src.translations":"","src.vouchers":"Vouchers","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"","src.partiallyPaid":"","src.partiallyRefunded":"","src.refunded":"","src.unpaid":"","src.cancelled":"","src.draft":"Proiect","src.fulfilled":"Livrată","src.orders.views.OrderList.fulfilled":"Livrată","src.orders.components.OrderListFilter.1712863026":"Livrată","src.partiallyFulfilled":"Parțial livrată","src.unfulfilled":"Nelivrată","src.orders.views.OrderList.unfulfilled":"Nelivrată","src.orders.components.OrderListFilter.1751787272":"Nelivrată","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"Link","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"Anulează comanda","src.orders.components.OrderDetailsPage.1854613983":"Anulează comanda","src.orders.components.OrderDraftPage.1854613983":"Anulează comanda","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"Client","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"Client","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"La fel ca adresa de livrare","src.orders.components.OrderCustomerEditDialog.1411666943":"Editează detaliile despre client","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.632633254":"","src.orders.components.OrderDraftCancelDialog.36681973":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"Produs","src.orders.components.OrderUnfulfilledItems.1895667608":"Produs","src.orders.components.OrderDraftDetailsProducts.2796503714":"Cantitate","src.orders.components.OrderFulfillment.2796503714":"Cantitate","src.orders.components.OrderFulfillmentDialog.2796503714":"Cantitate","src.orders.components.OrderUnfulfilledItems.2796503714":"Cantitate","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"Subtotal","src.orders.components.OrderPayment.781550514":"Subtotal","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"Crează comandă","src.orders.components.OrderListPage.2826235371":"Crează comandă","src.orders.components.OrderDraftListPage.551325728":"","src.orders.components.OrderDraftListPage.77765281":"","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"Adăugă urmărirea","src.orders.components.OrderFulfillmentCancelDialog.732594284":"Anulează Livrarea","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"Anulează livrarea","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"SKU","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"Număr de urmărire","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.4067959693":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"Comanda a fost plătită în totalitate","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"Comanda a fost plasată","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"Plată","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2415661583":"","src.orders.views.OrderList.readyToCapture":"","src.orders.components.OrderListFilter.2222765704":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"Livrare","src.productTypes.components.ProductTypeShipping.1325966144":"Livrare","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"Livrare","src.orders.components.OrderPayment.3768782744":"Sumă prea mare","src.orders.components.OrderPayment.2320183694":"Suma capturată","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"Captură","src.orders.components.OrderPayment.2845258362":"Rambursare","src.orders.components.OrderPayment.2444197639":"","src.orders.components.OrderPayment.3500506678":"Marcă ca plătit","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"Cantitate","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.1542417144":"","src.products.components.ProductListPage.1542417144":"","src.products.views.1542417144":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"Livrează","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.OrderDraftList.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.OrderDraftList.1648805446":"","src.orders.views.OrderDraftList.1161115149":"","src.orders.views.OrderDraftList.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.1068617485":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"Titlu","src.pages.components.PageList.1124600214":"Titlu","src.pages.components.PageInfo.1116746286":"","src.translations.components.TranslationsPagesPage.1116746286":"","src.pages.components.PageList.3478065224":"","src.pages.components.PageSlug.3478065224":"","src.productTypes.components.ProductTypeAttributes.3478065224":"","src.pages.components.PageList.3767550649":"Nu este publicat","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.3785394515":"","src.pages.views.3785394515":"","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.plugins.components.PluginInfo.3425535100":"","src.plugins.components.PluginsDetailsPage.3425535100":"","src.plugins.components.PluginInfo.1049131348":"","src.plugins.components.PluginInfo.4013064767":"","src.plugins.components.PluginsDetailsPage.3352026836":"","src.plugins.components.PluginsDetailsPage.2277745418":"","src.plugins.components.PluginsDetailsPage.1970881031":"","src.plugins.components.PluginSettings.1970881031":"","src.plugins.components.PluginsDetailsPage.4241018152":"","src.plugins.components.PluginsList.3247064221":"Activ","src.staff.components.StaffList.3247064221":"Activ","src.plugins.components.PluginsList.4120604650":"","src.plugins.components.PluginsList.666641390":"","src.plugins.views.100549097":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"Valori","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"Imagini","src.products.components.ProductVariantImages.3240888698":"Imagini","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"","src.products.components.ProductVariantStock.3841616483":"","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListFilter.821159718":"","src.products.components.ProductListFilter.1421689426":"","src.products.components.ProductListFilter.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"Inventar","prodictStockInventoryLabel":"Inventar","src.products.components.ProductVariantStock.3490038570":"Inventar","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"","src.products.components.ProductVariants.2153006789":"","src.products.components.ProductVariantNavigation.2845381934":"Adaugă varianta","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.3989383405":"","src.products.views.3989383405":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1591632382":"","src.products.views.1731766393":"","src.products.views.2880386427":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1217376589":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.3479705616":"","src.productTypes.components.ProductTypeListPage.1776073799":"","src.productTypes.components.ProductTypeListPage.3420445375":"","src.translations.components.TranslationsEntitiesListPage.3420445375":"","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.ProductTypeList.4080551769":"","src.productTypes.views.ProductTypeList.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRates.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2673544109":"","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.1947090060":"","src.shipping.views.ShippingZoneDetails.131963671":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"Cheie","src.siteSettings.components.SiteSettingsKeys.2446088470":"Cheie","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.1481503299":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"Permisiuni","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.797461521":"","src.staff.components.StaffListPage.2852350932":"","src.staff.components.StaffListPage.61043583":"","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"Utilizatorul este activ","src.staff.views.1308770978":"","src.staff.views.8878988":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.2105464697":"","src.translations.components.TranslationsEntitiesListPage.2559018090":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file diff --git a/locale/ro.po b/locale/ro.po index 2ddf4fa3e..9c868042e 100644 --- a/locale/ro.po +++ b/locale/ro.po @@ -5,7 +5,7 @@ # msgid "" msgstr "" -"POT-Creation-Date: 2019-09-06T13:56:36.897Z\n" +"POT-Creation-Date: 2019-09-16T15:25:09.340Z\n" "Last-Translator: Delia Cosma , 2019\n" "Language-Team: Romanian (https://www.transifex.com/mirumee/teams/34782/ro/)\n" "MIME-Version: 1.0\n" @@ -143,22 +143,6 @@ msgctxt "create new menu item, header" msgid "Add Item" msgstr "" -#. [menuCreateDialogHeader] - dialog header -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json -msgctxt "dialog header" -msgid "Add Menu" -msgstr "" - -#. [menuListPageAddMenu] - button -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json -msgctxt "button" -msgid "Add Menu" -msgstr "" - #. [src.siteSettings.components.SiteSettingsKeyDialog.1238948746] - dialog #. header #. defaultMessage is: @@ -168,14 +152,6 @@ msgctxt "dialog header" msgid "Add New Authorization Key" msgstr "" -#. [src.pages.components.PageDetailsPage.755314116] - page header -#. defaultMessage is: -#. Add Page -#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json -msgctxt "page header" -msgid "Add Page" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.2892088870] - dialog header #. defaultMessage is: #. Add Price Rate @@ -184,38 +160,6 @@ msgctxt "dialog header" msgid "Add Price Rate" msgstr "" -#. [src.orders.components.OrderProductAddDialog.2775402904] - dialog header -#. defaultMessage is: -#. Add Product -#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json -msgctxt "dialog header" -msgid "Add Product" -msgstr "" - -#. [src.products.components.ProductListPage.2775402904] - button -#. defaultMessage is: -#. Add Product -#: build/locale/src/products/components/ProductListPage/ProductListPage.json -msgctxt "button" -msgid "Add Product" -msgstr "" - -#. [src.discounts.components.SaleListPage.1742771332] - button -#. defaultMessage is: -#. Add Sale -#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json -msgctxt "button" -msgid "Add Sale" -msgstr "" - -#. [src.staff.components.StaffAddMemberDialog.3490059488] - dialog header -#. defaultMessage is: -#. Add Staff Member -#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json -msgctxt "dialog header" -msgid "Add Staff Member" -msgstr "" - #. [src.attributes.components.AttributeValueEditDialog.1841790893] - add #. attribute value #. defaultMessage is: @@ -225,14 +169,6 @@ msgctxt "add attribute value" msgid "Add Value" msgstr "" -#. [src.products.views.2178905289] - header -#. defaultMessage is: -#. Add Variant -#: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "header" -msgid "Add Variant" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.1397795758] - add weight #. based shipping method, dialog header #. defaultMessage is: @@ -250,14 +186,6 @@ msgctxt "button" msgid "Add address" msgstr "" -#. [src.attributes.components.AttributeListPage.350498821] - button -#. defaultMessage is: -#. Add attribute -#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json -msgctxt "button" -msgid "Add attribute" -msgstr "Adaugă atribut" - #. [src.siteSettings.components.SiteSettingsKeyDialog.50561933] - button #. defaultMessage is: #. Add authentication @@ -266,14 +194,6 @@ msgctxt "button" msgid "Add authentication" msgstr "" -#. [src.categories.components.CategoryListPage.228151782] - button -#. defaultMessage is: -#. Add category -#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json -msgctxt "button" -msgid "Add category" -msgstr "Adaugă categorie" - #. [src.collections.components.CollectionCreatePage.3958681866] - page header #. defaultMessage is: #. Add collection @@ -282,14 +202,6 @@ msgctxt "page header" msgid "Add collection" msgstr "Colecție adăugată" -#. [src.collections.components.CollectionListPage.3958681866] - button -#. defaultMessage is: -#. Add collection -#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json -msgctxt "button" -msgid "Add collection" -msgstr "Colecție adăugată" - #. [src.customers.components.CustomerCreatePage.1934221653] - page header #. defaultMessage is: #. Add customer @@ -322,14 +234,6 @@ msgctxt "button" msgid "Add key" msgstr "" -#. [menuItemsAddItem] - add new menu item -#. defaultMessage is: -#. Add new item -#: build/locale/src/navigation/components/MenuItems/MenuItems.json -msgctxt "add new menu item" -msgid "Add new item" -msgstr "" - #. [menuItemsPlaceholder] #. defaultMessage is: #. Add new menu item to begin creating menu @@ -364,14 +268,6 @@ msgctxt "button" msgid "Add or Edit Link" msgstr "" -#. [src.pages.components.PageListPage.1767905232] - button -#. defaultMessage is: -#. Add page -#: build/locale/src/pages/components/PageListPage/PageListPage.json -msgctxt "button" -msgid "Add page" -msgstr "Adaugă pagină" - #. [src.categories.components.CategoryProducts.3554578821] - button #. defaultMessage is: #. Add product @@ -380,14 +276,6 @@ msgctxt "button" msgid "Add product" msgstr "Adaugă produs" -#. [src.productTypes.components.ProductTypeListPage.889729490] - button -#. defaultMessage is: -#. Add product type -#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json -msgctxt "button" -msgid "Add product type" -msgstr "Adăugă tipul de produs" - #. [src.orders.components.OrderDraftDetails.2528459381] - button #. defaultMessage is: #. Add products @@ -396,14 +284,6 @@ msgctxt "button" msgid "Add products" msgstr "" -#. [src.shipping.components.ShippingZoneRates.352297149] - button -#. defaultMessage is: -#. Add rate -#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json -msgctxt "button" -msgid "Add rate" -msgstr "" - #. [src.categories.components.CategoryCreatePage.2563994280] #. defaultMessage is: #. Add search engine title and description to make this category easier to @@ -465,30 +345,6 @@ msgctxt "button" msgid "Add shipping carrier" msgstr "" -#. [src.shipping.components.ShippingZonesList.2474410767] - button -#. defaultMessage is: -#. Add shipping zone -#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json -msgctxt "button" -msgid "Add shipping zone" -msgstr "Adaugă zonă livrare" - -#. [src.staff.components.StaffListPage.802625341] - button -#. defaultMessage is: -#. Add staff member -#: build/locale/src/staff/components/StaffListPage/StaffListPage.json -msgctxt "button" -msgid "Add staff member" -msgstr "Adăugă membru al personalului" - -#. [src.categories.components.CategoryList.435697837] - button -#. defaultMessage is: -#. Add subcategory -#: build/locale/src/categories/components/CategoryList/CategoryList.json -msgctxt "button" -msgid "Add subcategory" -msgstr "" - #. [src.attributes.components.AttributeProperties.673770329] - add attribute #. as column in product list table #. defaultMessage is: @@ -516,35 +372,14 @@ msgctxt "dialog header" msgid "Add tracking code" msgstr "" -#. [src.attributes.components.AttributeValues.254756045] - add attribute value -#. button -#. defaultMessage is: -#. Add value -#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json -msgctxt "add attribute value button" -msgid "Add value" -msgstr "" - #. [src.products.components.ProductVariantNavigation.2845381934] - button #. defaultMessage is: #. Add variant -#. [src.products.components.ProductVariants.2845381934] - button -#. defaultMessage is: -#. Add variant #: build/locale/src/products/components/ProductVariantNavigation/ProductVariantNavigation.json -#: build/locale/src/products/components/ProductVariants/ProductVariants.json msgctxt "button" msgid "Add variant" msgstr "Adaugă varianta" -#. [src.discounts.components.VoucherListPage.1536809153] - button -#. defaultMessage is: -#. Add voucher -#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json -msgctxt "button" -msgid "Add voucher" -msgstr "Adaugă voucher" - #. [src.attributes.views.AttributeDetails.634268988] - added new attribute #. value #. defaultMessage is: @@ -602,14 +437,6 @@ msgctxt "description" msgid "Address line 2" msgstr "" -#. [src.customers.components.CustomerAddress.1320082647] - addres card header -#. defaultMessage is: -#. Address {addressNumber} -#: build/locale/src/customers/components/CustomerAddress/CustomerAddress.json -msgctxt "addres card header" -msgid "Address {addressNumber}" -msgstr "" - #. [src.attributes.components.AttributeValues.1565474525] - attribute values #. list: slug column header #. defaultMessage is: @@ -659,6 +486,46 @@ msgctxt "tax rate" msgid "Agricultural supplies" msgstr "" +#. [src.attributes.components.AttributeListPage.2417065806] - tab name +#. defaultMessage is: +#. All Attributes +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "tab name" +msgid "All Attributes" +msgstr "" + +#. [src.categories.components.CategoryListPage.4294878092] - tab name +#. defaultMessage is: +#. All Categories +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "tab name" +msgid "All Categories" +msgstr "" + +#. [src.collections.components.CollectionListPage.1631917001] - tab name +#. defaultMessage is: +#. All Collections +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "tab name" +msgid "All Collections" +msgstr "" + +#. [src.customers.components.CustomerListPage.477293306] - tab name +#. defaultMessage is: +#. All Customers +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "tab name" +msgid "All Customers" +msgstr "" + +#. [src.orders.components.OrderDraftListPage.551325728] - tab name +#. defaultMessage is: +#. All Drafts +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "tab name" +msgid "All Drafts" +msgstr "" + #. [src.orders.components.OrderListPage.875489544] - tab name #. defaultMessage is: #. All Orders @@ -676,22 +543,54 @@ msgctxt "section header" msgid "All Photos" msgstr "" -#. [src.products.components.ProductListPage.821159718] - tab name +#. [src.productTypes.components.ProductTypeListPage.1776073799] - tab name +#. defaultMessage is: +#. All Product Types +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "tab name" +msgid "All Product Types" +msgstr "" + +#. [src.products.components.ProductListFilter.821159718] - tab name #. defaultMessage is: #. All Products -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "tab name" msgid "All Products" msgstr "" -#. [src.categories.components.CategoryList.3229914152] - section header +#. [src.discounts.components.SaleListPage.3907768880] - tab name +#. defaultMessage is: +#. All Sales +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "tab name" +msgid "All Sales" +msgstr "" + +#. [src.staff.components.StaffListPage.2852350932] - tab name +#. defaultMessage is: +#. All Staff Members +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "tab name" +msgid "All Staff Members" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.3229914152] - section header #. defaultMessage is: #. All Subcategories -#: build/locale/src/categories/components/CategoryList/CategoryList.json +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json msgctxt "section header" msgid "All Subcategories" msgstr "" +#. [src.discounts.components.VoucherListPage.1112241061] - tab name +#. defaultMessage is: +#. All Vouchers +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "tab name" +msgid "All Vouchers" +msgstr "" + #. [src.taxes.components.TaxConfiguration.142803418] #. defaultMessage is: #. All products prices are entered with tax included @@ -799,6 +698,14 @@ msgctxt "description" msgid "Are you sure you want to delete collection's image?" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.36681973] +#. defaultMessage is: +#. Are you sure you want to delete draft #{number}? +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "description" +msgid "Are you sure you want to delete draft #{number}?" +msgstr "" + #. [menuDetailsDeleteMenuContent] #. defaultMessage is: #. Are you sure you want to delete menu {menuName}? @@ -815,6 +722,14 @@ msgctxt "description" msgid "Are you sure you want to delete this address from users address book?" msgstr "" +#. [src.products.views.2880386427] +#. defaultMessage is: +#. Are you sure you want to delete this image? +#: build/locale/src/products/views/ProductImage.json +msgctxt "description" +msgid "Are you sure you want to delete this image?" +msgstr "" + #. [src.attributes.components.AttributeDeleteDialog.3738429348] - dialog #. content #. defaultMessage is: @@ -865,12 +780,7 @@ msgstr "" #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this attribute} #. other{{displayQuantity} categories}}? -#. [src.categories.views.844574071] -#. defaultMessage is: -#. Are you sure you want to delete {counter,plural,one{this attribute} -#. other{{displayQuantity} categories}}? #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this attribute} " @@ -888,22 +798,33 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.2497542455] +#. [src.categories.views.CategoryList.2144707585] +#. defaultMessage is: +#. Are you sure you want to delete {counter,plural,one{this category} +#. other{{displayQuantity} categories}}? +#: build/locale/src/categories/views/CategoryList/CategoryList.json +msgctxt "description" +msgid "" +"Are you sure you want to delete {counter,plural,one{this category} " +"other{{displayQuantity} categories}}?" +msgstr "" + +#. [src.collections.views.CollectionList.2497542455] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this collection} " "other{{displayQuantity} collections}}?" msgstr "" -#. [src.customers.views.409347866] +#. [src.customers.views.CustomerList.409347866] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this customer} #. other{{displayQuantity} customers}}? -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this customer} " @@ -921,11 +842,11 @@ msgid "" "other{{displayQuantity} menus}}?" msgstr "" -#. [src.orders.views.1389231130] - dialog content +#. [src.orders.views.OrderDraftList.1389231130] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this order draft} #. other{{displayQuantity} orderDrafts}}? -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this order draft} " @@ -943,11 +864,11 @@ msgid "" "other{{displayQuantity} pages}}?" msgstr "" -#. [src.productTypes.views.2294091098] - dialog content +#. [src.productTypes.views.ProductTypeList.2294091098] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this product type} #. other{{displayQuantity} product types}}? -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this product type} " @@ -965,11 +886,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.discounts.views.2516361175] - dialog content +#. [src.discounts.views.SaleList.2516361175] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this sale} #. other{{displayQuantity} sales}}? -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this sale} " @@ -998,17 +919,33 @@ msgid "" "other{{displayQuantity} variants}}?" msgstr "" -#. [src.discounts.views.1791926983] - dialog content +#. [src.discounts.views.VoucherList.1791926983] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this voucher} #. other{{displayQuantity} vouchers}}? -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this voucher} " "other{{displayQuantity} vouchers}}?" msgstr "" +#. [src.shipping.views.ShippingZoneDetails.131963671] - unassign country +#. defaultMessage is: +#. Are you sure you want to delete {countryName} from this shipping zone? +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country" +msgid "Are you sure you want to delete {countryName} from this shipping zone?" +msgstr "" + +#. [src.staff.views.8878988] +#. defaultMessage is: +#. Are you sure you want to delete {email} from staff members? +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "description" +msgid "Are you sure you want to delete {email} from staff members?" +msgstr "" + #. [src.customers.views.1927691511] - delete customer, dialog content #. defaultMessage is: #. Are you sure you want to delete {email}? @@ -1123,11 +1060,11 @@ msgctxt "description" msgid "Are you sure you want to mark this order as paid?" msgstr "" -#. [src.collections.views.1348793822] +#. [src.collections.views.CollectionList.1348793822] #. defaultMessage is: #. Are you sure you want to publish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to publish {counter,plural,one{this collection} " @@ -1156,30 +1093,6 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.orders.components.OrderDraftCancelDialog.3199827590] -#. defaultMessage is: -#. Are you sure you want to remove draft #{number}? -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "description" -msgid "Are you sure you want to remove draft #{number}?" -msgstr "" - -#. [src.products.views.672103788] -#. defaultMessage is: -#. Are you sure you want to remove this image? -#: build/locale/src/products/views/ProductImage.json -msgctxt "description" -msgid "Are you sure you want to remove this image?" -msgstr "" - -#. [src.shipping.views.ShippingZoneDetails.1790261672] - unassign country -#. defaultMessage is: -#. Are you sure you want to remove {countryName} from this shipping zone? -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country" -msgid "Are you sure you want to remove {countryName} from this shipping zone?" -msgstr "" - #. [src.staff.views.3945766678] #. defaultMessage is: #. Are you sure you want to remove {email} avatar? @@ -1188,14 +1101,6 @@ msgctxt "description" msgid "Are you sure you want to remove {email} avatar?" msgstr "" -#. [src.staff.views.2728048444] -#. defaultMessage is: -#. Are you sure you want to remove {email} from staff members? -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "description" -msgid "Are you sure you want to remove {email} from staff members?" -msgstr "" - #. [src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450] #. defaultMessage is: #. Are you sure you want to unassign {attributeName} from {productTypeName}? @@ -1276,11 +1181,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.3944356444] +#. [src.collections.views.CollectionList.3944356444] #. defaultMessage is: #. Are you sure you want to unpublish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to unpublish {counter,plural,one{this collection} " @@ -1441,6 +1346,15 @@ msgctxt "button" msgid "Assign products" msgstr "" +#. [src.attributes.components.AttributeValues.351422234] - assign attribute +#. value button +#. defaultMessage is: +#. Assign value +#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json +msgctxt "assign attribute value button" +msgid "Assign value" +msgstr "" + #. [src.attributes.components.AttributeDetails.3605174225] - attribute's slug #. short code label #. defaultMessage is: @@ -1519,6 +1433,14 @@ msgctxt "product attributes, section header" msgid "Attributes" msgstr "Atribute" +#. [src.configuration.2326418019] +#. defaultMessage is: +#. Attributes and Product Typess +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Attributes and Product Typess" +msgstr "" + #. [src.attributes.views.AttributeList.3218248395] - deleted multiple #. attributes #. defaultMessage is: @@ -2302,6 +2224,22 @@ msgctxt "description" msgid "Country area" msgstr "" +#. [menuCreateDialogHeader] - dialog header +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json +msgctxt "dialog header" +msgid "Create Menu" +msgstr "" + +#. [menuListPageAddMenu] - button +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json +msgctxt "button" +msgid "Create Menu" +msgstr "" + #. [src.attributes.components.AttributePage.2855501559] - page title #. defaultMessage is: #. Create New Attribute @@ -2326,6 +2264,30 @@ msgctxt "header" msgid "Create New Shipping Zone" msgstr "" +#. [src.pages.components.PageDetailsPage.1068617485] - page header +#. defaultMessage is: +#. Create Page +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page header" +msgid "Create Page" +msgstr "" + +#. [src.orders.components.OrderProductAddDialog.1542417144] - dialog header +#. defaultMessage is: +#. Create Product +#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json +msgctxt "dialog header" +msgid "Create Product" +msgstr "" + +#. [src.products.components.ProductListPage.1542417144] - button +#. defaultMessage is: +#. Create Product +#: build/locale/src/products/components/ProductListPage/ProductListPage.json +msgctxt "button" +msgid "Create Product" +msgstr "" + #. [src.products.views.1542417144] - window title #. defaultMessage is: #. Create Product @@ -2358,11 +2320,19 @@ msgctxt "page header" msgid "Create Sale" msgstr "" -#. [src.products.views.2362587265] - window title +#. [src.discounts.components.SaleListPage.3866518732] - button +#. defaultMessage is: +#. Create Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "button" +msgid "Create Sale" +msgstr "" + +#. [src.products.views.2362587265] - header #. defaultMessage is: #. Create Variant #: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "window title" +msgctxt "header" msgid "Create Variant" msgstr "" @@ -2374,6 +2344,22 @@ msgctxt "page header" msgid "Create Voucher" msgstr "" +#. [src.attributes.components.AttributeListPage.3824684885] - button +#. defaultMessage is: +#. Create attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "button" +msgid "Create attribute" +msgstr "" + +#. [src.categories.components.CategoryListPage.1140231710] - button +#. defaultMessage is: +#. Create category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "button" +msgid "Create category" +msgstr "" + #. [src.categories.views.1140231710] - window title #. defaultMessage is: #. Create category @@ -2382,6 +2368,14 @@ msgctxt "window title" msgid "Create category" msgstr "" +#. [src.collections.components.CollectionListPage.686910896] - button +#. defaultMessage is: +#. Create collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "button" +msgid "Create collection" +msgstr "" + #. [src.collections.views.686910896] - window title #. defaultMessage is: #. Create collection @@ -2398,6 +2392,14 @@ msgctxt "window title" msgid "Create customer" msgstr "" +#. [menuItemsAddItem] - add new menu item +#. defaultMessage is: +#. Create new item +#: build/locale/src/navigation/components/MenuItems/MenuItems.json +msgctxt "add new menu item" +msgid "Create new item" +msgstr "" + #. [src.orders.components.OrderDraftListPage.2826235371] - button #. defaultMessage is: #. Create order @@ -2410,6 +2412,14 @@ msgctxt "button" msgid "Create order" msgstr "Crează comandă" +#. [src.pages.components.PageListPage.3785394515] - button +#. defaultMessage is: +#. Create page +#: build/locale/src/pages/components/PageListPage/PageListPage.json +msgctxt "button" +msgid "Create page" +msgstr "" + #. [src.pages.views.3785394515] - header #. defaultMessage is: #. Create page @@ -2421,11 +2431,55 @@ msgstr "" #. [src.shipping.components.ShippingZoneRateDialog.16061680] - button #. defaultMessage is: #. Create rate +#. [src.shipping.components.ShippingZoneRates.16061680] - button +#. defaultMessage is: +#. Create rate #: build/locale/src/shipping/components/ShippingZoneRateDialog/ShippingZoneRateDialog.json +#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json msgctxt "button" msgid "Create rate" msgstr "" +#. [src.shipping.components.ShippingZonesList.2673544109] - button +#. defaultMessage is: +#. Create shipping zone +#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json +msgctxt "button" +msgid "Create shipping zone" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.770296100] - button +#. defaultMessage is: +#. Create subcategory +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json +msgctxt "button" +msgid "Create subcategory" +msgstr "" + +#. [src.products.components.ProductVariants.3989383405] - button +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/components/ProductVariants/ProductVariants.json +msgctxt "button" +msgid "Create variant" +msgstr "" + +#. [src.products.views.3989383405] - window title +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/views/ProductVariantCreate.json +msgctxt "window title" +msgid "Create variant" +msgstr "" + +#. [src.discounts.components.VoucherListPage.614836274] - button +#. defaultMessage is: +#. Create voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "button" +msgid "Create voucher" +msgstr "" + #. [src.collections.views.1597339737] #. defaultMessage is: #. Created collection @@ -2472,7 +2526,11 @@ msgstr "" #. [src.components.FilterBar.2340527467] #. defaultMessage is: #. Custom Filter +#. [src.components.SearchBar.2340527467] +#. defaultMessage is: +#. Custom Filter #: build/locale/src/components/FilterBar/FilterBar.json +#: build/locale/src/components/SearchBar/SearchBar.json msgctxt "description" msgid "Custom Filter" msgstr "" @@ -2728,10 +2786,18 @@ msgctxt "dialog title" msgid "Delete Collection" msgstr "" -#. [src.orders.views.1161115149] - dialog header +#. [src.products.views.1731766393] - dialog header +#. defaultMessage is: +#. Delete Image +#: build/locale/src/products/views/ProductImage.json +msgctxt "dialog header" +msgid "Delete Image" +msgstr "" + +#. [src.orders.views.OrderDraftList.1161115149] - dialog header #. defaultMessage is: #. Delete Order Drafts -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog header" msgid "Delete Order Drafts" msgstr "" @@ -2769,10 +2835,10 @@ msgctxt "dialog header" msgid "Delete Product Type" msgstr "" -#. [src.productTypes.views.4080551769] - dialog header +#. [src.productTypes.views.ProductTypeList.4080551769] - dialog header #. defaultMessage is: #. Delete Product Types -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog header" msgid "Delete Product Types" msgstr "" @@ -2801,10 +2867,10 @@ msgctxt "dialog header" msgid "Delete Sale" msgstr "" -#. [src.discounts.views.2809303671] - dialog header +#. [src.discounts.views.SaleList.2809303671] - dialog header #. defaultMessage is: #. Delete Sales -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog header" msgid "Delete Sales" msgstr "" @@ -2818,9 +2884,13 @@ msgctxt "custom search delete, dialog header" msgid "Delete Search" msgstr "" +#. [src.components.Filter.2173195312] - button +#. defaultMessage is: +#. Delete Search #. [src.components.TableFilter.2173195312] - button #. defaultMessage is: #. Delete Search +#: build/locale/src/components/Filter/FilterSearch.json #: build/locale/src/components/TableFilter/FilterChips.json msgctxt "button" msgid "Delete Search" @@ -2887,10 +2957,10 @@ msgctxt "dialog header" msgid "Delete Voucher" msgstr "" -#. [src.discounts.views.367317371] - dialog header +#. [src.discounts.views.VoucherList.367317371] - dialog header #. defaultMessage is: #. Delete Vouchers -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog header" msgid "Delete Vouchers" msgstr "" @@ -2924,11 +2994,11 @@ msgstr "" #. [src.categories.views.712767046] - dialog title #. defaultMessage is: #. Delete categories -#. [src.categories.views.712767046] - dialog title +#. [src.categories.views.CategoryList.712767046] - dialog title #. defaultMessage is: #. Delete categories #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "dialog title" msgid "Delete categories" msgstr "" @@ -2945,10 +3015,10 @@ msgctxt "dialog title" msgid "Delete category" msgstr "" -#. [src.collections.views.3817188998] - dialog title +#. [src.collections.views.CollectionList.3817188998] - dialog title #. defaultMessage is: #. Delete collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Delete collections" msgstr "" @@ -2961,14 +3031,31 @@ msgctxt "dialog header" msgid "Delete customer" msgstr "" -#. [src.customers.views.1946482599] - dialog header +#. [src.customers.views.CustomerList.1946482599] - dialog header #. defaultMessage is: #. Delete customers -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "dialog header" msgid "Delete customers" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.632633254] - dialog header +#. defaultMessage is: +#. Delete draft order +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "dialog header" +msgid "Delete draft order" +msgstr "" + +#. [src.shipping.views.ShippingZoneDetails.1947090060] - unassign country, +#. dialog header +#. defaultMessage is: +#. Delete from shipping zone +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country, dialog header" +msgid "Delete from shipping zone" +msgstr "" + #. [src.collections.views.942133001] - dialog title #. defaultMessage is: #. Delete image @@ -3029,6 +3116,14 @@ msgctxt "description" msgid "Deleted collection" msgstr "Colecție ștearsă" +#. [src.orders.views.OrderDraftList.1648805446] +#. defaultMessage is: +#. Deleted draft orders +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json +msgctxt "description" +msgid "Deleted draft orders" +msgstr "" + #. [menuListDeletedMenu] #. defaultMessage is: #. Deleted menu @@ -3628,14 +3723,6 @@ msgctxt "order history message" msgid "Fulfilled {quantity} items" msgstr "" -#. [src.orders.components.OrderListFilter.2943502192] - order -#. defaultMessage is: -#. Fulfillment Status -#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json -msgctxt "order" -msgid "Fulfillment Status" -msgstr "" - #. [src.orders.components.OrderHistory.3081292385] - order history message #. defaultMessage is: #. Fulfillment confirmation was sent to customer @@ -3792,12 +3879,12 @@ msgctxt "description" msgid "If empty, the preview shows what will be autogenerated." msgstr "Dacă este gol, previzualizarea arată ce va fi generat în mod automat." -#. [src.attributes.components.AttributeProperties.2519239682] +#. [src.attributes.components.AttributeProperties.4048785456] #. defaultMessage is: -#. If enable this attribute can be used as a column in product table. +#. If enabled this attribute can be used as a column in product table. #: build/locale/src/attributes/components/AttributeProperties/AttributeProperties.json msgctxt "description" -msgid "If enable this attribute can be used as a column in product table." +msgid "If enabled this attribute can be used as a column in product table." msgstr "" #. [src.attributes.components.AttributeProperties.787251583] @@ -3903,6 +3990,22 @@ msgctxt "product variant stock" msgid "Inventory" msgstr "Inventar" +#. [src.staff.components.StaffAddMemberDialog.1481503299] - dialog header +#. defaultMessage is: +#. Invite Staff Member +#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json +msgctxt "dialog header" +msgid "Invite Staff Member" +msgstr "" + +#. [src.staff.components.StaffListPage.797461521] - button +#. defaultMessage is: +#. Invite staff member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "button" +msgid "Invite staff member" +msgstr "" + #. [src.productTypes.components.ProductTypeShipping.2143413921] - switch #. button #. defaultMessage is: @@ -4255,6 +4358,14 @@ msgctxt "voucher requirement" msgid "Minimum quantity of items" msgstr "" +#. [src.configuration.1233229030] +#. defaultMessage is: +#. Miscellaneous +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Miscellaneous" +msgstr "" + #. [src.attributes.components.AttributeDetails.3334509011] - product attribute #. type #. defaultMessage is: @@ -5087,6 +5198,14 @@ msgctxt "description" msgid "Order History" msgstr "" +#. [src.orders.components.OrderListFilter.2222765704] +#. defaultMessage is: +#. Order Status +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +msgctxt "description" +msgid "Order Status" +msgstr "" + #. [src.orders.components.OrderHistory.1230178536] - order history message #. defaultMessage is: #. Order address was updated @@ -5103,13 +5222,13 @@ msgctxt "order history message" msgid "Order confirmation was sent to customer" msgstr "" -#. [src.orders.views.1872939752] +#. [src.orders.views.OrderDraftList.1872939752] #. defaultMessage is: #. Order draft succesfully created #. [src.orders.views.OrderList.1872939752] #. defaultMessage is: #. Order draft succesfully created -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json #: build/locale/src/orders/views/OrderList/OrderList.json msgctxt "description" msgid "Order draft succesfully created" @@ -5774,6 +5893,14 @@ msgctxt "description" msgid "Product Name" msgstr "" +#. [src.configuration.3655543906] +#. defaultMessage is: +#. Product Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Product Settings" +msgstr "" + #. [src.discounts.components.DiscountProducts.4257289053] #. defaultMessage is: #. Product Type @@ -5932,12 +6059,12 @@ msgctxt "order history message" msgid "Products were added to draft order" msgstr "" -#. [src.orders.components.OrderHistory.2574162126] - order history message +#. [src.orders.components.OrderHistory.4067959693] - order history message #. defaultMessage is: -#. Products were removed from draft order +#. Products were deleted from draft order #: build/locale/src/orders/components/OrderHistory/OrderHistory.json msgctxt "order history message" -msgid "Products were removed from draft order" +msgid "Products were deleted from draft order" msgstr "" #. [src.properties] @@ -5964,10 +6091,10 @@ msgctxt "description" msgid "Provided email address does not exist in our database." msgstr "" -#. [src.collections.views.1547167026] - publish collections +#. [src.collections.views.CollectionList.1547167026] - publish collections #. defaultMessage is: #. Publish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "publish collections" msgid "Publish" msgstr "Publică" @@ -6004,10 +6131,10 @@ msgctxt "dialog header" msgid "Publish Products" msgstr "" -#. [src.collections.views.2823425739] - dialog title +#. [src.collections.views.CollectionList.2823425739] - dialog title #. defaultMessage is: #. Publish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Publish collections" msgstr "" @@ -6181,6 +6308,18 @@ msgctxt "shipping method price" msgid "Rate Price" msgstr "" +#. [src.orders.components.OrderListFilter.2415661583] - order status +#. defaultMessage is: +#. Ready to Capture +#. [src.orders.views.OrderList.readyToCapture] - order status +#. defaultMessage is: +#. Ready to Capture +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +#: build/locale/src/orders/views/OrderList/filters.json +msgctxt "order status" +msgid "Ready to Capture" +msgstr "" + #. [src.customers.components.CustomerOrders.3878642352] - section header #. defaultMessage is: #. Recent orders @@ -6229,22 +6368,14 @@ msgctxt "switch button" msgid "Release all stock allocated to this order" msgstr "" -#. [src.auth.components.LoginPage.3182284913] - login -#. defaultMessage is: -#. Remember me -#: build/locale/src/auth/components/LoginPage/LoginPage.json -msgctxt "login" -msgid "Remember me" -msgstr "" - #. [src.categories.views.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. -#. [src.categories.views.3488150607] +#. [src.categories.views.CategoryList.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "description" msgid "Remember this will also delete all products assigned to this category." msgstr "" @@ -6257,39 +6388,6 @@ msgctxt "button" msgid "Remove" msgstr "Elimină" -#. [src.products.views.490753666] - dialog header -#. defaultMessage is: -#. Remove Image -#: build/locale/src/products/views/ProductImage.json -msgctxt "dialog header" -msgid "Remove Image" -msgstr "" - -#. [src.orders.components.OrderDraftCancelDialog.500287069] - dialog header -#. defaultMessage is: -#. Remove draft order -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "dialog header" -msgid "Remove draft order" -msgstr "Elimină comanda de proiect" - -#. [src.shipping.views.ShippingZoneDetails.254167659] - unassign country, -#. dialog header -#. defaultMessage is: -#. Remove from shipping zone -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country, dialog header" -msgid "Remove from shipping zone" -msgstr "" - -#. [src.orders.views.3880993240] -#. defaultMessage is: -#. Removed draft orders -#: build/locale/src/orders/views/OrderDraftList.json -msgctxt "description" -msgid "Removed draft orders" -msgstr "" - #. [src.pages.views.1457312643] #. defaultMessage is: #. Removed page @@ -6455,6 +6553,18 @@ msgctxt "button" msgid "Save" msgstr "Salvează" +#. [src.components.Filter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#. [src.components.TableFilter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#: build/locale/src/components/Filter/FilterSearch.json +#: build/locale/src/components/TableFilter/FilterChips.json +msgctxt "button" +msgid "Save Custom Search" +msgstr "" + #. [src.components.SaveFilterTabDialog.1514415736] - save filter tab, header #. defaultMessage is: #. Save Custom Search @@ -6463,14 +6573,6 @@ msgctxt "save filter tab, header" msgid "Save Custom Search" msgstr "" -#. [src.components.TableFilter.1514415736] - button -#. defaultMessage is: -#. Save Custom Search -#: build/locale/src/components/TableFilter/FilterChips.json -msgctxt "button" -msgid "Save Custom Search" -msgstr "" - #. [src.products.components.ProductVariantCreatePage.2853608829] - button #. defaultMessage is: #. Save variant @@ -6487,6 +6589,14 @@ msgctxt "description" msgid "Saved changes" msgstr "" +#. [src.attributes.components.AttributeListPage.3916653510] +#. defaultMessage is: +#. Search Attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "description" +msgid "Search Attribute" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.902296540] #. defaultMessage is: #. Search Attributes @@ -6503,10 +6613,30 @@ msgctxt "description" msgid "Search Categories" msgstr "" +#. [src.categories.components.CategoryListPage.3841025483] +#. defaultMessage is: +#. Search Category +#. [src.translations.components.TranslationsEntitiesListPage.3841025483] +#. defaultMessage is: +#. Search Category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Category" +msgstr "" + +#. [src.collections.components.CollectionListPage.4057224233] +#. defaultMessage is: +#. Search Collection #. [src.components.AssignCollectionDialog.4057224233] #. defaultMessage is: #. Search Collection +#. [src.translations.components.TranslationsEntitiesListPage.4057224233] +#. defaultMessage is: +#. Search Collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json #: build/locale/src/components/AssignCollectionDialog/AssignCollectionDialog.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json msgctxt "description" msgid "Search Collection" msgstr "" @@ -6519,6 +6649,14 @@ msgctxt "description" msgid "Search Countries" msgstr "" +#. [src.customers.components.CustomerListPage.1643417013] +#. defaultMessage is: +#. Search Customer +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "description" +msgid "Search Customer" +msgstr "" + #. [src.orders.components.OrderCustomer.2433460203] #. defaultMessage is: #. Search Customers @@ -6527,6 +6665,14 @@ msgctxt "description" msgid "Search Customers" msgstr "" +#. [src.orders.components.OrderDraftListPage.77765281] +#. defaultMessage is: +#. Search Draft +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "description" +msgid "Search Draft" +msgstr "" + #. [src.translations.components.TranslationsCategoriesPage.1406947243] #. defaultMessage is: #. Search Engine Description @@ -6607,6 +6753,34 @@ msgctxt "description" msgid "Search Orders..." msgstr "" +#. [src.translations.components.TranslationsEntitiesListPage.2559018090] +#. defaultMessage is: +#. Search Page +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Page" +msgstr "" + +#. [src.translations.components.TranslationsEntitiesListPage.2105464697] +#. defaultMessage is: +#. Search Product +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product" +msgstr "" + +#. [src.productTypes.components.ProductTypeListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#. [src.translations.components.TranslationsEntitiesListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product Type" +msgstr "" + #. [src.components.AssignProductDialog.2850255786] #. defaultMessage is: #. Search Products @@ -6619,14 +6793,46 @@ msgctxt "description" msgid "Search Products" msgstr "" -#. [src.products.components.ProductListPage.3550330425] +#. [src.products.components.ProductListFilter.3550330425] #. defaultMessage is: #. Search Products... -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Search Products..." msgstr "" +#. [src.discounts.components.SaleListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#. [src.translations.components.TranslationsEntitiesListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Sale" +msgstr "" + +#. [src.staff.components.StaffListPage.61043583] +#. defaultMessage is: +#. Search Staff Member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "description" +msgid "Search Staff Member" +msgstr "" + +#. [src.discounts.components.VoucherListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#. [src.translations.components.TranslationsEntitiesListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Voucher" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.524117994] #. defaultMessage is: #. Search by attribute name @@ -6733,10 +6939,10 @@ msgctxt "description" msgid "Select all orders where:" msgstr "" -#. [src.products.components.ProductListPage.1421689426] +#. [src.products.components.ProductListFilter.1421689426] #. defaultMessage is: #. Select all products where: -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Select all products where:" msgstr "" @@ -6822,6 +7028,14 @@ msgctxt "description" msgid "Set plugin as Active" msgstr "" +#. [src.components.VisibilityCard.292404896] +#. defaultMessage is: +#. Set publication date +#: build/locale/src/components/VisibilityCard/VisibilityCard.json +msgctxt "description" +msgid "Set publication date" +msgstr "" + #. [src.discounts.shipment] - voucher discount #. defaultMessage is: #. Shipment @@ -7087,6 +7301,14 @@ msgctxt "staff section name" msgid "Staff Members" msgstr "" +#. [src.configuration.3140151600] +#. defaultMessage is: +#. Staff Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Staff Settings" +msgstr "" + #. [src.standard] - tax rate #. defaultMessage is: #. Standard @@ -8071,10 +8293,10 @@ msgctxt "payment status" msgid "Unpaid" msgstr "" -#. [src.collections.views.2237014112] - unpublish collections +#. [src.collections.views.CollectionList.2237014112] - unpublish collections #. defaultMessage is: #. Unpublish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "unpublish collections" msgid "Unpublish" msgstr "Anulați publicarea" @@ -8111,10 +8333,10 @@ msgctxt "dialog header" msgid "Unpublish Products" msgstr "" -#. [src.collections.views.2637364047] - dialog title +#. [src.collections.views.CollectionList.2637364047] - dialog title #. defaultMessage is: #. Unpublish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Unpublish collections" msgstr "" @@ -8614,6 +8836,22 @@ msgctxt "description" msgid "ZIP / Postal code" msgstr "" +#. [src.productTypes.components.ProductTypeListPage.3479705616] - button +#. defaultMessage is: +#. create product type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "button" +msgid "create product type" +msgstr "" + +#. [src.staff.views.1308770978] - dialog header +#. defaultMessage is: +#. delete Staff User +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "dialog header" +msgid "delete Staff User" +msgstr "" + #. [orderPaymentVATDoesNotApply] - vat not included in order price #. defaultMessage is: #. does not apply @@ -8687,19 +8925,35 @@ msgctxt "product status is set as" msgid "is set as" msgstr "" -#. [src.staff.views.2240444792] - dialog header -#. defaultMessage is: -#. remove Staff User -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "dialog header" -msgid "remove Staff User" -msgstr "" - -#. [src.components.VisibilityCard.1815688500] +#. [src.collections.components.CollectionCreatePage.1815688500] - collection #. defaultMessage is: #. since {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.1815688500] - collection +#. defaultMessage is: +#. since {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "since {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.1815688500] - page +#. defaultMessage is: +#. since {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "since {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#. [src.products.components.ProductUpdatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "since {date}" msgstr "" @@ -8727,11 +8981,35 @@ msgctxt "weight" msgid "to {value} {unit}" msgstr "" -#. [src.components.VisibilityCard.2001551496] +#. [src.collections.components.CollectionCreatePage.2001551496] - collection #. defaultMessage is: #. will be visible from {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.2001551496] - collection +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "will be visible from {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.2001551496] - page +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "will be visible from {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#. [src.products.components.ProductUpdatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "will be visible from {date}" msgstr "" diff --git a/locale/ru.json b/locale/ru.json index c3dceaa1d..834718ef6 100644 --- a/locale/ru.json +++ b/locale/ru.json @@ -1 +1 @@ -{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"Удалить атрибут","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.350498821":"Добавить атрибут","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.2519239682":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"Название","src.categories.components.CategoryProducts.636461959":"Название","src.collections.components.CollectionProducts.636461959":"Название","src.products.components.ProductDetailsForm.636461959":"Название","src.collections.components.CollectionDetails.636461959":"Название","src.components.ProductList.636461959":"Название","src.discounts.components.SaleInfo.636461959":"Название","src.discounts.components.SaleList.636461959":"Название","src.discounts.components.SaleSummary.636461959":"Название","menuItemDialogNameLabel":"Название","src.products.components.ProductVariants.636461959":"Название","src.shipping.components.ShippingZoneRates.636461959":"Название","src.shipping.components.ShippingZonesList.636461959":"Название","src.staff.components.StaffList.636461959":"Название","src.translations.components.TranslationsEntitiesList.636461959":"Название","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.254756045":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.3182284913":"","src.auth.components.LoginPage.109182747":"Войти","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"Удалить категорию","src.categories.views.2004894945":"Удалить категорию","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.3229914152":"","src.categories.components.CategoryList.435697837":"","src.categories.components.CategoryList.2159874182":"Подкатегории","src.categories.components.CategoryUpdatePage.2159874182":"Подкатегории","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.228151782":"Добавить категорию","src.categories.components.CategoryProducts.2968663655":"Продукты","src.categories.components.CategoryUpdatePage.2968663655":"Продукты","src.discounts.components.DiscountCategories.2968663655":"Продукты","src.discounts.components.DiscountCollections.2968663655":"Продукты","src.products":"Продукты","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryProducts.3554578821":"Добавить товар","src.categories.components.CategoryProductsCard.3554578821":"Добавить товар","src.categories.components.CategoryProducts.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProducts.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.categories.components.CategoryProductsCard.4164156574":"","src.categories.views.1754466114":"","src.categories.views.1140231710":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.712767046":"","src.categories.views.299584400":"","src.categories.views.844574071":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.collections.components.CollectionCreatePage.3958681866":"Добавить коллекцию","src.collections.components.CollectionListPage.3958681866":"Добавить коллекцию","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"Доступность","src.availability":"","src.collections.components.CollectionList.3640454975":"Опубликовано","src.collections.components.CollectionProducts.3640454975":"Опубликовано","src.discounts.components.DiscountProducts.3640454975":"Опубликовано","src.components.ProductList.3640454975":"Опубликовано","src.products.components.ProductListPage.3640454975":"Опубликовано","src.pages.components.PageList.3640454975":"Опубликовано","src.products.views.ProductList.published":"Опубликовано","src.collections.components.CollectionList.2341910657":"Не опубликован","src.collections.components.CollectionProducts.2341910657":"Не опубликован","src.discounts.components.DiscountProducts.2341910657":"Не опубликован","src.components.ProductList.2341910657":"Не опубликован","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.686910896":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"Удалить изображение","src.collections.views.2402899582":"","src.collections.views.2237014112":"Убрать с публикации","src.pages.views.2237014112":"Убрать с публикации","src.products.views.ProductList.2237014112":"Убрать с публикации","src.collections.views.1547167026":"Опубликовать","src.pages.views.1547167026":"Опубликовать","src.products.views.ProductList.1547167026":"Опубликовать","src.collections.views.2823425739":"","src.collections.views.1348793822":"","src.collections.views.2637364047":"","src.collections.views.3944356444":"","src.collections.views.3817188998":"","src.collections.views.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"Выйти","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.4057224233":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"Ошибка","src.components.ErrorMessageCard.2845142593":"Ошибка","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.FilterBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"Добавить","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.ProductList.1134347598":"Цена","src.orders.components.OrderDraftDetailsProducts.1134347598":"Цена","src.orders.components.OrderFulfillment.1134347598":"Цена","src.products.components.ProductListPage.1134347598":"Цена","src.products.components.ProductPricing.1134347598":"Цена","src.orders.components.OrderUnfulfilledItems.1134347598":"Цена","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"Цена","src.shipping.components.ShippingZoneRates.1134347598":"Цена","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"Видимость","src.pages.components.PageList.1459686496":"Видимость","src.products.components.ProductListFilter.1459686496":"Видимость","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"Скрыто","src.products.views.ProductList.hidden":"Скрыто","src.components.VisibilityCard.1815688500":"","src.components.VisibilityCard.2001551496":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","configurationMenuStaff":"","configurationMenuShipping":"","configurationMenuTaxes":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","src.customers.components.CustomerAddress.1320082647":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"Платежный адрес","src.customers.components.CustomerAddresses.3517722732":"Адрес доставки","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"Адрес","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"Заметки","src.orders.components.OrderCustomerNote.1520756907":"Заметки","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"Заметка","src.customers.components.CustomerDetails.577013340":"Заметка","src.customers.components.CustomerCreatePage.1934221653":"Добавить покупателя","src.customers.components.CustomerListPage.1934221653":"Добавить покупателя","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerOrders.3878642352":"Недавние заказы","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"Дата","src.orders.components.OrderDraftList.4205493358":"Дата","src.orders.components.OrderList.4205493358":"Дата","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"Статус","src.orders.components.OrderListFilter.1756106276":"Статус","src.products.components.ProductListFilter.1756106276":"Статус","src.products.components.ProductVariants.1756106276":"Статус","src.customers.components.CustomerOrders.878013594":"Сумма","src.orders.components.OrderDraftDetailsProducts.878013594":"Сумма","src.orders.components.OrderDraftDetailsSummary.878013594":"Сумма","src.orders.components.OrderDraftList.878013594":"Сумма","src.orders.components.OrderFulfillment.878013594":"Сумма","src.orders.components.OrderUnfulfilledItems.878013594":"Сумма","src.orders.components.OrderList.878013594":"Сумма","src.orders.components.OrderPayment.878013594":"Сумма","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"Удалить адрес","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.1946482599":"","src.customers.views.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"размер","src.discounts.components.SaleSummary.1148029984":"размер","src.discounts.components.VoucherList.1148029984":"размер","src.discounts.components.VoucherSummary.1148029984":"размер","src.discounts.components.VoucherValue.1148029984":"размер","src.products.components.ProductAttributes.1148029984":"размер","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.1742771332":"","src.discounts.components.SalePricing.1099355007":"Ценообразование","src.products.components.ProductPricing.1099355007":"Ценообразование","src.products.components.ProductVariantPrice.1099355007":"Ценообразование","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"Страны","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"код","src.discounts.components.VoucherSummary.78726751":"код","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.1536809153":"Добавить купон","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"Конкретный товар","src.discounts.shipment":"Доставка","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.2809303671":"","src.discounts.views.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.367317371":"","src.discounts.views.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"Отмена","src.orders.views.OrderList.3528672691":"Отмена","src.confirm":"","src.delete":"Удалить","src.edit":"Редактировать","src.manage":"","src.remove":"Удалить","src.save":"Сохранить","src.show":"","src.undo":"","src.attributes":"Атрибуты","src.products.components.ProductAttributes.4153345096":"Атрибуты","src.categories":"Категории","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"Коллекции","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"Настройки","src.customers":"Покупатели","src.draftOrders":"","src.home":"Главная","src.navigation":"Навигация","src.orders":"Заказы","src.pages":"Страницы","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"Продажи","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"Налоги","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"Налоги","src.taxes.components.CountryListPage.3955023266":"Налоги","src.translations":"","src.vouchers":"Купоны","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"Оплачен","src.partiallyPaid":"","src.partiallyRefunded":"Частично возмещен","src.refunded":"Возмещено полностью","src.unpaid":"","src.cancelled":"Отменен","src.draft":"Черновик","src.fulfilled":"Исполнен","src.orders.views.OrderList.fulfilled":"Исполнен","src.orders.components.OrderListFilter.1712863026":"Исполнен","src.partiallyFulfilled":"Частично исполнен","src.unfulfilled":"Не исполненный","src.orders.views.OrderList.unfulfilled":"Не исполненный","src.orders.components.OrderListFilter.1751787272":"Не исполненный","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","src.1395232177":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"Ссылка","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"Редактировать адрес платежа","src.orders.components.OrderAddressEditDialog.462765358":"Редактировать адрес доставки","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"Отменить заказ","src.orders.components.OrderDetailsPage.1854613983":"Отменить заказ","src.orders.components.OrderDraftPage.1854613983":"Отменить заказ","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"Покупатель","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"Покупатель","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"Такой же как и адрес доставки","src.orders.components.OrderCustomerEditDialog.1411666943":"Изменить данные покупателя","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.500287069":"Удалить черновик заказа","src.orders.components.OrderDraftCancelDialog.3199827590":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"Продукт","src.orders.components.OrderUnfulfilledItems.1895667608":"Продукт","src.orders.components.OrderDraftDetailsProducts.2796503714":"Количество","src.orders.components.OrderFulfillment.2796503714":"Количество","src.orders.components.OrderFulfillmentDialog.2796503714":"Количество","src.orders.components.OrderUnfulfilledItems.2796503714":"Количество","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"Промежуточный итог","src.orders.components.OrderPayment.781550514":"Промежуточный итог","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"Создать заказ","src.orders.components.OrderListPage.2826235371":"Создать заказ","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"Добавить отслеживание","src.orders.components.OrderFulfillmentCancelDialog.732594284":"Отменить пополнение","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"Отменить пополнение","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"Единица складского учёта","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"номер отслеживания","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.2574162126":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"Заказ был полностью оплачен","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"Заказ размещен","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"Платеж","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2943502192":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"Доставка","src.productTypes.components.ProductTypeShipping.1325966144":"Доставка","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"Доставка","src.orders.components.OrderPayment.3768782744":"Авторизованное число","src.orders.components.OrderPayment.2320183694":"Зафиксированное число","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"Зафиксировано","src.orders.components.OrderPayment.2845258362":"Возврат","src.orders.components.OrderPayment.2444197639":"Отменить","src.orders.components.OrderPayment.3500506678":"Отметить как оплаченное","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"Количество","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.2775402904":"","src.products.components.ProductListPage.2775402904":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"Пополнение","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.3880993240":"","src.orders.views.1161115149":"","src.orders.views.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.755314116":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"Заголовок","src.pages.components.PageList.1124600214":"Заголовок","src.pages.components.PageInfo.1116746286":"Содержимое","src.translations.components.TranslationsPagesPage.1116746286":"Содержимое","src.pages.components.PageList.3478065224":"ЧПУ","src.pages.components.PageSlug.3478065224":"ЧПУ","src.productTypes.components.ProductTypeAttributes.3478065224":"ЧПУ","src.pages.components.PageList.3767550649":"Не опубликовано","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.1767905232":"Добавить страницу","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.3785394515":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"Значения","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"Изображения","src.products.components.ProductVariantImages.3240888698":"Изображения","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"наличине","src.products.components.ProductVariantStock.3841616483":"наличине","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListPage.821159718":"","src.products.components.ProductListPage.1421689426":"","src.products.components.ProductListPage.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"Инвентарь","prodictStockInventoryLabel":"Инвентарь","src.products.components.ProductVariantStock.3490038570":"Инвентарь","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"Удалить вариант","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"Варианты","src.products.components.ProductVariants.2153006789":"Варианты","src.products.components.ProductVariantNavigation.2845381934":"Добавить вариант","src.products.components.ProductVariants.2845381934":"Добавить вариант","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1542417144":"","src.products.views.1591632382":"","src.products.views.490753666":"","src.products.views.672103788":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.1694086800":"","src.products.views.ProductList.224127438":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.products.views.2178905289":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1756957616":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.889729490":"Добавить тип продукта","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.4080551769":"","src.productTypes.views.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.352297149":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2474410767":"Добавить область доставки","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.254167659":"","src.shipping.views.ShippingZoneDetails.1790261672":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"Ключ","src.siteSettings.components.SiteSettingsKeys.2446088470":"Ключ","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.3490059488":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"Права доступа","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.3247064221":"активный","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.802625341":"Добавить сотрудника","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"Пользователь активен","src.staff.views.2240444792":"","src.staff.views.2728048444":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file +{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"Удалить атрибут","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.3824684885":"","src.attributes.components.AttributeListPage.2417065806":"","src.attributes.components.AttributeListPage.3916653510":"","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"Добавить как \"Опцию\"","src.attributes.components.AttributeProperties.4048785456":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"Добавить значение","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"Название","src.categories.components.CategoryProductList.636461959":"Название","src.components.ProductList.636461959":"Название","src.products.components.ProductList.636461959":"Название","src.collections.components.CollectionDetails.636461959":"Название","src.collections.components.CollectionProducts.636461959":"Название","src.products.components.ProductDetailsForm.636461959":"Название","src.discounts.components.SaleInfo.636461959":"Название","src.discounts.components.SaleList.636461959":"Название","src.discounts.components.SaleSummary.636461959":"Название","menuItemDialogNameLabel":"Название","src.plugins.components.PluginsList.636461959":"Название","src.products.components.ProductVariants.636461959":"Название","src.shipping.components.ShippingZoneRates.636461959":"Название","src.shipping.components.ShippingZonesList.636461959":"Название","src.staff.components.StaffList.636461959":"Название","src.translations.components.TranslationsEntitiesList.636461959":"Название","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.351422234":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"Значение с именем \"{name}\" уже существует.","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.109182747":"Войти","src.auth.components.LoginPage.4028609483":"","src.auth.components.NewPasswordPage.1915811227":"","src.auth.components.NewPasswordPage.1254879564":"","src.auth.components.NewPasswordPage.2799926859":"","src.auth.components.NewPasswordPage.4253911811":"","src.auth.components.NewPasswordPage.2342634351":"","src.auth.components.ResetPasswordPage.2370700732":"","src.auth.components.ResetPasswordPage.3663311080":"","src.auth.components.ResetPasswordSuccessPage.4066297200":"","src.auth.components.ResetPasswordSuccessPage.2245157344":"","src.auth.views.2388238158":"","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"(Опционально)","src.collections.components.CollectionImage.3289097895":"(Опционально)","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"Удалить категорию","src.categories.views.2004894945":"Удалить категорию","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.2159874182":"Подкатегории","src.categories.components.CategoryUpdatePage.2159874182":"Подкатегории","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.1140231710":"","src.categories.views.1140231710":"","src.categories.components.CategoryListPage.4294878092":"","src.categories.components.CategoryListPage.3841025483":"","src.translations.components.TranslationsEntitiesListPage.3841025483":"","src.categories.components.CategoryProductList.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductList.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProductList.3640454975":"Опубликовано","src.components.ProductList.3640454975":"Опубликовано","src.products.components.ProductList.3640454975":"Опубликовано","src.products.components.ProductListPage.3640454975":"Опубликовано","productStatusLabel":"Опубликовано","src.collections.components.CollectionList.3640454975":"Опубликовано","src.collections.components.CollectionProducts.3640454975":"Опубликовано","src.discounts.components.DiscountProducts.3640454975":"Опубликовано","src.pages.components.PageList.3640454975":"Опубликовано","src.products.views.ProductList.published":"Опубликовано","src.categories.components.CategoryProductList.1134347598":"Цена","src.orders.components.OrderFulfillment.1134347598":"Цена","src.products.components.ProductList.1134347598":"Цена","src.products.components.ProductListPage.1134347598":"Цена","src.products.components.ProductPricing.1134347598":"Цена","src.components.ProductList.1134347598":"Цена","src.orders.components.OrderDraftDetailsProducts.1134347598":"Цена","src.orders.components.OrderUnfulfilledItems.1134347598":"Цена","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"Цена","src.shipping.components.ShippingZoneRates.1134347598":"Цена","src.categories.components.CategoryProductList.2341910657":"Не опубликован","src.products.components.ProductList.2341910657":"Не опубликован","src.collections.components.CollectionList.2341910657":"Не опубликован","src.collections.components.CollectionProducts.2341910657":"Не опубликован","src.discounts.components.DiscountProducts.2341910657":"Не опубликован","src.components.ProductList.2341910657":"Не опубликован","src.categories.components.CategoryProductList.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.products.components.ProductList.1657559629":"","src.categories.components.CategoryProducts.4164156574":"","src.categories.components.CategoryProducts.3554578821":"Добавить товар","src.categories.components.CategoryUpdatePage.2968663655":"Продукты","src.discounts.components.DiscountCategories.2968663655":"Продукты","src.discounts.components.DiscountCollections.2968663655":"Продукты","src.products":"Продукты","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryUpdatePage.3229914152":"","src.categories.components.CategoryUpdatePage.770296100":"","src.categories.views.1754466114":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.CategoryList.3488150607":"","src.categories.views.712767046":"","src.categories.views.CategoryList.712767046":"","src.categories.views.299584400":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.categories.views.CategoryList.2144707585":"","src.collections.components.CollectionCreatePage.3958681866":"Добавить коллекцию","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionCreatePage.2001551496":"","src.collections.components.CollectionDetailsPage.2001551496":"","src.pages.components.PageDetailsPage.2001551496":"","src.products.components.ProductCreatePage.2001551496":"","src.products.components.ProductUpdatePage.2001551496":"","src.collections.components.CollectionCreatePage.1815688500":"","src.collections.components.CollectionDetailsPage.1815688500":"","src.pages.components.PageDetailsPage.1815688500":"","src.products.components.ProductCreatePage.1815688500":"","src.products.components.ProductUpdatePage.1815688500":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"Доступность","src.availability":"","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionListPage.686910896":"","src.collections.views.686910896":"","src.collections.components.CollectionListPage.1631917001":"","src.collections.components.CollectionListPage.4057224233":"","src.components.AssignCollectionDialog.4057224233":"","src.translations.components.TranslationsEntitiesListPage.4057224233":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"Удалить изображение","src.collections.views.2402899582":"","src.collections.views.CollectionList.2237014112":"Убрать с публикации","src.pages.views.2237014112":"Убрать с публикации","src.products.views.ProductList.2237014112":"Убрать с публикации","src.collections.views.CollectionList.1547167026":"Опубликовать","src.pages.views.1547167026":"Опубликовать","src.products.views.ProductList.1547167026":"Опубликовать","src.collections.views.CollectionList.2823425739":"","src.collections.views.CollectionList.1348793822":"","src.collections.views.CollectionList.2637364047":"","src.collections.views.CollectionList.3944356444":"","src.collections.views.CollectionList.3817188998":"","src.collections.views.CollectionList.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"Выйти","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"Ошибка","src.components.ErrorMessageCard.2845142593":"Ошибка","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.Filter.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"Добавить фильтр","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"Добавить фильтр","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.Filter.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.FilterBar.2340527467":"","src.components.SearchBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"Добавить","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"Добавить новое значение: {value}","src.components.SingleAutocompleteSelectField.1477537381":"Добавить новое значение: [value]","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"Добавить ссылку на изображение","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"Добавить или редактировать ссылку","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"Видимость","src.pages.components.PageList.1459686496":"Видимость","src.products.components.ProductListFilter.1459686496":"Видимость","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"Скрыто","src.products.views.ProductList.hidden":"Скрыто","src.components.VisibilityCard.292404896":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","src.configuration.2326418019":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","src.configuration.3655543906":"","configurationMenuShipping":"","configurationMenuTaxes":"","src.configuration.3140151600":"","configurationMenuStaff":"","src.configuration.1233229030":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","configurationPluginsPages":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"Добавить адрес","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"Платежный адрес","src.customers.components.CustomerAddresses.3517722732":"Адрес доставки","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"Адрес","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"Добавить адрес","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"Заметки","src.orders.components.OrderCustomerNote.1520756907":"Заметки","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"Заметка","src.customers.components.CustomerDetails.577013340":"Заметка","src.customers.components.CustomerCreatePage.1934221653":"Добавить покупателя","src.customers.components.CustomerListPage.1934221653":"Добавить покупателя","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerListPage.477293306":"","src.customers.components.CustomerListPage.1643417013":"","src.customers.components.CustomerOrders.3878642352":"Недавние заказы","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"Дата","src.orders.components.OrderDraftList.4205493358":"Дата","src.orders.components.OrderList.4205493358":"Дата","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"Статус","src.orders.components.OrderListFilter.1756106276":"Статус","src.plugins.components.PluginInfo.1756106276":"Статус","src.products.components.ProductListFilter.1756106276":"Статус","src.products.components.ProductVariants.1756106276":"Статус","src.customers.components.CustomerOrders.878013594":"Сумма","src.orders.components.OrderDraftDetailsProducts.878013594":"Сумма","src.orders.components.OrderDraftDetailsSummary.878013594":"Сумма","src.orders.components.OrderDraftList.878013594":"Сумма","src.orders.components.OrderFulfillment.878013594":"Сумма","src.orders.components.OrderUnfulfilledItems.878013594":"Сумма","src.orders.components.OrderList.878013594":"Сумма","src.orders.components.OrderPayment.878013594":"Сумма","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"Удалить адрес","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.CustomerList.1946482599":"","src.customers.views.CustomerList.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","src.discounts.components.SaleListPage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"размер","src.discounts.components.SaleSummary.1148029984":"размер","src.discounts.components.VoucherList.1148029984":"размер","src.discounts.components.VoucherSummary.1148029984":"размер","src.discounts.components.VoucherValue.1148029984":"размер","src.products.components.ProductAttributes.1148029984":"размер","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.3907768880":"","src.discounts.components.SaleListPage.1866913828":"","src.translations.components.TranslationsEntitiesListPage.1866913828":"","src.discounts.components.SalePricing.1099355007":"Ценообразование","src.products.components.ProductPricing.1099355007":"Ценообразование","src.products.components.ProductVariantPrice.1099355007":"Ценообразование","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"Время активности","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"Страны","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"код","src.discounts.components.VoucherSummary.78726751":"код","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.614836274":"","src.discounts.components.VoucherListPage.1112241061":"","src.discounts.components.VoucherListPage.1930485532":"","src.translations.components.TranslationsEntitiesListPage.1930485532":"","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"Конкретный товар","src.discounts.shipment":"Доставка","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.SaleList.2809303671":"","src.discounts.views.SaleList.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.VoucherList.367317371":"","src.discounts.views.VoucherList.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.somethingWentWrong":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"Отмена","src.orders.views.OrderList.3528672691":"Отмена","src.confirm":"","src.delete":"Удалить","src.edit":"Редактировать","src.manage":"","src.remove":"Удалить","src.save":"Сохранить","src.show":"","src.undo":"","src.attributes":"Атрибуты","src.products.components.ProductAttributes.4153345096":"Атрибуты","src.categories":"Категории","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"Коллекции","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"Настройки","src.customers":"Покупатели","src.draftOrders":"","src.home":"Главная","src.navigation":"Навигация","src.orders":"Заказы","src.pages":"Страницы","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.plugins":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"Продажи","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"Налоги","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"Налоги","src.taxes.components.CountryListPage.3955023266":"Налоги","src.translations":"","src.vouchers":"Купоны","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"Оплачен","src.partiallyPaid":"","src.partiallyRefunded":"Частично возмещен","src.refunded":"Возмещено полностью","src.unpaid":"","src.cancelled":"Отменен","src.draft":"Черновик","src.fulfilled":"Исполнен","src.orders.views.OrderList.fulfilled":"Исполнен","src.orders.components.OrderListFilter.1712863026":"Исполнен","src.partiallyFulfilled":"Частично исполнен","src.unfulfilled":"Не исполненный","src.orders.views.OrderList.unfulfilled":"Не исполненный","src.orders.components.OrderListFilter.1751787272":"Не исполненный","src.accommodation":"Кредит","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"Добавить пункт меню","menuItemDialogLinkLabel":"Ссылка","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"Редактировать адрес платежа","src.orders.components.OrderAddressEditDialog.462765358":"Редактировать адрес доставки","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"Отменить заказ","src.orders.components.OrderDetailsPage.1854613983":"Отменить заказ","src.orders.components.OrderDraftPage.1854613983":"Отменить заказ","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"Покупатель","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"Покупатель","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"Такой же как и адрес доставки","src.orders.components.OrderCustomerEditDialog.1411666943":"Изменить данные покупателя","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.632633254":"","src.orders.components.OrderDraftCancelDialog.36681973":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"Добавить товары","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"Продукт","src.orders.components.OrderUnfulfilledItems.1895667608":"Продукт","src.orders.components.OrderDraftDetailsProducts.2796503714":"Количество","src.orders.components.OrderFulfillment.2796503714":"Количество","src.orders.components.OrderFulfillmentDialog.2796503714":"Количество","src.orders.components.OrderUnfulfilledItems.2796503714":"Количество","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"Промежуточный итог","src.orders.components.OrderPayment.781550514":"Промежуточный итог","src.orders.components.OrderDraftDetailsSummary.2429341469":"Добавьте службу доставки","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"Создать заказ","src.orders.components.OrderListPage.2826235371":"Создать заказ","src.orders.components.OrderDraftListPage.551325728":"","src.orders.components.OrderDraftListPage.77765281":"","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"Добавить отслеживание","src.orders.components.OrderFulfillmentCancelDialog.732594284":"Отменить пополнение","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"Отменить пополнение","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"Единица складского учёта","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"номер отслеживания","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"Добавить код отслеживания","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.4067959693":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"Заказ был полностью оплачен","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"Заказ размещен","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"Платеж","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2415661583":"","src.orders.views.OrderList.readyToCapture":"","src.orders.components.OrderListFilter.2222765704":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"Доставка","src.productTypes.components.ProductTypeShipping.1325966144":"Доставка","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"Доставка","src.orders.components.OrderPayment.3768782744":"Авторизованное число","src.orders.components.OrderPayment.2320183694":"Зафиксированное число","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"Зафиксировано","src.orders.components.OrderPayment.2845258362":"Возврат","src.orders.components.OrderPayment.2444197639":"Отменить","src.orders.components.OrderPayment.3500506678":"Отметить как оплаченное","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"Количество","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.1542417144":"","src.products.components.ProductListPage.1542417144":"","src.products.views.1542417144":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"Пополнение","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.OrderDraftList.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.OrderDraftList.1648805446":"","src.orders.views.OrderDraftList.1161115149":"","src.orders.views.OrderDraftList.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.1068617485":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"Заголовок","src.pages.components.PageList.1124600214":"Заголовок","src.pages.components.PageInfo.1116746286":"Содержимое","src.translations.components.TranslationsPagesPage.1116746286":"Содержимое","src.pages.components.PageList.3478065224":"ЧПУ","src.pages.components.PageSlug.3478065224":"ЧПУ","src.productTypes.components.ProductTypeAttributes.3478065224":"ЧПУ","src.pages.components.PageList.3767550649":"Не опубликовано","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.3785394515":"","src.pages.views.3785394515":"","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.plugins.components.PluginInfo.3425535100":"","src.plugins.components.PluginsDetailsPage.3425535100":"","src.plugins.components.PluginInfo.1049131348":"","src.plugins.components.PluginInfo.4013064767":"","src.plugins.components.PluginsDetailsPage.3352026836":"","src.plugins.components.PluginsDetailsPage.2277745418":"","src.plugins.components.PluginsDetailsPage.1970881031":"","src.plugins.components.PluginSettings.1970881031":"","src.plugins.components.PluginsDetailsPage.4241018152":"","src.plugins.components.PluginsList.3247064221":"активный","src.staff.components.StaffList.3247064221":"активный","src.plugins.components.PluginsList.4120604650":"","src.plugins.components.PluginsList.666641390":"","src.plugins.views.100549097":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"Значения","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"Изображения","src.products.components.ProductVariantImages.3240888698":"Изображения","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"наличине","src.products.components.ProductVariantStock.3841616483":"наличине","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListFilter.821159718":"","src.products.components.ProductListFilter.1421689426":"","src.products.components.ProductListFilter.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"*Опционально. Добавление товара в коллекцию поможет пользователям найти его.","src.products.components.ProductPricing.3015886868":"","productStockHeader":"Инвентарь","prodictStockInventoryLabel":"Инвентарь","src.products.components.ProductVariantStock.3490038570":"Инвентарь","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"Удалить вариант","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"Варианты","src.products.components.ProductVariants.2153006789":"Варианты","src.products.components.ProductVariantNavigation.2845381934":"Добавить вариант","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.3989383405":"","src.products.views.3989383405":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1591632382":"","src.products.views.1731766393":"","src.products.views.2880386427":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1217376589":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.3479705616":"","src.productTypes.components.ProductTypeListPage.1776073799":"","src.productTypes.components.ProductTypeListPage.3420445375":"","src.translations.components.TranslationsEntitiesListPage.3420445375":"","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.ProductTypeList.4080551769":"","src.productTypes.views.ProductTypeList.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"Добавить диапазон цен","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"Добавить диапазон веса","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRates.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2673544109":"","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.1947090060":"","src.shipping.views.ShippingZoneDetails.131963671":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"Добавить новый ключ авторизации","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"Ключ","src.siteSettings.components.SiteSettingsKeys.2446088470":"Ключ","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"Добавить аутентификацию","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.1481503299":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"Права доступа","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.797461521":"","src.staff.components.StaffListPage.2852350932":"","src.staff.components.StaffListPage.61043583":"","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"Пользователь активен","src.staff.views.1308770978":"","src.staff.views.8878988":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.2105464697":"","src.translations.components.TranslationsEntitiesListPage.2559018090":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file diff --git a/locale/ru.po b/locale/ru.po index 9c5a014fb..bddcf2710 100644 --- a/locale/ru.po +++ b/locale/ru.po @@ -15,7 +15,7 @@ # msgid "" msgstr "" -"POT-Creation-Date: 2019-09-06T13:56:36.897Z\n" +"POT-Creation-Date: 2019-09-16T15:25:09.340Z\n" "Last-Translator: Dima Veselov , 2019\n" "Language-Team: Russian (https://www.transifex.com/mirumee/teams/34782/ru/)\n" "MIME-Version: 1.0\n" @@ -154,22 +154,6 @@ msgctxt "create new menu item, header" msgid "Add Item" msgstr "Добавить пункт меню" -#. [menuCreateDialogHeader] - dialog header -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json -msgctxt "dialog header" -msgid "Add Menu" -msgstr "Добавить меню" - -#. [menuListPageAddMenu] - button -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json -msgctxt "button" -msgid "Add Menu" -msgstr "Добавить меню" - #. [src.siteSettings.components.SiteSettingsKeyDialog.1238948746] - dialog #. header #. defaultMessage is: @@ -179,14 +163,6 @@ msgctxt "dialog header" msgid "Add New Authorization Key" msgstr "Добавить новый ключ авторизации" -#. [src.pages.components.PageDetailsPage.755314116] - page header -#. defaultMessage is: -#. Add Page -#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json -msgctxt "page header" -msgid "Add Page" -msgstr "Добавить страницу" - #. [src.shipping.components.ShippingZoneRateDialog.2892088870] - dialog header #. defaultMessage is: #. Add Price Rate @@ -195,38 +171,6 @@ msgctxt "dialog header" msgid "Add Price Rate" msgstr "Добавить диапазон цен" -#. [src.orders.components.OrderProductAddDialog.2775402904] - dialog header -#. defaultMessage is: -#. Add Product -#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json -msgctxt "dialog header" -msgid "Add Product" -msgstr "Добавить товар" - -#. [src.products.components.ProductListPage.2775402904] - button -#. defaultMessage is: -#. Add Product -#: build/locale/src/products/components/ProductListPage/ProductListPage.json -msgctxt "button" -msgid "Add Product" -msgstr "Добавить товар" - -#. [src.discounts.components.SaleListPage.1742771332] - button -#. defaultMessage is: -#. Add Sale -#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json -msgctxt "button" -msgid "Add Sale" -msgstr "" - -#. [src.staff.components.StaffAddMemberDialog.3490059488] - dialog header -#. defaultMessage is: -#. Add Staff Member -#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json -msgctxt "dialog header" -msgid "Add Staff Member" -msgstr "Добавить персонал" - #. [src.attributes.components.AttributeValueEditDialog.1841790893] - add #. attribute value #. defaultMessage is: @@ -236,14 +180,6 @@ msgctxt "add attribute value" msgid "Add Value" msgstr "Добавить значение" -#. [src.products.views.2178905289] - header -#. defaultMessage is: -#. Add Variant -#: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "header" -msgid "Add Variant" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.1397795758] - add weight #. based shipping method, dialog header #. defaultMessage is: @@ -261,14 +197,6 @@ msgctxt "button" msgid "Add address" msgstr "Добавить адрес" -#. [src.attributes.components.AttributeListPage.350498821] - button -#. defaultMessage is: -#. Add attribute -#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json -msgctxt "button" -msgid "Add attribute" -msgstr "Добавить атрибут" - #. [src.siteSettings.components.SiteSettingsKeyDialog.50561933] - button #. defaultMessage is: #. Add authentication @@ -277,14 +205,6 @@ msgctxt "button" msgid "Add authentication" msgstr "Добавить аутентификацию" -#. [src.categories.components.CategoryListPage.228151782] - button -#. defaultMessage is: -#. Add category -#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json -msgctxt "button" -msgid "Add category" -msgstr "Добавить категорию" - #. [src.collections.components.CollectionCreatePage.3958681866] - page header #. defaultMessage is: #. Add collection @@ -293,14 +213,6 @@ msgctxt "page header" msgid "Add collection" msgstr "Добавить коллекцию" -#. [src.collections.components.CollectionListPage.3958681866] - button -#. defaultMessage is: -#. Add collection -#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json -msgctxt "button" -msgid "Add collection" -msgstr "Добавить коллекцию" - #. [src.customers.components.CustomerCreatePage.1934221653] - page header #. defaultMessage is: #. Add customer @@ -333,14 +245,6 @@ msgctxt "button" msgid "Add key" msgstr "" -#. [menuItemsAddItem] - add new menu item -#. defaultMessage is: -#. Add new item -#: build/locale/src/navigation/components/MenuItems/MenuItems.json -msgctxt "add new menu item" -msgid "Add new item" -msgstr "Добавить новый пункт меню" - #. [menuItemsPlaceholder] #. defaultMessage is: #. Add new menu item to begin creating menu @@ -375,14 +279,6 @@ msgctxt "button" msgid "Add or Edit Link" msgstr "Добавить или редактировать ссылку" -#. [src.pages.components.PageListPage.1767905232] - button -#. defaultMessage is: -#. Add page -#: build/locale/src/pages/components/PageListPage/PageListPage.json -msgctxt "button" -msgid "Add page" -msgstr "Добавить страницу" - #. [src.categories.components.CategoryProducts.3554578821] - button #. defaultMessage is: #. Add product @@ -391,14 +287,6 @@ msgctxt "button" msgid "Add product" msgstr "Добавить товар" -#. [src.productTypes.components.ProductTypeListPage.889729490] - button -#. defaultMessage is: -#. Add product type -#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json -msgctxt "button" -msgid "Add product type" -msgstr "Добавить тип продукта" - #. [src.orders.components.OrderDraftDetails.2528459381] - button #. defaultMessage is: #. Add products @@ -407,14 +295,6 @@ msgctxt "button" msgid "Add products" msgstr "Добавить товары" -#. [src.shipping.components.ShippingZoneRates.352297149] - button -#. defaultMessage is: -#. Add rate -#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json -msgctxt "button" -msgid "Add rate" -msgstr "" - #. [src.categories.components.CategoryCreatePage.2563994280] #. defaultMessage is: #. Add search engine title and description to make this category easier to @@ -484,30 +364,6 @@ msgctxt "button" msgid "Add shipping carrier" msgstr "Добавьте службу доставки" -#. [src.shipping.components.ShippingZonesList.2474410767] - button -#. defaultMessage is: -#. Add shipping zone -#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json -msgctxt "button" -msgid "Add shipping zone" -msgstr "Добавить область доставки" - -#. [src.staff.components.StaffListPage.802625341] - button -#. defaultMessage is: -#. Add staff member -#: build/locale/src/staff/components/StaffListPage/StaffListPage.json -msgctxt "button" -msgid "Add staff member" -msgstr "Добавить сотрудника" - -#. [src.categories.components.CategoryList.435697837] - button -#. defaultMessage is: -#. Add subcategory -#: build/locale/src/categories/components/CategoryList/CategoryList.json -msgctxt "button" -msgid "Add subcategory" -msgstr "Добавить дочернюю категорию" - #. [src.attributes.components.AttributeProperties.673770329] - add attribute #. as column in product list table #. defaultMessage is: @@ -535,35 +391,14 @@ msgctxt "dialog header" msgid "Add tracking code" msgstr "Добавить код отслеживания" -#. [src.attributes.components.AttributeValues.254756045] - add attribute value -#. button -#. defaultMessage is: -#. Add value -#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json -msgctxt "add attribute value button" -msgid "Add value" -msgstr "Добавить значение" - #. [src.products.components.ProductVariantNavigation.2845381934] - button #. defaultMessage is: #. Add variant -#. [src.products.components.ProductVariants.2845381934] - button -#. defaultMessage is: -#. Add variant #: build/locale/src/products/components/ProductVariantNavigation/ProductVariantNavigation.json -#: build/locale/src/products/components/ProductVariants/ProductVariants.json msgctxt "button" msgid "Add variant" msgstr "Добавить вариант" -#. [src.discounts.components.VoucherListPage.1536809153] - button -#. defaultMessage is: -#. Add voucher -#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json -msgctxt "button" -msgid "Add voucher" -msgstr "Добавить купон" - #. [src.attributes.views.AttributeDetails.634268988] - added new attribute #. value #. defaultMessage is: @@ -621,14 +456,6 @@ msgctxt "description" msgid "Address line 2" msgstr "" -#. [src.customers.components.CustomerAddress.1320082647] - addres card header -#. defaultMessage is: -#. Address {addressNumber} -#: build/locale/src/customers/components/CustomerAddress/CustomerAddress.json -msgctxt "addres card header" -msgid "Address {addressNumber}" -msgstr "" - #. [src.attributes.components.AttributeValues.1565474525] - attribute values #. list: slug column header #. defaultMessage is: @@ -678,6 +505,46 @@ msgctxt "tax rate" msgid "Agricultural supplies" msgstr "" +#. [src.attributes.components.AttributeListPage.2417065806] - tab name +#. defaultMessage is: +#. All Attributes +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "tab name" +msgid "All Attributes" +msgstr "" + +#. [src.categories.components.CategoryListPage.4294878092] - tab name +#. defaultMessage is: +#. All Categories +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "tab name" +msgid "All Categories" +msgstr "" + +#. [src.collections.components.CollectionListPage.1631917001] - tab name +#. defaultMessage is: +#. All Collections +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "tab name" +msgid "All Collections" +msgstr "" + +#. [src.customers.components.CustomerListPage.477293306] - tab name +#. defaultMessage is: +#. All Customers +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "tab name" +msgid "All Customers" +msgstr "" + +#. [src.orders.components.OrderDraftListPage.551325728] - tab name +#. defaultMessage is: +#. All Drafts +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "tab name" +msgid "All Drafts" +msgstr "" + #. [src.orders.components.OrderListPage.875489544] - tab name #. defaultMessage is: #. All Orders @@ -695,22 +562,54 @@ msgctxt "section header" msgid "All Photos" msgstr "" -#. [src.products.components.ProductListPage.821159718] - tab name +#. [src.productTypes.components.ProductTypeListPage.1776073799] - tab name +#. defaultMessage is: +#. All Product Types +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "tab name" +msgid "All Product Types" +msgstr "" + +#. [src.products.components.ProductListFilter.821159718] - tab name #. defaultMessage is: #. All Products -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "tab name" msgid "All Products" msgstr "" -#. [src.categories.components.CategoryList.3229914152] - section header +#. [src.discounts.components.SaleListPage.3907768880] - tab name +#. defaultMessage is: +#. All Sales +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "tab name" +msgid "All Sales" +msgstr "" + +#. [src.staff.components.StaffListPage.2852350932] - tab name +#. defaultMessage is: +#. All Staff Members +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "tab name" +msgid "All Staff Members" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.3229914152] - section header #. defaultMessage is: #. All Subcategories -#: build/locale/src/categories/components/CategoryList/CategoryList.json +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json msgctxt "section header" msgid "All Subcategories" msgstr "" +#. [src.discounts.components.VoucherListPage.1112241061] - tab name +#. defaultMessage is: +#. All Vouchers +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "tab name" +msgid "All Vouchers" +msgstr "" + #. [src.taxes.components.TaxConfiguration.142803418] #. defaultMessage is: #. All products prices are entered with tax included @@ -818,6 +717,14 @@ msgctxt "description" msgid "Are you sure you want to delete collection's image?" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.36681973] +#. defaultMessage is: +#. Are you sure you want to delete draft #{number}? +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "description" +msgid "Are you sure you want to delete draft #{number}?" +msgstr "" + #. [menuDetailsDeleteMenuContent] #. defaultMessage is: #. Are you sure you want to delete menu {menuName}? @@ -834,6 +741,14 @@ msgctxt "description" msgid "Are you sure you want to delete this address from users address book?" msgstr "" +#. [src.products.views.2880386427] +#. defaultMessage is: +#. Are you sure you want to delete this image? +#: build/locale/src/products/views/ProductImage.json +msgctxt "description" +msgid "Are you sure you want to delete this image?" +msgstr "" + #. [src.attributes.components.AttributeDeleteDialog.3738429348] - dialog #. content #. defaultMessage is: @@ -884,12 +799,7 @@ msgstr "" #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this attribute} #. other{{displayQuantity} categories}}? -#. [src.categories.views.844574071] -#. defaultMessage is: -#. Are you sure you want to delete {counter,plural,one{this attribute} -#. other{{displayQuantity} categories}}? #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this attribute} " @@ -907,22 +817,33 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.2497542455] +#. [src.categories.views.CategoryList.2144707585] +#. defaultMessage is: +#. Are you sure you want to delete {counter,plural,one{this category} +#. other{{displayQuantity} categories}}? +#: build/locale/src/categories/views/CategoryList/CategoryList.json +msgctxt "description" +msgid "" +"Are you sure you want to delete {counter,plural,one{this category} " +"other{{displayQuantity} categories}}?" +msgstr "" + +#. [src.collections.views.CollectionList.2497542455] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this collection} " "other{{displayQuantity} collections}}?" msgstr "" -#. [src.customers.views.409347866] +#. [src.customers.views.CustomerList.409347866] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this customer} #. other{{displayQuantity} customers}}? -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this customer} " @@ -940,11 +861,11 @@ msgid "" "other{{displayQuantity} menus}}?" msgstr "" -#. [src.orders.views.1389231130] - dialog content +#. [src.orders.views.OrderDraftList.1389231130] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this order draft} #. other{{displayQuantity} orderDrafts}}? -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this order draft} " @@ -962,11 +883,11 @@ msgid "" "other{{displayQuantity} pages}}?" msgstr "" -#. [src.productTypes.views.2294091098] - dialog content +#. [src.productTypes.views.ProductTypeList.2294091098] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this product type} #. other{{displayQuantity} product types}}? -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this product type} " @@ -984,11 +905,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.discounts.views.2516361175] - dialog content +#. [src.discounts.views.SaleList.2516361175] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this sale} #. other{{displayQuantity} sales}}? -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this sale} " @@ -1017,17 +938,33 @@ msgid "" "other{{displayQuantity} variants}}?" msgstr "" -#. [src.discounts.views.1791926983] - dialog content +#. [src.discounts.views.VoucherList.1791926983] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this voucher} #. other{{displayQuantity} vouchers}}? -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this voucher} " "other{{displayQuantity} vouchers}}?" msgstr "" +#. [src.shipping.views.ShippingZoneDetails.131963671] - unassign country +#. defaultMessage is: +#. Are you sure you want to delete {countryName} from this shipping zone? +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country" +msgid "Are you sure you want to delete {countryName} from this shipping zone?" +msgstr "" + +#. [src.staff.views.8878988] +#. defaultMessage is: +#. Are you sure you want to delete {email} from staff members? +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "description" +msgid "Are you sure you want to delete {email} from staff members?" +msgstr "" + #. [src.customers.views.1927691511] - delete customer, dialog content #. defaultMessage is: #. Are you sure you want to delete {email}? @@ -1142,11 +1079,11 @@ msgctxt "description" msgid "Are you sure you want to mark this order as paid?" msgstr "" -#. [src.collections.views.1348793822] +#. [src.collections.views.CollectionList.1348793822] #. defaultMessage is: #. Are you sure you want to publish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to publish {counter,plural,one{this collection} " @@ -1175,30 +1112,6 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.orders.components.OrderDraftCancelDialog.3199827590] -#. defaultMessage is: -#. Are you sure you want to remove draft #{number}? -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "description" -msgid "Are you sure you want to remove draft #{number}?" -msgstr "" - -#. [src.products.views.672103788] -#. defaultMessage is: -#. Are you sure you want to remove this image? -#: build/locale/src/products/views/ProductImage.json -msgctxt "description" -msgid "Are you sure you want to remove this image?" -msgstr "" - -#. [src.shipping.views.ShippingZoneDetails.1790261672] - unassign country -#. defaultMessage is: -#. Are you sure you want to remove {countryName} from this shipping zone? -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country" -msgid "Are you sure you want to remove {countryName} from this shipping zone?" -msgstr "" - #. [src.staff.views.3945766678] #. defaultMessage is: #. Are you sure you want to remove {email} avatar? @@ -1207,14 +1120,6 @@ msgctxt "description" msgid "Are you sure you want to remove {email} avatar?" msgstr "" -#. [src.staff.views.2728048444] -#. defaultMessage is: -#. Are you sure you want to remove {email} from staff members? -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "description" -msgid "Are you sure you want to remove {email} from staff members?" -msgstr "" - #. [src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450] #. defaultMessage is: #. Are you sure you want to unassign {attributeName} from {productTypeName}? @@ -1295,11 +1200,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.3944356444] +#. [src.collections.views.CollectionList.3944356444] #. defaultMessage is: #. Are you sure you want to unpublish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to unpublish {counter,plural,one{this collection} " @@ -1460,6 +1365,15 @@ msgctxt "button" msgid "Assign products" msgstr "" +#. [src.attributes.components.AttributeValues.351422234] - assign attribute +#. value button +#. defaultMessage is: +#. Assign value +#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json +msgctxt "assign attribute value button" +msgid "Assign value" +msgstr "" + #. [src.attributes.components.AttributeDetails.3605174225] - attribute's slug #. short code label #. defaultMessage is: @@ -1538,6 +1452,14 @@ msgctxt "product attributes, section header" msgid "Attributes" msgstr "Атрибуты" +#. [src.configuration.2326418019] +#. defaultMessage is: +#. Attributes and Product Typess +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Attributes and Product Typess" +msgstr "" + #. [src.attributes.views.AttributeList.3218248395] - deleted multiple #. attributes #. defaultMessage is: @@ -2321,6 +2243,22 @@ msgctxt "description" msgid "Country area" msgstr "" +#. [menuCreateDialogHeader] - dialog header +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json +msgctxt "dialog header" +msgid "Create Menu" +msgstr "" + +#. [menuListPageAddMenu] - button +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json +msgctxt "button" +msgid "Create Menu" +msgstr "" + #. [src.attributes.components.AttributePage.2855501559] - page title #. defaultMessage is: #. Create New Attribute @@ -2345,6 +2283,30 @@ msgctxt "header" msgid "Create New Shipping Zone" msgstr "" +#. [src.pages.components.PageDetailsPage.1068617485] - page header +#. defaultMessage is: +#. Create Page +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page header" +msgid "Create Page" +msgstr "" + +#. [src.orders.components.OrderProductAddDialog.1542417144] - dialog header +#. defaultMessage is: +#. Create Product +#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json +msgctxt "dialog header" +msgid "Create Product" +msgstr "" + +#. [src.products.components.ProductListPage.1542417144] - button +#. defaultMessage is: +#. Create Product +#: build/locale/src/products/components/ProductListPage/ProductListPage.json +msgctxt "button" +msgid "Create Product" +msgstr "" + #. [src.products.views.1542417144] - window title #. defaultMessage is: #. Create Product @@ -2377,11 +2339,19 @@ msgctxt "page header" msgid "Create Sale" msgstr "" -#. [src.products.views.2362587265] - window title +#. [src.discounts.components.SaleListPage.3866518732] - button +#. defaultMessage is: +#. Create Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "button" +msgid "Create Sale" +msgstr "" + +#. [src.products.views.2362587265] - header #. defaultMessage is: #. Create Variant #: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "window title" +msgctxt "header" msgid "Create Variant" msgstr "" @@ -2393,6 +2363,22 @@ msgctxt "page header" msgid "Create Voucher" msgstr "" +#. [src.attributes.components.AttributeListPage.3824684885] - button +#. defaultMessage is: +#. Create attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "button" +msgid "Create attribute" +msgstr "" + +#. [src.categories.components.CategoryListPage.1140231710] - button +#. defaultMessage is: +#. Create category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "button" +msgid "Create category" +msgstr "" + #. [src.categories.views.1140231710] - window title #. defaultMessage is: #. Create category @@ -2401,6 +2387,14 @@ msgctxt "window title" msgid "Create category" msgstr "" +#. [src.collections.components.CollectionListPage.686910896] - button +#. defaultMessage is: +#. Create collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "button" +msgid "Create collection" +msgstr "" + #. [src.collections.views.686910896] - window title #. defaultMessage is: #. Create collection @@ -2417,6 +2411,14 @@ msgctxt "window title" msgid "Create customer" msgstr "" +#. [menuItemsAddItem] - add new menu item +#. defaultMessage is: +#. Create new item +#: build/locale/src/navigation/components/MenuItems/MenuItems.json +msgctxt "add new menu item" +msgid "Create new item" +msgstr "" + #. [src.orders.components.OrderDraftListPage.2826235371] - button #. defaultMessage is: #. Create order @@ -2429,6 +2431,14 @@ msgctxt "button" msgid "Create order" msgstr "Создать заказ" +#. [src.pages.components.PageListPage.3785394515] - button +#. defaultMessage is: +#. Create page +#: build/locale/src/pages/components/PageListPage/PageListPage.json +msgctxt "button" +msgid "Create page" +msgstr "" + #. [src.pages.views.3785394515] - header #. defaultMessage is: #. Create page @@ -2440,11 +2450,55 @@ msgstr "" #. [src.shipping.components.ShippingZoneRateDialog.16061680] - button #. defaultMessage is: #. Create rate +#. [src.shipping.components.ShippingZoneRates.16061680] - button +#. defaultMessage is: +#. Create rate #: build/locale/src/shipping/components/ShippingZoneRateDialog/ShippingZoneRateDialog.json +#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json msgctxt "button" msgid "Create rate" msgstr "" +#. [src.shipping.components.ShippingZonesList.2673544109] - button +#. defaultMessage is: +#. Create shipping zone +#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json +msgctxt "button" +msgid "Create shipping zone" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.770296100] - button +#. defaultMessage is: +#. Create subcategory +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json +msgctxt "button" +msgid "Create subcategory" +msgstr "" + +#. [src.products.components.ProductVariants.3989383405] - button +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/components/ProductVariants/ProductVariants.json +msgctxt "button" +msgid "Create variant" +msgstr "" + +#. [src.products.views.3989383405] - window title +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/views/ProductVariantCreate.json +msgctxt "window title" +msgid "Create variant" +msgstr "" + +#. [src.discounts.components.VoucherListPage.614836274] - button +#. defaultMessage is: +#. Create voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "button" +msgid "Create voucher" +msgstr "" + #. [src.collections.views.1597339737] #. defaultMessage is: #. Created collection @@ -2491,7 +2545,11 @@ msgstr "" #. [src.components.FilterBar.2340527467] #. defaultMessage is: #. Custom Filter +#. [src.components.SearchBar.2340527467] +#. defaultMessage is: +#. Custom Filter #: build/locale/src/components/FilterBar/FilterBar.json +#: build/locale/src/components/SearchBar/SearchBar.json msgctxt "description" msgid "Custom Filter" msgstr "" @@ -2747,10 +2805,18 @@ msgctxt "dialog title" msgid "Delete Collection" msgstr "" -#. [src.orders.views.1161115149] - dialog header +#. [src.products.views.1731766393] - dialog header +#. defaultMessage is: +#. Delete Image +#: build/locale/src/products/views/ProductImage.json +msgctxt "dialog header" +msgid "Delete Image" +msgstr "" + +#. [src.orders.views.OrderDraftList.1161115149] - dialog header #. defaultMessage is: #. Delete Order Drafts -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog header" msgid "Delete Order Drafts" msgstr "" @@ -2788,10 +2854,10 @@ msgctxt "dialog header" msgid "Delete Product Type" msgstr "" -#. [src.productTypes.views.4080551769] - dialog header +#. [src.productTypes.views.ProductTypeList.4080551769] - dialog header #. defaultMessage is: #. Delete Product Types -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog header" msgid "Delete Product Types" msgstr "" @@ -2820,10 +2886,10 @@ msgctxt "dialog header" msgid "Delete Sale" msgstr "" -#. [src.discounts.views.2809303671] - dialog header +#. [src.discounts.views.SaleList.2809303671] - dialog header #. defaultMessage is: #. Delete Sales -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog header" msgid "Delete Sales" msgstr "" @@ -2837,9 +2903,13 @@ msgctxt "custom search delete, dialog header" msgid "Delete Search" msgstr "" +#. [src.components.Filter.2173195312] - button +#. defaultMessage is: +#. Delete Search #. [src.components.TableFilter.2173195312] - button #. defaultMessage is: #. Delete Search +#: build/locale/src/components/Filter/FilterSearch.json #: build/locale/src/components/TableFilter/FilterChips.json msgctxt "button" msgid "Delete Search" @@ -2906,10 +2976,10 @@ msgctxt "dialog header" msgid "Delete Voucher" msgstr "" -#. [src.discounts.views.367317371] - dialog header +#. [src.discounts.views.VoucherList.367317371] - dialog header #. defaultMessage is: #. Delete Vouchers -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog header" msgid "Delete Vouchers" msgstr "" @@ -2943,11 +3013,11 @@ msgstr "" #. [src.categories.views.712767046] - dialog title #. defaultMessage is: #. Delete categories -#. [src.categories.views.712767046] - dialog title +#. [src.categories.views.CategoryList.712767046] - dialog title #. defaultMessage is: #. Delete categories #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "dialog title" msgid "Delete categories" msgstr "" @@ -2964,10 +3034,10 @@ msgctxt "dialog title" msgid "Delete category" msgstr "Удалить категорию" -#. [src.collections.views.3817188998] - dialog title +#. [src.collections.views.CollectionList.3817188998] - dialog title #. defaultMessage is: #. Delete collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Delete collections" msgstr "" @@ -2980,14 +3050,31 @@ msgctxt "dialog header" msgid "Delete customer" msgstr "" -#. [src.customers.views.1946482599] - dialog header +#. [src.customers.views.CustomerList.1946482599] - dialog header #. defaultMessage is: #. Delete customers -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "dialog header" msgid "Delete customers" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.632633254] - dialog header +#. defaultMessage is: +#. Delete draft order +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "dialog header" +msgid "Delete draft order" +msgstr "" + +#. [src.shipping.views.ShippingZoneDetails.1947090060] - unassign country, +#. dialog header +#. defaultMessage is: +#. Delete from shipping zone +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country, dialog header" +msgid "Delete from shipping zone" +msgstr "" + #. [src.collections.views.942133001] - dialog title #. defaultMessage is: #. Delete image @@ -3048,6 +3135,14 @@ msgctxt "description" msgid "Deleted collection" msgstr "Коллекция удалена" +#. [src.orders.views.OrderDraftList.1648805446] +#. defaultMessage is: +#. Deleted draft orders +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json +msgctxt "description" +msgid "Deleted draft orders" +msgstr "" + #. [menuListDeletedMenu] #. defaultMessage is: #. Deleted menu @@ -3647,14 +3742,6 @@ msgctxt "order history message" msgid "Fulfilled {quantity} items" msgstr "" -#. [src.orders.components.OrderListFilter.2943502192] - order -#. defaultMessage is: -#. Fulfillment Status -#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json -msgctxt "order" -msgid "Fulfillment Status" -msgstr "" - #. [src.orders.components.OrderHistory.3081292385] - order history message #. defaultMessage is: #. Fulfillment confirmation was sent to customer @@ -3813,12 +3900,12 @@ msgstr "" "Если не указано, отображаемый предпросмотр будет создан в автоматическом " "режиме." -#. [src.attributes.components.AttributeProperties.2519239682] +#. [src.attributes.components.AttributeProperties.4048785456] #. defaultMessage is: -#. If enable this attribute can be used as a column in product table. +#. If enabled this attribute can be used as a column in product table. #: build/locale/src/attributes/components/AttributeProperties/AttributeProperties.json msgctxt "description" -msgid "If enable this attribute can be used as a column in product table." +msgid "If enabled this attribute can be used as a column in product table." msgstr "" #. [src.attributes.components.AttributeProperties.787251583] @@ -3924,6 +4011,22 @@ msgctxt "product variant stock" msgid "Inventory" msgstr "Инвентарь" +#. [src.staff.components.StaffAddMemberDialog.1481503299] - dialog header +#. defaultMessage is: +#. Invite Staff Member +#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json +msgctxt "dialog header" +msgid "Invite Staff Member" +msgstr "" + +#. [src.staff.components.StaffListPage.797461521] - button +#. defaultMessage is: +#. Invite staff member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "button" +msgid "Invite staff member" +msgstr "" + #. [src.productTypes.components.ProductTypeShipping.2143413921] - switch #. button #. defaultMessage is: @@ -4276,6 +4379,14 @@ msgctxt "voucher requirement" msgid "Minimum quantity of items" msgstr "" +#. [src.configuration.1233229030] +#. defaultMessage is: +#. Miscellaneous +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Miscellaneous" +msgstr "" + #. [src.attributes.components.AttributeDetails.3334509011] - product attribute #. type #. defaultMessage is: @@ -5108,6 +5219,14 @@ msgctxt "description" msgid "Order History" msgstr "" +#. [src.orders.components.OrderListFilter.2222765704] +#. defaultMessage is: +#. Order Status +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +msgctxt "description" +msgid "Order Status" +msgstr "" + #. [src.orders.components.OrderHistory.1230178536] - order history message #. defaultMessage is: #. Order address was updated @@ -5124,13 +5243,13 @@ msgctxt "order history message" msgid "Order confirmation was sent to customer" msgstr "" -#. [src.orders.views.1872939752] +#. [src.orders.views.OrderDraftList.1872939752] #. defaultMessage is: #. Order draft succesfully created #. [src.orders.views.OrderList.1872939752] #. defaultMessage is: #. Order draft succesfully created -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json #: build/locale/src/orders/views/OrderList/OrderList.json msgctxt "description" msgid "Order draft succesfully created" @@ -5795,6 +5914,14 @@ msgctxt "description" msgid "Product Name" msgstr "" +#. [src.configuration.3655543906] +#. defaultMessage is: +#. Product Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Product Settings" +msgstr "" + #. [src.discounts.components.DiscountProducts.4257289053] #. defaultMessage is: #. Product Type @@ -5953,12 +6080,12 @@ msgctxt "order history message" msgid "Products were added to draft order" msgstr "" -#. [src.orders.components.OrderHistory.2574162126] - order history message +#. [src.orders.components.OrderHistory.4067959693] - order history message #. defaultMessage is: -#. Products were removed from draft order +#. Products were deleted from draft order #: build/locale/src/orders/components/OrderHistory/OrderHistory.json msgctxt "order history message" -msgid "Products were removed from draft order" +msgid "Products were deleted from draft order" msgstr "" #. [src.properties] @@ -5985,10 +6112,10 @@ msgctxt "description" msgid "Provided email address does not exist in our database." msgstr "" -#. [src.collections.views.1547167026] - publish collections +#. [src.collections.views.CollectionList.1547167026] - publish collections #. defaultMessage is: #. Publish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "publish collections" msgid "Publish" msgstr "Опубликовать" @@ -6025,10 +6152,10 @@ msgctxt "dialog header" msgid "Publish Products" msgstr "" -#. [src.collections.views.2823425739] - dialog title +#. [src.collections.views.CollectionList.2823425739] - dialog title #. defaultMessage is: #. Publish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Publish collections" msgstr "" @@ -6202,6 +6329,18 @@ msgctxt "shipping method price" msgid "Rate Price" msgstr "" +#. [src.orders.components.OrderListFilter.2415661583] - order status +#. defaultMessage is: +#. Ready to Capture +#. [src.orders.views.OrderList.readyToCapture] - order status +#. defaultMessage is: +#. Ready to Capture +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +#: build/locale/src/orders/views/OrderList/filters.json +msgctxt "order status" +msgid "Ready to Capture" +msgstr "" + #. [src.customers.components.CustomerOrders.3878642352] - section header #. defaultMessage is: #. Recent orders @@ -6250,22 +6389,14 @@ msgctxt "switch button" msgid "Release all stock allocated to this order" msgstr "" -#. [src.auth.components.LoginPage.3182284913] - login -#. defaultMessage is: -#. Remember me -#: build/locale/src/auth/components/LoginPage/LoginPage.json -msgctxt "login" -msgid "Remember me" -msgstr "" - #. [src.categories.views.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. -#. [src.categories.views.3488150607] +#. [src.categories.views.CategoryList.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "description" msgid "Remember this will also delete all products assigned to this category." msgstr "" @@ -6278,39 +6409,6 @@ msgctxt "button" msgid "Remove" msgstr "Удалить" -#. [src.products.views.490753666] - dialog header -#. defaultMessage is: -#. Remove Image -#: build/locale/src/products/views/ProductImage.json -msgctxt "dialog header" -msgid "Remove Image" -msgstr "" - -#. [src.orders.components.OrderDraftCancelDialog.500287069] - dialog header -#. defaultMessage is: -#. Remove draft order -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "dialog header" -msgid "Remove draft order" -msgstr "Удалить черновик заказа" - -#. [src.shipping.views.ShippingZoneDetails.254167659] - unassign country, -#. dialog header -#. defaultMessage is: -#. Remove from shipping zone -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country, dialog header" -msgid "Remove from shipping zone" -msgstr "" - -#. [src.orders.views.3880993240] -#. defaultMessage is: -#. Removed draft orders -#: build/locale/src/orders/views/OrderDraftList.json -msgctxt "description" -msgid "Removed draft orders" -msgstr "" - #. [src.pages.views.1457312643] #. defaultMessage is: #. Removed page @@ -6476,6 +6574,18 @@ msgctxt "button" msgid "Save" msgstr "Сохранить" +#. [src.components.Filter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#. [src.components.TableFilter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#: build/locale/src/components/Filter/FilterSearch.json +#: build/locale/src/components/TableFilter/FilterChips.json +msgctxt "button" +msgid "Save Custom Search" +msgstr "" + #. [src.components.SaveFilterTabDialog.1514415736] - save filter tab, header #. defaultMessage is: #. Save Custom Search @@ -6484,14 +6594,6 @@ msgctxt "save filter tab, header" msgid "Save Custom Search" msgstr "" -#. [src.components.TableFilter.1514415736] - button -#. defaultMessage is: -#. Save Custom Search -#: build/locale/src/components/TableFilter/FilterChips.json -msgctxt "button" -msgid "Save Custom Search" -msgstr "" - #. [src.products.components.ProductVariantCreatePage.2853608829] - button #. defaultMessage is: #. Save variant @@ -6508,6 +6610,14 @@ msgctxt "description" msgid "Saved changes" msgstr "" +#. [src.attributes.components.AttributeListPage.3916653510] +#. defaultMessage is: +#. Search Attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "description" +msgid "Search Attribute" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.902296540] #. defaultMessage is: #. Search Attributes @@ -6524,10 +6634,30 @@ msgctxt "description" msgid "Search Categories" msgstr "" +#. [src.categories.components.CategoryListPage.3841025483] +#. defaultMessage is: +#. Search Category +#. [src.translations.components.TranslationsEntitiesListPage.3841025483] +#. defaultMessage is: +#. Search Category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Category" +msgstr "" + +#. [src.collections.components.CollectionListPage.4057224233] +#. defaultMessage is: +#. Search Collection #. [src.components.AssignCollectionDialog.4057224233] #. defaultMessage is: #. Search Collection +#. [src.translations.components.TranslationsEntitiesListPage.4057224233] +#. defaultMessage is: +#. Search Collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json #: build/locale/src/components/AssignCollectionDialog/AssignCollectionDialog.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json msgctxt "description" msgid "Search Collection" msgstr "" @@ -6540,6 +6670,14 @@ msgctxt "description" msgid "Search Countries" msgstr "" +#. [src.customers.components.CustomerListPage.1643417013] +#. defaultMessage is: +#. Search Customer +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "description" +msgid "Search Customer" +msgstr "" + #. [src.orders.components.OrderCustomer.2433460203] #. defaultMessage is: #. Search Customers @@ -6548,6 +6686,14 @@ msgctxt "description" msgid "Search Customers" msgstr "" +#. [src.orders.components.OrderDraftListPage.77765281] +#. defaultMessage is: +#. Search Draft +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "description" +msgid "Search Draft" +msgstr "" + #. [src.translations.components.TranslationsCategoriesPage.1406947243] #. defaultMessage is: #. Search Engine Description @@ -6628,6 +6774,34 @@ msgctxt "description" msgid "Search Orders..." msgstr "" +#. [src.translations.components.TranslationsEntitiesListPage.2559018090] +#. defaultMessage is: +#. Search Page +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Page" +msgstr "" + +#. [src.translations.components.TranslationsEntitiesListPage.2105464697] +#. defaultMessage is: +#. Search Product +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product" +msgstr "" + +#. [src.productTypes.components.ProductTypeListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#. [src.translations.components.TranslationsEntitiesListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product Type" +msgstr "" + #. [src.components.AssignProductDialog.2850255786] #. defaultMessage is: #. Search Products @@ -6640,14 +6814,46 @@ msgctxt "description" msgid "Search Products" msgstr "" -#. [src.products.components.ProductListPage.3550330425] +#. [src.products.components.ProductListFilter.3550330425] #. defaultMessage is: #. Search Products... -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Search Products..." msgstr "" +#. [src.discounts.components.SaleListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#. [src.translations.components.TranslationsEntitiesListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Sale" +msgstr "" + +#. [src.staff.components.StaffListPage.61043583] +#. defaultMessage is: +#. Search Staff Member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "description" +msgid "Search Staff Member" +msgstr "" + +#. [src.discounts.components.VoucherListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#. [src.translations.components.TranslationsEntitiesListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Voucher" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.524117994] #. defaultMessage is: #. Search by attribute name @@ -6754,10 +6960,10 @@ msgctxt "description" msgid "Select all orders where:" msgstr "" -#. [src.products.components.ProductListPage.1421689426] +#. [src.products.components.ProductListFilter.1421689426] #. defaultMessage is: #. Select all products where: -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Select all products where:" msgstr "" @@ -6843,6 +7049,14 @@ msgctxt "description" msgid "Set plugin as Active" msgstr "" +#. [src.components.VisibilityCard.292404896] +#. defaultMessage is: +#. Set publication date +#: build/locale/src/components/VisibilityCard/VisibilityCard.json +msgctxt "description" +msgid "Set publication date" +msgstr "" + #. [src.discounts.shipment] - voucher discount #. defaultMessage is: #. Shipment @@ -7108,6 +7322,14 @@ msgctxt "staff section name" msgid "Staff Members" msgstr "" +#. [src.configuration.3140151600] +#. defaultMessage is: +#. Staff Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Staff Settings" +msgstr "" + #. [src.standard] - tax rate #. defaultMessage is: #. Standard @@ -8092,10 +8314,10 @@ msgctxt "payment status" msgid "Unpaid" msgstr "" -#. [src.collections.views.2237014112] - unpublish collections +#. [src.collections.views.CollectionList.2237014112] - unpublish collections #. defaultMessage is: #. Unpublish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "unpublish collections" msgid "Unpublish" msgstr "Убрать с публикации" @@ -8132,10 +8354,10 @@ msgctxt "dialog header" msgid "Unpublish Products" msgstr "" -#. [src.collections.views.2637364047] - dialog title +#. [src.collections.views.CollectionList.2637364047] - dialog title #. defaultMessage is: #. Unpublish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Unpublish collections" msgstr "" @@ -8635,6 +8857,22 @@ msgctxt "description" msgid "ZIP / Postal code" msgstr "" +#. [src.productTypes.components.ProductTypeListPage.3479705616] - button +#. defaultMessage is: +#. create product type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "button" +msgid "create product type" +msgstr "" + +#. [src.staff.views.1308770978] - dialog header +#. defaultMessage is: +#. delete Staff User +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "dialog header" +msgid "delete Staff User" +msgstr "" + #. [orderPaymentVATDoesNotApply] - vat not included in order price #. defaultMessage is: #. does not apply @@ -8708,19 +8946,35 @@ msgctxt "product status is set as" msgid "is set as" msgstr "" -#. [src.staff.views.2240444792] - dialog header -#. defaultMessage is: -#. remove Staff User -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "dialog header" -msgid "remove Staff User" -msgstr "" - -#. [src.components.VisibilityCard.1815688500] +#. [src.collections.components.CollectionCreatePage.1815688500] - collection #. defaultMessage is: #. since {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.1815688500] - collection +#. defaultMessage is: +#. since {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "since {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.1815688500] - page +#. defaultMessage is: +#. since {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "since {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#. [src.products.components.ProductUpdatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "since {date}" msgstr "" @@ -8748,11 +9002,35 @@ msgctxt "weight" msgid "to {value} {unit}" msgstr "" -#. [src.components.VisibilityCard.2001551496] +#. [src.collections.components.CollectionCreatePage.2001551496] - collection #. defaultMessage is: #. will be visible from {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.2001551496] - collection +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "will be visible from {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.2001551496] - page +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "will be visible from {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#. [src.products.components.ProductUpdatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "will be visible from {date}" msgstr "" diff --git a/locale/sk.json b/locale/sk.json index 6208c702b..9541d6a6e 100644 --- a/locale/sk.json +++ b/locale/sk.json @@ -1 +1 @@ -{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"Odstrániť atribút","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.350498821":"Pridať atribút","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.2519239682":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"Meno","src.categories.components.CategoryProducts.636461959":"Meno","src.collections.components.CollectionProducts.636461959":"Meno","src.products.components.ProductDetailsForm.636461959":"Meno","src.collections.components.CollectionDetails.636461959":"Meno","src.components.ProductList.636461959":"Meno","src.discounts.components.SaleInfo.636461959":"Meno","src.discounts.components.SaleList.636461959":"Meno","src.discounts.components.SaleSummary.636461959":"Meno","menuItemDialogNameLabel":"Meno","src.products.components.ProductVariants.636461959":"Meno","src.shipping.components.ShippingZoneRates.636461959":"Meno","src.shipping.components.ShippingZonesList.636461959":"Meno","src.staff.components.StaffList.636461959":"Meno","src.translations.components.TranslationsEntitiesList.636461959":"Meno","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.254756045":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.3182284913":"","src.auth.components.LoginPage.109182747":"Prihlásiť","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"Odstrániť kategóriu","src.categories.views.2004894945":"Odstrániť kategóriu","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.3229914152":"","src.categories.components.CategoryList.435697837":"","src.categories.components.CategoryList.2159874182":"Podkategórie","src.categories.components.CategoryUpdatePage.2159874182":"Podkategórie","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.228151782":"Pridať kategóriu","src.categories.components.CategoryProducts.2968663655":"Produkty","src.categories.components.CategoryUpdatePage.2968663655":"Produkty","src.discounts.components.DiscountCategories.2968663655":"Produkty","src.discounts.components.DiscountCollections.2968663655":"Produkty","src.products":"Produkty","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryProducts.3554578821":"Pridať produkt","src.categories.components.CategoryProductsCard.3554578821":"Pridať produkt","src.categories.components.CategoryProducts.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProducts.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.categories.components.CategoryProductsCard.4164156574":"","src.categories.views.1754466114":"","src.categories.views.1140231710":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.712767046":"","src.categories.views.299584400":"","src.categories.views.844574071":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.collections.components.CollectionCreatePage.3958681866":"Pridať kolekciu","src.collections.components.CollectionListPage.3958681866":"Pridať kolekciu","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"Dostupnosť","src.availability":"","src.collections.components.CollectionList.3640454975":"Zverejnené","src.collections.components.CollectionProducts.3640454975":"Zverejnené","src.discounts.components.DiscountProducts.3640454975":"Zverejnené","src.components.ProductList.3640454975":"Zverejnené","src.products.components.ProductListPage.3640454975":"Zverejnené","src.pages.components.PageList.3640454975":"Zverejnené","src.products.views.ProductList.published":"Zverejnené","src.collections.components.CollectionList.2341910657":"Nezverejnené","src.collections.components.CollectionProducts.2341910657":"Nezverejnené","src.discounts.components.DiscountProducts.2341910657":"Nezverejnené","src.components.ProductList.2341910657":"Nezverejnené","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.686910896":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"Odstrániť obrázok","src.collections.views.2402899582":"","src.collections.views.2237014112":"Stiahnuť zo zverejnenia","src.pages.views.2237014112":"Stiahnuť zo zverejnenia","src.products.views.ProductList.2237014112":"Stiahnuť zo zverejnenia","src.collections.views.1547167026":"Zverejniť","src.pages.views.1547167026":"Zverejniť","src.products.views.ProductList.1547167026":"Zverejniť","src.collections.views.2823425739":"","src.collections.views.1348793822":"","src.collections.views.2637364047":"","src.collections.views.3944356444":"","src.collections.views.3817188998":"","src.collections.views.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"Odhlásiť","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.4057224233":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"Error","src.components.ErrorMessageCard.2845142593":"Error","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.FilterBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"Pridať","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.ProductList.1134347598":"Cena","src.orders.components.OrderDraftDetailsProducts.1134347598":"Cena","src.orders.components.OrderFulfillment.1134347598":"Cena","src.products.components.ProductListPage.1134347598":"Cena","src.products.components.ProductPricing.1134347598":"Cena","src.orders.components.OrderUnfulfilledItems.1134347598":"Cena","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"Cena","src.shipping.components.ShippingZoneRates.1134347598":"Cena","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"Viditeľnosť","src.pages.components.PageList.1459686496":"Viditeľnosť","src.products.components.ProductListFilter.1459686496":"Viditeľnosť","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"Skryté","src.products.views.ProductList.hidden":"Skryté","src.components.VisibilityCard.1815688500":"","src.components.VisibilityCard.2001551496":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","configurationMenuStaff":"","configurationMenuShipping":"","configurationMenuTaxes":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","src.customers.components.CustomerAddress.1320082647":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"Fakturačná adresa","src.customers.components.CustomerAddresses.3517722732":"Dodacia adresa","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"Adresa","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"Poznámky","src.orders.components.OrderCustomerNote.1520756907":"Poznámky","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"Poznámka","src.customers.components.CustomerDetails.577013340":"Poznámka","src.customers.components.CustomerCreatePage.1934221653":"Pridať zákazníka","src.customers.components.CustomerListPage.1934221653":"Pridať zákazníka","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerOrders.3878642352":"Nedávne objednávky","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"Dátum","src.orders.components.OrderDraftList.4205493358":"Dátum","src.orders.components.OrderList.4205493358":"Dátum","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"Stav","src.orders.components.OrderListFilter.1756106276":"Stav","src.products.components.ProductListFilter.1756106276":"Stav","src.products.components.ProductVariants.1756106276":"Stav","src.customers.components.CustomerOrders.878013594":"Celkom","src.orders.components.OrderDraftDetailsProducts.878013594":"Celkom","src.orders.components.OrderDraftDetailsSummary.878013594":"Celkom","src.orders.components.OrderDraftList.878013594":"Celkom","src.orders.components.OrderFulfillment.878013594":"Celkom","src.orders.components.OrderUnfulfilledItems.878013594":"Celkom","src.orders.components.OrderList.878013594":"Celkom","src.orders.components.OrderPayment.878013594":"Celkom","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"Odstrániť adresu","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.1946482599":"","src.customers.views.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"Hodnota","src.discounts.components.SaleSummary.1148029984":"Hodnota","src.discounts.components.VoucherList.1148029984":"Hodnota","src.discounts.components.VoucherSummary.1148029984":"Hodnota","src.discounts.components.VoucherValue.1148029984":"Hodnota","src.products.components.ProductAttributes.1148029984":"Hodnota","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.1742771332":"","src.discounts.components.SalePricing.1099355007":"Oceňovanie","src.products.components.ProductPricing.1099355007":"Oceňovanie","src.products.components.ProductVariantPrice.1099355007":"Oceňovanie","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"Krajiny","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"Kód","src.discounts.components.VoucherSummary.78726751":"Kód","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.1536809153":"Pridajte poukaz","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"Špecifické produkty","src.discounts.shipment":"Poštovné č.%s","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.2809303671":"","src.discounts.views.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.367317371":"","src.discounts.views.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"Zrušiť","src.orders.views.OrderList.3528672691":"Zrušiť","src.confirm":"","src.delete":"Vymazať","src.edit":"Upraviť","src.manage":"","src.remove":"Odstrániť","src.save":"Uložiť","src.show":"","src.undo":"","src.attributes":"Atribúty","src.products.components.ProductAttributes.4153345096":"Atribúty","src.categories":"Kategórie","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"Kolekcie","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"Konfigurácia","src.customers":"Zákazníci","src.draftOrders":"","src.home":"Domov","src.navigation":"Navigácia","src.orders":"Objednávky","src.pages":"Stránky","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"Zľavy","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"Daňe","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"Daňe","src.taxes.components.CountryListPage.3955023266":"Daňe","src.translations":"","src.vouchers":"Poukážky","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"Plne zaplatená","src.partiallyPaid":"","src.partiallyRefunded":"","src.refunded":"","src.unpaid":"","src.cancelled":"Zrušená","src.draft":"Koncept","src.fulfilled":"Splnené","src.orders.views.OrderList.fulfilled":"Splnené","src.orders.components.OrderListFilter.1712863026":"Splnené","src.partiallyFulfilled":"Čiastočne nenaplnené","src.unfulfilled":"Nenaplnené","src.orders.views.OrderList.unfulfilled":"Nenaplnené","src.orders.components.OrderListFilter.1751787272":"Nenaplnené","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","src.1395232177":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"Odkaz","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"Zrušiť objednávku","src.orders.components.OrderDetailsPage.1854613983":"Zrušiť objednávku","src.orders.components.OrderDraftPage.1854613983":"Zrušiť objednávku","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"Zákazník","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"Zákazník","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"Rovnaká ako doručovacia adresa","src.orders.components.OrderCustomerEditDialog.1411666943":"Upraviť detaily zákazníka","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.500287069":"Odstrániť rozrobenú objednávku","src.orders.components.OrderDraftCancelDialog.3199827590":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"Produkt","src.orders.components.OrderUnfulfilledItems.1895667608":"Produkt","src.orders.components.OrderDraftDetailsProducts.2796503714":"Počet","src.orders.components.OrderFulfillment.2796503714":"Počet","src.orders.components.OrderFulfillmentDialog.2796503714":"Počet","src.orders.components.OrderUnfulfilledItems.2796503714":"Počet","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"Medzisúčet","src.orders.components.OrderPayment.781550514":"Medzisúčet","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"Vytvoriť objednávku","src.orders.components.OrderListPage.2826235371":"Vytvoriť objednávku","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"Pridať sledovanie","src.orders.components.OrderFulfillmentCancelDialog.732594284":"Zrušiť naplnenie","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"Zrušiť naplnenie","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"Skladová jednotka ","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"Sledovacie číslo","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.2574162126":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"Objednávka bola plne uhradená","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"Objednávka bola poslaná","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"Platba","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2943502192":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"Doprava","src.productTypes.components.ProductTypeShipping.1325966144":"Doprava","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"Doprava","src.orders.components.OrderPayment.3768782744":"Povolená čiastka","src.orders.components.OrderPayment.2320183694":"Zachytená čiastka","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"Zachytené","src.orders.components.OrderPayment.2845258362":"Vrátenie","src.orders.components.OrderPayment.2444197639":"","src.orders.components.OrderPayment.3500506678":"Označiť ako zaplatené","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"Suma","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.2775402904":"","src.products.components.ProductListPage.2775402904":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"Naplniť","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.3880993240":"","src.orders.views.1161115149":"","src.orders.views.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.755314116":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"Titolok","src.pages.components.PageList.1124600214":"Titolok","src.pages.components.PageInfo.1116746286":"Obsah","src.translations.components.TranslationsPagesPage.1116746286":"Obsah","src.pages.components.PageList.3478065224":"Slug","src.pages.components.PageSlug.3478065224":"Slug","src.productTypes.components.ProductTypeAttributes.3478065224":"Slug","src.pages.components.PageList.3767550649":"Nezverejnené","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.1767905232":"Pridať stránku","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.3785394515":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"Hodnoty","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"Obrázky","src.products.components.ProductVariantImages.3240888698":"Obrázky","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"Sklad","src.products.components.ProductVariantStock.3841616483":"Sklad","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListPage.821159718":"","src.products.components.ProductListPage.1421689426":"","src.products.components.ProductListPage.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"Inventár","prodictStockInventoryLabel":"Inventár","src.products.components.ProductVariantStock.3490038570":"Inventár","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"Odstrániť variant","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"Varianty","src.products.components.ProductVariants.2153006789":"Varianty","src.products.components.ProductVariantNavigation.2845381934":"Pridať variant","src.products.components.ProductVariants.2845381934":"Pridať variant","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1542417144":"","src.products.views.1591632382":"","src.products.views.490753666":"","src.products.views.672103788":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.1694086800":"","src.products.views.ProductList.224127438":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.products.views.2178905289":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1756957616":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.889729490":"Pridať typ produktu","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.4080551769":"","src.productTypes.views.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.352297149":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2474410767":"Pridať doručovaciu zónu","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.254167659":"","src.shipping.views.ShippingZoneDetails.1790261672":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"Kľúč","src.siteSettings.components.SiteSettingsKeys.2446088470":"Kľúč","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.3490059488":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"Oprávnenia","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.3247064221":"Aktívny","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.802625341":"Pridať zamestnanca","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"Užívateľ je aktívny","src.staff.views.2240444792":"","src.staff.views.2728048444":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file +{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"Odstrániť atribút","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.3824684885":"","src.attributes.components.AttributeListPage.2417065806":"","src.attributes.components.AttributeListPage.3916653510":"","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.4048785456":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"Meno","src.categories.components.CategoryProductList.636461959":"Meno","src.components.ProductList.636461959":"Meno","src.products.components.ProductList.636461959":"Meno","src.collections.components.CollectionDetails.636461959":"Meno","src.collections.components.CollectionProducts.636461959":"Meno","src.products.components.ProductDetailsForm.636461959":"Meno","src.discounts.components.SaleInfo.636461959":"Meno","src.discounts.components.SaleList.636461959":"Meno","src.discounts.components.SaleSummary.636461959":"Meno","menuItemDialogNameLabel":"Meno","src.plugins.components.PluginsList.636461959":"Meno","src.products.components.ProductVariants.636461959":"Meno","src.shipping.components.ShippingZoneRates.636461959":"Meno","src.shipping.components.ShippingZonesList.636461959":"Meno","src.staff.components.StaffList.636461959":"Meno","src.translations.components.TranslationsEntitiesList.636461959":"Meno","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.351422234":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.109182747":"Prihlásiť","src.auth.components.LoginPage.4028609483":"","src.auth.components.NewPasswordPage.1915811227":"","src.auth.components.NewPasswordPage.1254879564":"","src.auth.components.NewPasswordPage.2799926859":"","src.auth.components.NewPasswordPage.4253911811":"","src.auth.components.NewPasswordPage.2342634351":"","src.auth.components.ResetPasswordPage.2370700732":"","src.auth.components.ResetPasswordPage.3663311080":"","src.auth.components.ResetPasswordSuccessPage.4066297200":"","src.auth.components.ResetPasswordSuccessPage.2245157344":"","src.auth.views.2388238158":"","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"Odstrániť kategóriu","src.categories.views.2004894945":"Odstrániť kategóriu","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.2159874182":"Podkategórie","src.categories.components.CategoryUpdatePage.2159874182":"Podkategórie","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.1140231710":"","src.categories.views.1140231710":"","src.categories.components.CategoryListPage.4294878092":"","src.categories.components.CategoryListPage.3841025483":"","src.translations.components.TranslationsEntitiesListPage.3841025483":"","src.categories.components.CategoryProductList.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductList.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProductList.3640454975":"Zverejnené","src.components.ProductList.3640454975":"Zverejnené","src.products.components.ProductList.3640454975":"Zverejnené","src.products.components.ProductListPage.3640454975":"Zverejnené","productStatusLabel":"Zverejnené","src.collections.components.CollectionList.3640454975":"Zverejnené","src.collections.components.CollectionProducts.3640454975":"Zverejnené","src.discounts.components.DiscountProducts.3640454975":"Zverejnené","src.pages.components.PageList.3640454975":"Zverejnené","src.products.views.ProductList.published":"Zverejnené","src.categories.components.CategoryProductList.1134347598":"Cena","src.orders.components.OrderFulfillment.1134347598":"Cena","src.products.components.ProductList.1134347598":"Cena","src.products.components.ProductListPage.1134347598":"Cena","src.products.components.ProductPricing.1134347598":"Cena","src.components.ProductList.1134347598":"Cena","src.orders.components.OrderDraftDetailsProducts.1134347598":"Cena","src.orders.components.OrderUnfulfilledItems.1134347598":"Cena","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"Cena","src.shipping.components.ShippingZoneRates.1134347598":"Cena","src.categories.components.CategoryProductList.2341910657":"Nezverejnené","src.products.components.ProductList.2341910657":"Nezverejnené","src.collections.components.CollectionList.2341910657":"Nezverejnené","src.collections.components.CollectionProducts.2341910657":"Nezverejnené","src.discounts.components.DiscountProducts.2341910657":"Nezverejnené","src.components.ProductList.2341910657":"Nezverejnené","src.categories.components.CategoryProductList.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.products.components.ProductList.1657559629":"","src.categories.components.CategoryProducts.4164156574":"","src.categories.components.CategoryProducts.3554578821":"Pridať produkt","src.categories.components.CategoryUpdatePage.2968663655":"Produkty","src.discounts.components.DiscountCategories.2968663655":"Produkty","src.discounts.components.DiscountCollections.2968663655":"Produkty","src.products":"Produkty","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryUpdatePage.3229914152":"","src.categories.components.CategoryUpdatePage.770296100":"","src.categories.views.1754466114":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.CategoryList.3488150607":"","src.categories.views.712767046":"","src.categories.views.CategoryList.712767046":"","src.categories.views.299584400":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.categories.views.CategoryList.2144707585":"","src.collections.components.CollectionCreatePage.3958681866":"Pridať kolekciu","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionCreatePage.2001551496":"","src.collections.components.CollectionDetailsPage.2001551496":"","src.pages.components.PageDetailsPage.2001551496":"","src.products.components.ProductCreatePage.2001551496":"","src.products.components.ProductUpdatePage.2001551496":"","src.collections.components.CollectionCreatePage.1815688500":"","src.collections.components.CollectionDetailsPage.1815688500":"","src.pages.components.PageDetailsPage.1815688500":"","src.products.components.ProductCreatePage.1815688500":"","src.products.components.ProductUpdatePage.1815688500":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"Dostupnosť","src.availability":"","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionListPage.686910896":"","src.collections.views.686910896":"","src.collections.components.CollectionListPage.1631917001":"","src.collections.components.CollectionListPage.4057224233":"","src.components.AssignCollectionDialog.4057224233":"","src.translations.components.TranslationsEntitiesListPage.4057224233":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"Odstrániť obrázok","src.collections.views.2402899582":"","src.collections.views.CollectionList.2237014112":"Stiahnuť zo zverejnenia","src.pages.views.2237014112":"Stiahnuť zo zverejnenia","src.products.views.ProductList.2237014112":"Stiahnuť zo zverejnenia","src.collections.views.CollectionList.1547167026":"Zverejniť","src.pages.views.1547167026":"Zverejniť","src.products.views.ProductList.1547167026":"Zverejniť","src.collections.views.CollectionList.2823425739":"","src.collections.views.CollectionList.1348793822":"","src.collections.views.CollectionList.2637364047":"","src.collections.views.CollectionList.3944356444":"","src.collections.views.CollectionList.3817188998":"","src.collections.views.CollectionList.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"Odhlásiť","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"Error","src.components.ErrorMessageCard.2845142593":"Error","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.Filter.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.Filter.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.FilterBar.2340527467":"","src.components.SearchBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"Pridať","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"Viditeľnosť","src.pages.components.PageList.1459686496":"Viditeľnosť","src.products.components.ProductListFilter.1459686496":"Viditeľnosť","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"Skryté","src.products.views.ProductList.hidden":"Skryté","src.components.VisibilityCard.292404896":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","src.configuration.2326418019":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","src.configuration.3655543906":"","configurationMenuShipping":"","configurationMenuTaxes":"","src.configuration.3140151600":"","configurationMenuStaff":"","src.configuration.1233229030":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","configurationPluginsPages":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"Fakturačná adresa","src.customers.components.CustomerAddresses.3517722732":"Dodacia adresa","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"Adresa","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"Poznámky","src.orders.components.OrderCustomerNote.1520756907":"Poznámky","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"Poznámka","src.customers.components.CustomerDetails.577013340":"Poznámka","src.customers.components.CustomerCreatePage.1934221653":"Pridať zákazníka","src.customers.components.CustomerListPage.1934221653":"Pridať zákazníka","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerListPage.477293306":"","src.customers.components.CustomerListPage.1643417013":"","src.customers.components.CustomerOrders.3878642352":"Nedávne objednávky","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"Dátum","src.orders.components.OrderDraftList.4205493358":"Dátum","src.orders.components.OrderList.4205493358":"Dátum","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"Stav","src.orders.components.OrderListFilter.1756106276":"Stav","src.plugins.components.PluginInfo.1756106276":"Stav","src.products.components.ProductListFilter.1756106276":"Stav","src.products.components.ProductVariants.1756106276":"Stav","src.customers.components.CustomerOrders.878013594":"Celkom","src.orders.components.OrderDraftDetailsProducts.878013594":"Celkom","src.orders.components.OrderDraftDetailsSummary.878013594":"Celkom","src.orders.components.OrderDraftList.878013594":"Celkom","src.orders.components.OrderFulfillment.878013594":"Celkom","src.orders.components.OrderUnfulfilledItems.878013594":"Celkom","src.orders.components.OrderList.878013594":"Celkom","src.orders.components.OrderPayment.878013594":"Celkom","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"Odstrániť adresu","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.CustomerList.1946482599":"","src.customers.views.CustomerList.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","src.discounts.components.SaleListPage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"Hodnota","src.discounts.components.SaleSummary.1148029984":"Hodnota","src.discounts.components.VoucherList.1148029984":"Hodnota","src.discounts.components.VoucherSummary.1148029984":"Hodnota","src.discounts.components.VoucherValue.1148029984":"Hodnota","src.products.components.ProductAttributes.1148029984":"Hodnota","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.3907768880":"","src.discounts.components.SaleListPage.1866913828":"","src.translations.components.TranslationsEntitiesListPage.1866913828":"","src.discounts.components.SalePricing.1099355007":"Oceňovanie","src.products.components.ProductPricing.1099355007":"Oceňovanie","src.products.components.ProductVariantPrice.1099355007":"Oceňovanie","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"Krajiny","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"Kód","src.discounts.components.VoucherSummary.78726751":"Kód","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.614836274":"","src.discounts.components.VoucherListPage.1112241061":"","src.discounts.components.VoucherListPage.1930485532":"","src.translations.components.TranslationsEntitiesListPage.1930485532":"","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"Špecifické produkty","src.discounts.shipment":"Poštovné č.%s","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.SaleList.2809303671":"","src.discounts.views.SaleList.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.VoucherList.367317371":"","src.discounts.views.VoucherList.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.somethingWentWrong":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"Zrušiť","src.orders.views.OrderList.3528672691":"Zrušiť","src.confirm":"","src.delete":"Vymazať","src.edit":"Upraviť","src.manage":"","src.remove":"Odstrániť","src.save":"Uložiť","src.show":"","src.undo":"","src.attributes":"Atribúty","src.products.components.ProductAttributes.4153345096":"Atribúty","src.categories":"Kategórie","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"Kolekcie","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"Konfigurácia","src.customers":"Zákazníci","src.draftOrders":"","src.home":"Domov","src.navigation":"Navigácia","src.orders":"Objednávky","src.pages":"Stránky","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.plugins":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"Zľavy","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"Daňe","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"Daňe","src.taxes.components.CountryListPage.3955023266":"Daňe","src.translations":"","src.vouchers":"Poukážky","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"Plne zaplatená","src.partiallyPaid":"","src.partiallyRefunded":"","src.refunded":"","src.unpaid":"","src.cancelled":"Zrušená","src.draft":"Koncept","src.fulfilled":"Splnené","src.orders.views.OrderList.fulfilled":"Splnené","src.orders.components.OrderListFilter.1712863026":"Splnené","src.partiallyFulfilled":"Čiastočne nenaplnené","src.unfulfilled":"Nenaplnené","src.orders.views.OrderList.unfulfilled":"Nenaplnené","src.orders.components.OrderListFilter.1751787272":"Nenaplnené","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"Odkaz","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"Zrušiť objednávku","src.orders.components.OrderDetailsPage.1854613983":"Zrušiť objednávku","src.orders.components.OrderDraftPage.1854613983":"Zrušiť objednávku","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"Zákazník","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"Zákazník","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"Rovnaká ako doručovacia adresa","src.orders.components.OrderCustomerEditDialog.1411666943":"Upraviť detaily zákazníka","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.632633254":"","src.orders.components.OrderDraftCancelDialog.36681973":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"Produkt","src.orders.components.OrderUnfulfilledItems.1895667608":"Produkt","src.orders.components.OrderDraftDetailsProducts.2796503714":"Počet","src.orders.components.OrderFulfillment.2796503714":"Počet","src.orders.components.OrderFulfillmentDialog.2796503714":"Počet","src.orders.components.OrderUnfulfilledItems.2796503714":"Počet","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"Medzisúčet","src.orders.components.OrderPayment.781550514":"Medzisúčet","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"Vytvoriť objednávku","src.orders.components.OrderListPage.2826235371":"Vytvoriť objednávku","src.orders.components.OrderDraftListPage.551325728":"","src.orders.components.OrderDraftListPage.77765281":"","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"Pridať sledovanie","src.orders.components.OrderFulfillmentCancelDialog.732594284":"Zrušiť naplnenie","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"Zrušiť naplnenie","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"Skladová jednotka ","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"Sledovacie číslo","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.4067959693":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"Objednávka bola plne uhradená","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"Objednávka bola poslaná","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"Platba","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2415661583":"","src.orders.views.OrderList.readyToCapture":"","src.orders.components.OrderListFilter.2222765704":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"Doprava","src.productTypes.components.ProductTypeShipping.1325966144":"Doprava","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"Doprava","src.orders.components.OrderPayment.3768782744":"Povolená čiastka","src.orders.components.OrderPayment.2320183694":"Zachytená čiastka","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"Zachytené","src.orders.components.OrderPayment.2845258362":"Vrátenie","src.orders.components.OrderPayment.2444197639":"","src.orders.components.OrderPayment.3500506678":"Označiť ako zaplatené","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"Suma","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.1542417144":"","src.products.components.ProductListPage.1542417144":"","src.products.views.1542417144":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"Naplniť","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.OrderDraftList.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.OrderDraftList.1648805446":"","src.orders.views.OrderDraftList.1161115149":"","src.orders.views.OrderDraftList.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.1068617485":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"Titolok","src.pages.components.PageList.1124600214":"Titolok","src.pages.components.PageInfo.1116746286":"Obsah","src.translations.components.TranslationsPagesPage.1116746286":"Obsah","src.pages.components.PageList.3478065224":"Slug","src.pages.components.PageSlug.3478065224":"Slug","src.productTypes.components.ProductTypeAttributes.3478065224":"Slug","src.pages.components.PageList.3767550649":"Nezverejnené","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.3785394515":"","src.pages.views.3785394515":"","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.plugins.components.PluginInfo.3425535100":"","src.plugins.components.PluginsDetailsPage.3425535100":"","src.plugins.components.PluginInfo.1049131348":"","src.plugins.components.PluginInfo.4013064767":"","src.plugins.components.PluginsDetailsPage.3352026836":"","src.plugins.components.PluginsDetailsPage.2277745418":"","src.plugins.components.PluginsDetailsPage.1970881031":"","src.plugins.components.PluginSettings.1970881031":"","src.plugins.components.PluginsDetailsPage.4241018152":"","src.plugins.components.PluginsList.3247064221":"Aktívny","src.staff.components.StaffList.3247064221":"Aktívny","src.plugins.components.PluginsList.4120604650":"","src.plugins.components.PluginsList.666641390":"","src.plugins.views.100549097":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"Hodnoty","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"Obrázky","src.products.components.ProductVariantImages.3240888698":"Obrázky","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"Sklad","src.products.components.ProductVariantStock.3841616483":"Sklad","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListFilter.821159718":"","src.products.components.ProductListFilter.1421689426":"","src.products.components.ProductListFilter.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"Inventár","prodictStockInventoryLabel":"Inventár","src.products.components.ProductVariantStock.3490038570":"Inventár","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"Odstrániť variant","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"Varianty","src.products.components.ProductVariants.2153006789":"Varianty","src.products.components.ProductVariantNavigation.2845381934":"Pridať variant","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.3989383405":"","src.products.views.3989383405":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1591632382":"","src.products.views.1731766393":"","src.products.views.2880386427":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1217376589":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.3479705616":"","src.productTypes.components.ProductTypeListPage.1776073799":"","src.productTypes.components.ProductTypeListPage.3420445375":"","src.translations.components.TranslationsEntitiesListPage.3420445375":"","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.ProductTypeList.4080551769":"","src.productTypes.views.ProductTypeList.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRates.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2673544109":"","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.1947090060":"","src.shipping.views.ShippingZoneDetails.131963671":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"Kľúč","src.siteSettings.components.SiteSettingsKeys.2446088470":"Kľúč","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.1481503299":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"Oprávnenia","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.797461521":"","src.staff.components.StaffListPage.2852350932":"","src.staff.components.StaffListPage.61043583":"","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"Užívateľ je aktívny","src.staff.views.1308770978":"","src.staff.views.8878988":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.2105464697":"","src.translations.components.TranslationsEntitiesListPage.2559018090":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file diff --git a/locale/sk.po b/locale/sk.po index db9357e08..9da0b605d 100644 --- a/locale/sk.po +++ b/locale/sk.po @@ -7,7 +7,7 @@ # msgid "" msgstr "" -"POT-Creation-Date: 2019-09-06T13:56:36.897Z\n" +"POT-Creation-Date: 2019-09-16T15:25:09.340Z\n" "Last-Translator: Patrik Kucavik , 2019\n" "Language-Team: Slovak (https://www.transifex.com/mirumee/teams/34782/sk/)\n" "MIME-Version: 1.0\n" @@ -145,22 +145,6 @@ msgctxt "create new menu item, header" msgid "Add Item" msgstr "" -#. [menuCreateDialogHeader] - dialog header -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json -msgctxt "dialog header" -msgid "Add Menu" -msgstr "" - -#. [menuListPageAddMenu] - button -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json -msgctxt "button" -msgid "Add Menu" -msgstr "" - #. [src.siteSettings.components.SiteSettingsKeyDialog.1238948746] - dialog #. header #. defaultMessage is: @@ -170,14 +154,6 @@ msgctxt "dialog header" msgid "Add New Authorization Key" msgstr "" -#. [src.pages.components.PageDetailsPage.755314116] - page header -#. defaultMessage is: -#. Add Page -#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json -msgctxt "page header" -msgid "Add Page" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.2892088870] - dialog header #. defaultMessage is: #. Add Price Rate @@ -186,38 +162,6 @@ msgctxt "dialog header" msgid "Add Price Rate" msgstr "" -#. [src.orders.components.OrderProductAddDialog.2775402904] - dialog header -#. defaultMessage is: -#. Add Product -#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json -msgctxt "dialog header" -msgid "Add Product" -msgstr "" - -#. [src.products.components.ProductListPage.2775402904] - button -#. defaultMessage is: -#. Add Product -#: build/locale/src/products/components/ProductListPage/ProductListPage.json -msgctxt "button" -msgid "Add Product" -msgstr "" - -#. [src.discounts.components.SaleListPage.1742771332] - button -#. defaultMessage is: -#. Add Sale -#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json -msgctxt "button" -msgid "Add Sale" -msgstr "" - -#. [src.staff.components.StaffAddMemberDialog.3490059488] - dialog header -#. defaultMessage is: -#. Add Staff Member -#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json -msgctxt "dialog header" -msgid "Add Staff Member" -msgstr "" - #. [src.attributes.components.AttributeValueEditDialog.1841790893] - add #. attribute value #. defaultMessage is: @@ -227,14 +171,6 @@ msgctxt "add attribute value" msgid "Add Value" msgstr "" -#. [src.products.views.2178905289] - header -#. defaultMessage is: -#. Add Variant -#: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "header" -msgid "Add Variant" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.1397795758] - add weight #. based shipping method, dialog header #. defaultMessage is: @@ -252,14 +188,6 @@ msgctxt "button" msgid "Add address" msgstr "" -#. [src.attributes.components.AttributeListPage.350498821] - button -#. defaultMessage is: -#. Add attribute -#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json -msgctxt "button" -msgid "Add attribute" -msgstr "Pridať atribút" - #. [src.siteSettings.components.SiteSettingsKeyDialog.50561933] - button #. defaultMessage is: #. Add authentication @@ -268,14 +196,6 @@ msgctxt "button" msgid "Add authentication" msgstr "" -#. [src.categories.components.CategoryListPage.228151782] - button -#. defaultMessage is: -#. Add category -#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json -msgctxt "button" -msgid "Add category" -msgstr "Pridať kategóriu" - #. [src.collections.components.CollectionCreatePage.3958681866] - page header #. defaultMessage is: #. Add collection @@ -284,14 +204,6 @@ msgctxt "page header" msgid "Add collection" msgstr "Pridať kolekciu" -#. [src.collections.components.CollectionListPage.3958681866] - button -#. defaultMessage is: -#. Add collection -#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json -msgctxt "button" -msgid "Add collection" -msgstr "Pridať kolekciu" - #. [src.customers.components.CustomerCreatePage.1934221653] - page header #. defaultMessage is: #. Add customer @@ -324,14 +236,6 @@ msgctxt "button" msgid "Add key" msgstr "" -#. [menuItemsAddItem] - add new menu item -#. defaultMessage is: -#. Add new item -#: build/locale/src/navigation/components/MenuItems/MenuItems.json -msgctxt "add new menu item" -msgid "Add new item" -msgstr "" - #. [menuItemsPlaceholder] #. defaultMessage is: #. Add new menu item to begin creating menu @@ -366,14 +270,6 @@ msgctxt "button" msgid "Add or Edit Link" msgstr "" -#. [src.pages.components.PageListPage.1767905232] - button -#. defaultMessage is: -#. Add page -#: build/locale/src/pages/components/PageListPage/PageListPage.json -msgctxt "button" -msgid "Add page" -msgstr "Pridať stránku" - #. [src.categories.components.CategoryProducts.3554578821] - button #. defaultMessage is: #. Add product @@ -382,14 +278,6 @@ msgctxt "button" msgid "Add product" msgstr "Pridať produkt" -#. [src.productTypes.components.ProductTypeListPage.889729490] - button -#. defaultMessage is: -#. Add product type -#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json -msgctxt "button" -msgid "Add product type" -msgstr "Pridať typ produktu" - #. [src.orders.components.OrderDraftDetails.2528459381] - button #. defaultMessage is: #. Add products @@ -398,14 +286,6 @@ msgctxt "button" msgid "Add products" msgstr "" -#. [src.shipping.components.ShippingZoneRates.352297149] - button -#. defaultMessage is: -#. Add rate -#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json -msgctxt "button" -msgid "Add rate" -msgstr "" - #. [src.categories.components.CategoryCreatePage.2563994280] #. defaultMessage is: #. Add search engine title and description to make this category easier to @@ -467,30 +347,6 @@ msgctxt "button" msgid "Add shipping carrier" msgstr "" -#. [src.shipping.components.ShippingZonesList.2474410767] - button -#. defaultMessage is: -#. Add shipping zone -#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json -msgctxt "button" -msgid "Add shipping zone" -msgstr "Pridať doručovaciu zónu" - -#. [src.staff.components.StaffListPage.802625341] - button -#. defaultMessage is: -#. Add staff member -#: build/locale/src/staff/components/StaffListPage/StaffListPage.json -msgctxt "button" -msgid "Add staff member" -msgstr "Pridať zamestnanca" - -#. [src.categories.components.CategoryList.435697837] - button -#. defaultMessage is: -#. Add subcategory -#: build/locale/src/categories/components/CategoryList/CategoryList.json -msgctxt "button" -msgid "Add subcategory" -msgstr "" - #. [src.attributes.components.AttributeProperties.673770329] - add attribute #. as column in product list table #. defaultMessage is: @@ -518,35 +374,14 @@ msgctxt "dialog header" msgid "Add tracking code" msgstr "" -#. [src.attributes.components.AttributeValues.254756045] - add attribute value -#. button -#. defaultMessage is: -#. Add value -#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json -msgctxt "add attribute value button" -msgid "Add value" -msgstr "" - #. [src.products.components.ProductVariantNavigation.2845381934] - button #. defaultMessage is: #. Add variant -#. [src.products.components.ProductVariants.2845381934] - button -#. defaultMessage is: -#. Add variant #: build/locale/src/products/components/ProductVariantNavigation/ProductVariantNavigation.json -#: build/locale/src/products/components/ProductVariants/ProductVariants.json msgctxt "button" msgid "Add variant" msgstr "Pridať variant" -#. [src.discounts.components.VoucherListPage.1536809153] - button -#. defaultMessage is: -#. Add voucher -#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json -msgctxt "button" -msgid "Add voucher" -msgstr "Pridajte poukaz" - #. [src.attributes.views.AttributeDetails.634268988] - added new attribute #. value #. defaultMessage is: @@ -604,14 +439,6 @@ msgctxt "description" msgid "Address line 2" msgstr "" -#. [src.customers.components.CustomerAddress.1320082647] - addres card header -#. defaultMessage is: -#. Address {addressNumber} -#: build/locale/src/customers/components/CustomerAddress/CustomerAddress.json -msgctxt "addres card header" -msgid "Address {addressNumber}" -msgstr "" - #. [src.attributes.components.AttributeValues.1565474525] - attribute values #. list: slug column header #. defaultMessage is: @@ -661,6 +488,46 @@ msgctxt "tax rate" msgid "Agricultural supplies" msgstr "" +#. [src.attributes.components.AttributeListPage.2417065806] - tab name +#. defaultMessage is: +#. All Attributes +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "tab name" +msgid "All Attributes" +msgstr "" + +#. [src.categories.components.CategoryListPage.4294878092] - tab name +#. defaultMessage is: +#. All Categories +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "tab name" +msgid "All Categories" +msgstr "" + +#. [src.collections.components.CollectionListPage.1631917001] - tab name +#. defaultMessage is: +#. All Collections +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "tab name" +msgid "All Collections" +msgstr "" + +#. [src.customers.components.CustomerListPage.477293306] - tab name +#. defaultMessage is: +#. All Customers +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "tab name" +msgid "All Customers" +msgstr "" + +#. [src.orders.components.OrderDraftListPage.551325728] - tab name +#. defaultMessage is: +#. All Drafts +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "tab name" +msgid "All Drafts" +msgstr "" + #. [src.orders.components.OrderListPage.875489544] - tab name #. defaultMessage is: #. All Orders @@ -678,22 +545,54 @@ msgctxt "section header" msgid "All Photos" msgstr "" -#. [src.products.components.ProductListPage.821159718] - tab name +#. [src.productTypes.components.ProductTypeListPage.1776073799] - tab name +#. defaultMessage is: +#. All Product Types +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "tab name" +msgid "All Product Types" +msgstr "" + +#. [src.products.components.ProductListFilter.821159718] - tab name #. defaultMessage is: #. All Products -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "tab name" msgid "All Products" msgstr "" -#. [src.categories.components.CategoryList.3229914152] - section header +#. [src.discounts.components.SaleListPage.3907768880] - tab name +#. defaultMessage is: +#. All Sales +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "tab name" +msgid "All Sales" +msgstr "" + +#. [src.staff.components.StaffListPage.2852350932] - tab name +#. defaultMessage is: +#. All Staff Members +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "tab name" +msgid "All Staff Members" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.3229914152] - section header #. defaultMessage is: #. All Subcategories -#: build/locale/src/categories/components/CategoryList/CategoryList.json +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json msgctxt "section header" msgid "All Subcategories" msgstr "" +#. [src.discounts.components.VoucherListPage.1112241061] - tab name +#. defaultMessage is: +#. All Vouchers +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "tab name" +msgid "All Vouchers" +msgstr "" + #. [src.taxes.components.TaxConfiguration.142803418] #. defaultMessage is: #. All products prices are entered with tax included @@ -801,6 +700,14 @@ msgctxt "description" msgid "Are you sure you want to delete collection's image?" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.36681973] +#. defaultMessage is: +#. Are you sure you want to delete draft #{number}? +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "description" +msgid "Are you sure you want to delete draft #{number}?" +msgstr "" + #. [menuDetailsDeleteMenuContent] #. defaultMessage is: #. Are you sure you want to delete menu {menuName}? @@ -817,6 +724,14 @@ msgctxt "description" msgid "Are you sure you want to delete this address from users address book?" msgstr "" +#. [src.products.views.2880386427] +#. defaultMessage is: +#. Are you sure you want to delete this image? +#: build/locale/src/products/views/ProductImage.json +msgctxt "description" +msgid "Are you sure you want to delete this image?" +msgstr "" + #. [src.attributes.components.AttributeDeleteDialog.3738429348] - dialog #. content #. defaultMessage is: @@ -867,12 +782,7 @@ msgstr "" #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this attribute} #. other{{displayQuantity} categories}}? -#. [src.categories.views.844574071] -#. defaultMessage is: -#. Are you sure you want to delete {counter,plural,one{this attribute} -#. other{{displayQuantity} categories}}? #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this attribute} " @@ -890,22 +800,33 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.2497542455] +#. [src.categories.views.CategoryList.2144707585] +#. defaultMessage is: +#. Are you sure you want to delete {counter,plural,one{this category} +#. other{{displayQuantity} categories}}? +#: build/locale/src/categories/views/CategoryList/CategoryList.json +msgctxt "description" +msgid "" +"Are you sure you want to delete {counter,plural,one{this category} " +"other{{displayQuantity} categories}}?" +msgstr "" + +#. [src.collections.views.CollectionList.2497542455] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this collection} " "other{{displayQuantity} collections}}?" msgstr "" -#. [src.customers.views.409347866] +#. [src.customers.views.CustomerList.409347866] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this customer} #. other{{displayQuantity} customers}}? -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this customer} " @@ -923,11 +844,11 @@ msgid "" "other{{displayQuantity} menus}}?" msgstr "" -#. [src.orders.views.1389231130] - dialog content +#. [src.orders.views.OrderDraftList.1389231130] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this order draft} #. other{{displayQuantity} orderDrafts}}? -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this order draft} " @@ -945,11 +866,11 @@ msgid "" "other{{displayQuantity} pages}}?" msgstr "" -#. [src.productTypes.views.2294091098] - dialog content +#. [src.productTypes.views.ProductTypeList.2294091098] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this product type} #. other{{displayQuantity} product types}}? -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this product type} " @@ -967,11 +888,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.discounts.views.2516361175] - dialog content +#. [src.discounts.views.SaleList.2516361175] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this sale} #. other{{displayQuantity} sales}}? -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this sale} " @@ -1000,17 +921,33 @@ msgid "" "other{{displayQuantity} variants}}?" msgstr "" -#. [src.discounts.views.1791926983] - dialog content +#. [src.discounts.views.VoucherList.1791926983] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this voucher} #. other{{displayQuantity} vouchers}}? -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this voucher} " "other{{displayQuantity} vouchers}}?" msgstr "" +#. [src.shipping.views.ShippingZoneDetails.131963671] - unassign country +#. defaultMessage is: +#. Are you sure you want to delete {countryName} from this shipping zone? +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country" +msgid "Are you sure you want to delete {countryName} from this shipping zone?" +msgstr "" + +#. [src.staff.views.8878988] +#. defaultMessage is: +#. Are you sure you want to delete {email} from staff members? +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "description" +msgid "Are you sure you want to delete {email} from staff members?" +msgstr "" + #. [src.customers.views.1927691511] - delete customer, dialog content #. defaultMessage is: #. Are you sure you want to delete {email}? @@ -1125,11 +1062,11 @@ msgctxt "description" msgid "Are you sure you want to mark this order as paid?" msgstr "" -#. [src.collections.views.1348793822] +#. [src.collections.views.CollectionList.1348793822] #. defaultMessage is: #. Are you sure you want to publish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to publish {counter,plural,one{this collection} " @@ -1158,30 +1095,6 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.orders.components.OrderDraftCancelDialog.3199827590] -#. defaultMessage is: -#. Are you sure you want to remove draft #{number}? -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "description" -msgid "Are you sure you want to remove draft #{number}?" -msgstr "" - -#. [src.products.views.672103788] -#. defaultMessage is: -#. Are you sure you want to remove this image? -#: build/locale/src/products/views/ProductImage.json -msgctxt "description" -msgid "Are you sure you want to remove this image?" -msgstr "" - -#. [src.shipping.views.ShippingZoneDetails.1790261672] - unassign country -#. defaultMessage is: -#. Are you sure you want to remove {countryName} from this shipping zone? -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country" -msgid "Are you sure you want to remove {countryName} from this shipping zone?" -msgstr "" - #. [src.staff.views.3945766678] #. defaultMessage is: #. Are you sure you want to remove {email} avatar? @@ -1190,14 +1103,6 @@ msgctxt "description" msgid "Are you sure you want to remove {email} avatar?" msgstr "" -#. [src.staff.views.2728048444] -#. defaultMessage is: -#. Are you sure you want to remove {email} from staff members? -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "description" -msgid "Are you sure you want to remove {email} from staff members?" -msgstr "" - #. [src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450] #. defaultMessage is: #. Are you sure you want to unassign {attributeName} from {productTypeName}? @@ -1278,11 +1183,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.3944356444] +#. [src.collections.views.CollectionList.3944356444] #. defaultMessage is: #. Are you sure you want to unpublish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to unpublish {counter,plural,one{this collection} " @@ -1443,6 +1348,15 @@ msgctxt "button" msgid "Assign products" msgstr "" +#. [src.attributes.components.AttributeValues.351422234] - assign attribute +#. value button +#. defaultMessage is: +#. Assign value +#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json +msgctxt "assign attribute value button" +msgid "Assign value" +msgstr "" + #. [src.attributes.components.AttributeDetails.3605174225] - attribute's slug #. short code label #. defaultMessage is: @@ -1521,6 +1435,14 @@ msgctxt "product attributes, section header" msgid "Attributes" msgstr "Atribúty" +#. [src.configuration.2326418019] +#. defaultMessage is: +#. Attributes and Product Typess +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Attributes and Product Typess" +msgstr "" + #. [src.attributes.views.AttributeList.3218248395] - deleted multiple #. attributes #. defaultMessage is: @@ -2304,6 +2226,22 @@ msgctxt "description" msgid "Country area" msgstr "" +#. [menuCreateDialogHeader] - dialog header +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json +msgctxt "dialog header" +msgid "Create Menu" +msgstr "" + +#. [menuListPageAddMenu] - button +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json +msgctxt "button" +msgid "Create Menu" +msgstr "" + #. [src.attributes.components.AttributePage.2855501559] - page title #. defaultMessage is: #. Create New Attribute @@ -2328,6 +2266,30 @@ msgctxt "header" msgid "Create New Shipping Zone" msgstr "" +#. [src.pages.components.PageDetailsPage.1068617485] - page header +#. defaultMessage is: +#. Create Page +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page header" +msgid "Create Page" +msgstr "" + +#. [src.orders.components.OrderProductAddDialog.1542417144] - dialog header +#. defaultMessage is: +#. Create Product +#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json +msgctxt "dialog header" +msgid "Create Product" +msgstr "" + +#. [src.products.components.ProductListPage.1542417144] - button +#. defaultMessage is: +#. Create Product +#: build/locale/src/products/components/ProductListPage/ProductListPage.json +msgctxt "button" +msgid "Create Product" +msgstr "" + #. [src.products.views.1542417144] - window title #. defaultMessage is: #. Create Product @@ -2360,11 +2322,19 @@ msgctxt "page header" msgid "Create Sale" msgstr "" -#. [src.products.views.2362587265] - window title +#. [src.discounts.components.SaleListPage.3866518732] - button +#. defaultMessage is: +#. Create Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "button" +msgid "Create Sale" +msgstr "" + +#. [src.products.views.2362587265] - header #. defaultMessage is: #. Create Variant #: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "window title" +msgctxt "header" msgid "Create Variant" msgstr "" @@ -2376,6 +2346,22 @@ msgctxt "page header" msgid "Create Voucher" msgstr "" +#. [src.attributes.components.AttributeListPage.3824684885] - button +#. defaultMessage is: +#. Create attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "button" +msgid "Create attribute" +msgstr "" + +#. [src.categories.components.CategoryListPage.1140231710] - button +#. defaultMessage is: +#. Create category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "button" +msgid "Create category" +msgstr "" + #. [src.categories.views.1140231710] - window title #. defaultMessage is: #. Create category @@ -2384,6 +2370,14 @@ msgctxt "window title" msgid "Create category" msgstr "" +#. [src.collections.components.CollectionListPage.686910896] - button +#. defaultMessage is: +#. Create collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "button" +msgid "Create collection" +msgstr "" + #. [src.collections.views.686910896] - window title #. defaultMessage is: #. Create collection @@ -2400,6 +2394,14 @@ msgctxt "window title" msgid "Create customer" msgstr "" +#. [menuItemsAddItem] - add new menu item +#. defaultMessage is: +#. Create new item +#: build/locale/src/navigation/components/MenuItems/MenuItems.json +msgctxt "add new menu item" +msgid "Create new item" +msgstr "" + #. [src.orders.components.OrderDraftListPage.2826235371] - button #. defaultMessage is: #. Create order @@ -2412,6 +2414,14 @@ msgctxt "button" msgid "Create order" msgstr "Vytvoriť objednávku" +#. [src.pages.components.PageListPage.3785394515] - button +#. defaultMessage is: +#. Create page +#: build/locale/src/pages/components/PageListPage/PageListPage.json +msgctxt "button" +msgid "Create page" +msgstr "" + #. [src.pages.views.3785394515] - header #. defaultMessage is: #. Create page @@ -2423,11 +2433,55 @@ msgstr "" #. [src.shipping.components.ShippingZoneRateDialog.16061680] - button #. defaultMessage is: #. Create rate +#. [src.shipping.components.ShippingZoneRates.16061680] - button +#. defaultMessage is: +#. Create rate #: build/locale/src/shipping/components/ShippingZoneRateDialog/ShippingZoneRateDialog.json +#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json msgctxt "button" msgid "Create rate" msgstr "" +#. [src.shipping.components.ShippingZonesList.2673544109] - button +#. defaultMessage is: +#. Create shipping zone +#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json +msgctxt "button" +msgid "Create shipping zone" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.770296100] - button +#. defaultMessage is: +#. Create subcategory +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json +msgctxt "button" +msgid "Create subcategory" +msgstr "" + +#. [src.products.components.ProductVariants.3989383405] - button +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/components/ProductVariants/ProductVariants.json +msgctxt "button" +msgid "Create variant" +msgstr "" + +#. [src.products.views.3989383405] - window title +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/views/ProductVariantCreate.json +msgctxt "window title" +msgid "Create variant" +msgstr "" + +#. [src.discounts.components.VoucherListPage.614836274] - button +#. defaultMessage is: +#. Create voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "button" +msgid "Create voucher" +msgstr "" + #. [src.collections.views.1597339737] #. defaultMessage is: #. Created collection @@ -2474,7 +2528,11 @@ msgstr "" #. [src.components.FilterBar.2340527467] #. defaultMessage is: #. Custom Filter +#. [src.components.SearchBar.2340527467] +#. defaultMessage is: +#. Custom Filter #: build/locale/src/components/FilterBar/FilterBar.json +#: build/locale/src/components/SearchBar/SearchBar.json msgctxt "description" msgid "Custom Filter" msgstr "" @@ -2730,10 +2788,18 @@ msgctxt "dialog title" msgid "Delete Collection" msgstr "" -#. [src.orders.views.1161115149] - dialog header +#. [src.products.views.1731766393] - dialog header +#. defaultMessage is: +#. Delete Image +#: build/locale/src/products/views/ProductImage.json +msgctxt "dialog header" +msgid "Delete Image" +msgstr "" + +#. [src.orders.views.OrderDraftList.1161115149] - dialog header #. defaultMessage is: #. Delete Order Drafts -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog header" msgid "Delete Order Drafts" msgstr "" @@ -2771,10 +2837,10 @@ msgctxt "dialog header" msgid "Delete Product Type" msgstr "" -#. [src.productTypes.views.4080551769] - dialog header +#. [src.productTypes.views.ProductTypeList.4080551769] - dialog header #. defaultMessage is: #. Delete Product Types -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog header" msgid "Delete Product Types" msgstr "" @@ -2803,10 +2869,10 @@ msgctxt "dialog header" msgid "Delete Sale" msgstr "" -#. [src.discounts.views.2809303671] - dialog header +#. [src.discounts.views.SaleList.2809303671] - dialog header #. defaultMessage is: #. Delete Sales -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog header" msgid "Delete Sales" msgstr "" @@ -2820,9 +2886,13 @@ msgctxt "custom search delete, dialog header" msgid "Delete Search" msgstr "" +#. [src.components.Filter.2173195312] - button +#. defaultMessage is: +#. Delete Search #. [src.components.TableFilter.2173195312] - button #. defaultMessage is: #. Delete Search +#: build/locale/src/components/Filter/FilterSearch.json #: build/locale/src/components/TableFilter/FilterChips.json msgctxt "button" msgid "Delete Search" @@ -2889,10 +2959,10 @@ msgctxt "dialog header" msgid "Delete Voucher" msgstr "" -#. [src.discounts.views.367317371] - dialog header +#. [src.discounts.views.VoucherList.367317371] - dialog header #. defaultMessage is: #. Delete Vouchers -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog header" msgid "Delete Vouchers" msgstr "" @@ -2926,11 +2996,11 @@ msgstr "" #. [src.categories.views.712767046] - dialog title #. defaultMessage is: #. Delete categories -#. [src.categories.views.712767046] - dialog title +#. [src.categories.views.CategoryList.712767046] - dialog title #. defaultMessage is: #. Delete categories #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "dialog title" msgid "Delete categories" msgstr "" @@ -2947,10 +3017,10 @@ msgctxt "dialog title" msgid "Delete category" msgstr "Odstrániť kategóriu" -#. [src.collections.views.3817188998] - dialog title +#. [src.collections.views.CollectionList.3817188998] - dialog title #. defaultMessage is: #. Delete collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Delete collections" msgstr "" @@ -2963,14 +3033,31 @@ msgctxt "dialog header" msgid "Delete customer" msgstr "" -#. [src.customers.views.1946482599] - dialog header +#. [src.customers.views.CustomerList.1946482599] - dialog header #. defaultMessage is: #. Delete customers -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "dialog header" msgid "Delete customers" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.632633254] - dialog header +#. defaultMessage is: +#. Delete draft order +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "dialog header" +msgid "Delete draft order" +msgstr "" + +#. [src.shipping.views.ShippingZoneDetails.1947090060] - unassign country, +#. dialog header +#. defaultMessage is: +#. Delete from shipping zone +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country, dialog header" +msgid "Delete from shipping zone" +msgstr "" + #. [src.collections.views.942133001] - dialog title #. defaultMessage is: #. Delete image @@ -3031,6 +3118,14 @@ msgctxt "description" msgid "Deleted collection" msgstr "Kolekcia odstránená" +#. [src.orders.views.OrderDraftList.1648805446] +#. defaultMessage is: +#. Deleted draft orders +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json +msgctxt "description" +msgid "Deleted draft orders" +msgstr "" + #. [menuListDeletedMenu] #. defaultMessage is: #. Deleted menu @@ -3630,14 +3725,6 @@ msgctxt "order history message" msgid "Fulfilled {quantity} items" msgstr "" -#. [src.orders.components.OrderListFilter.2943502192] - order -#. defaultMessage is: -#. Fulfillment Status -#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json -msgctxt "order" -msgid "Fulfillment Status" -msgstr "" - #. [src.orders.components.OrderHistory.3081292385] - order history message #. defaultMessage is: #. Fulfillment confirmation was sent to customer @@ -3794,12 +3881,12 @@ msgctxt "description" msgid "If empty, the preview shows what will be autogenerated." msgstr "Ak prázdne, náhľad zobrazuje výsledok automatického generovania" -#. [src.attributes.components.AttributeProperties.2519239682] +#. [src.attributes.components.AttributeProperties.4048785456] #. defaultMessage is: -#. If enable this attribute can be used as a column in product table. +#. If enabled this attribute can be used as a column in product table. #: build/locale/src/attributes/components/AttributeProperties/AttributeProperties.json msgctxt "description" -msgid "If enable this attribute can be used as a column in product table." +msgid "If enabled this attribute can be used as a column in product table." msgstr "" #. [src.attributes.components.AttributeProperties.787251583] @@ -3905,6 +3992,22 @@ msgctxt "product variant stock" msgid "Inventory" msgstr "Inventár" +#. [src.staff.components.StaffAddMemberDialog.1481503299] - dialog header +#. defaultMessage is: +#. Invite Staff Member +#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json +msgctxt "dialog header" +msgid "Invite Staff Member" +msgstr "" + +#. [src.staff.components.StaffListPage.797461521] - button +#. defaultMessage is: +#. Invite staff member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "button" +msgid "Invite staff member" +msgstr "" + #. [src.productTypes.components.ProductTypeShipping.2143413921] - switch #. button #. defaultMessage is: @@ -4257,6 +4360,14 @@ msgctxt "voucher requirement" msgid "Minimum quantity of items" msgstr "" +#. [src.configuration.1233229030] +#. defaultMessage is: +#. Miscellaneous +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Miscellaneous" +msgstr "" + #. [src.attributes.components.AttributeDetails.3334509011] - product attribute #. type #. defaultMessage is: @@ -5089,6 +5200,14 @@ msgctxt "description" msgid "Order History" msgstr "" +#. [src.orders.components.OrderListFilter.2222765704] +#. defaultMessage is: +#. Order Status +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +msgctxt "description" +msgid "Order Status" +msgstr "" + #. [src.orders.components.OrderHistory.1230178536] - order history message #. defaultMessage is: #. Order address was updated @@ -5105,13 +5224,13 @@ msgctxt "order history message" msgid "Order confirmation was sent to customer" msgstr "" -#. [src.orders.views.1872939752] +#. [src.orders.views.OrderDraftList.1872939752] #. defaultMessage is: #. Order draft succesfully created #. [src.orders.views.OrderList.1872939752] #. defaultMessage is: #. Order draft succesfully created -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json #: build/locale/src/orders/views/OrderList/OrderList.json msgctxt "description" msgid "Order draft succesfully created" @@ -5776,6 +5895,14 @@ msgctxt "description" msgid "Product Name" msgstr "" +#. [src.configuration.3655543906] +#. defaultMessage is: +#. Product Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Product Settings" +msgstr "" + #. [src.discounts.components.DiscountProducts.4257289053] #. defaultMessage is: #. Product Type @@ -5934,12 +6061,12 @@ msgctxt "order history message" msgid "Products were added to draft order" msgstr "" -#. [src.orders.components.OrderHistory.2574162126] - order history message +#. [src.orders.components.OrderHistory.4067959693] - order history message #. defaultMessage is: -#. Products were removed from draft order +#. Products were deleted from draft order #: build/locale/src/orders/components/OrderHistory/OrderHistory.json msgctxt "order history message" -msgid "Products were removed from draft order" +msgid "Products were deleted from draft order" msgstr "" #. [src.properties] @@ -5966,10 +6093,10 @@ msgctxt "description" msgid "Provided email address does not exist in our database." msgstr "" -#. [src.collections.views.1547167026] - publish collections +#. [src.collections.views.CollectionList.1547167026] - publish collections #. defaultMessage is: #. Publish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "publish collections" msgid "Publish" msgstr "Zverejniť" @@ -6006,10 +6133,10 @@ msgctxt "dialog header" msgid "Publish Products" msgstr "" -#. [src.collections.views.2823425739] - dialog title +#. [src.collections.views.CollectionList.2823425739] - dialog title #. defaultMessage is: #. Publish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Publish collections" msgstr "" @@ -6183,6 +6310,18 @@ msgctxt "shipping method price" msgid "Rate Price" msgstr "" +#. [src.orders.components.OrderListFilter.2415661583] - order status +#. defaultMessage is: +#. Ready to Capture +#. [src.orders.views.OrderList.readyToCapture] - order status +#. defaultMessage is: +#. Ready to Capture +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +#: build/locale/src/orders/views/OrderList/filters.json +msgctxt "order status" +msgid "Ready to Capture" +msgstr "" + #. [src.customers.components.CustomerOrders.3878642352] - section header #. defaultMessage is: #. Recent orders @@ -6231,22 +6370,14 @@ msgctxt "switch button" msgid "Release all stock allocated to this order" msgstr "" -#. [src.auth.components.LoginPage.3182284913] - login -#. defaultMessage is: -#. Remember me -#: build/locale/src/auth/components/LoginPage/LoginPage.json -msgctxt "login" -msgid "Remember me" -msgstr "" - #. [src.categories.views.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. -#. [src.categories.views.3488150607] +#. [src.categories.views.CategoryList.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "description" msgid "Remember this will also delete all products assigned to this category." msgstr "" @@ -6259,39 +6390,6 @@ msgctxt "button" msgid "Remove" msgstr "Odstrániť" -#. [src.products.views.490753666] - dialog header -#. defaultMessage is: -#. Remove Image -#: build/locale/src/products/views/ProductImage.json -msgctxt "dialog header" -msgid "Remove Image" -msgstr "" - -#. [src.orders.components.OrderDraftCancelDialog.500287069] - dialog header -#. defaultMessage is: -#. Remove draft order -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "dialog header" -msgid "Remove draft order" -msgstr "Odstrániť rozrobenú objednávku" - -#. [src.shipping.views.ShippingZoneDetails.254167659] - unassign country, -#. dialog header -#. defaultMessage is: -#. Remove from shipping zone -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country, dialog header" -msgid "Remove from shipping zone" -msgstr "" - -#. [src.orders.views.3880993240] -#. defaultMessage is: -#. Removed draft orders -#: build/locale/src/orders/views/OrderDraftList.json -msgctxt "description" -msgid "Removed draft orders" -msgstr "" - #. [src.pages.views.1457312643] #. defaultMessage is: #. Removed page @@ -6457,6 +6555,18 @@ msgctxt "button" msgid "Save" msgstr "Uložiť" +#. [src.components.Filter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#. [src.components.TableFilter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#: build/locale/src/components/Filter/FilterSearch.json +#: build/locale/src/components/TableFilter/FilterChips.json +msgctxt "button" +msgid "Save Custom Search" +msgstr "" + #. [src.components.SaveFilterTabDialog.1514415736] - save filter tab, header #. defaultMessage is: #. Save Custom Search @@ -6465,14 +6575,6 @@ msgctxt "save filter tab, header" msgid "Save Custom Search" msgstr "" -#. [src.components.TableFilter.1514415736] - button -#. defaultMessage is: -#. Save Custom Search -#: build/locale/src/components/TableFilter/FilterChips.json -msgctxt "button" -msgid "Save Custom Search" -msgstr "" - #. [src.products.components.ProductVariantCreatePage.2853608829] - button #. defaultMessage is: #. Save variant @@ -6489,6 +6591,14 @@ msgctxt "description" msgid "Saved changes" msgstr "" +#. [src.attributes.components.AttributeListPage.3916653510] +#. defaultMessage is: +#. Search Attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "description" +msgid "Search Attribute" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.902296540] #. defaultMessage is: #. Search Attributes @@ -6505,10 +6615,30 @@ msgctxt "description" msgid "Search Categories" msgstr "" +#. [src.categories.components.CategoryListPage.3841025483] +#. defaultMessage is: +#. Search Category +#. [src.translations.components.TranslationsEntitiesListPage.3841025483] +#. defaultMessage is: +#. Search Category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Category" +msgstr "" + +#. [src.collections.components.CollectionListPage.4057224233] +#. defaultMessage is: +#. Search Collection #. [src.components.AssignCollectionDialog.4057224233] #. defaultMessage is: #. Search Collection +#. [src.translations.components.TranslationsEntitiesListPage.4057224233] +#. defaultMessage is: +#. Search Collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json #: build/locale/src/components/AssignCollectionDialog/AssignCollectionDialog.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json msgctxt "description" msgid "Search Collection" msgstr "" @@ -6521,6 +6651,14 @@ msgctxt "description" msgid "Search Countries" msgstr "" +#. [src.customers.components.CustomerListPage.1643417013] +#. defaultMessage is: +#. Search Customer +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "description" +msgid "Search Customer" +msgstr "" + #. [src.orders.components.OrderCustomer.2433460203] #. defaultMessage is: #. Search Customers @@ -6529,6 +6667,14 @@ msgctxt "description" msgid "Search Customers" msgstr "" +#. [src.orders.components.OrderDraftListPage.77765281] +#. defaultMessage is: +#. Search Draft +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "description" +msgid "Search Draft" +msgstr "" + #. [src.translations.components.TranslationsCategoriesPage.1406947243] #. defaultMessage is: #. Search Engine Description @@ -6609,6 +6755,34 @@ msgctxt "description" msgid "Search Orders..." msgstr "" +#. [src.translations.components.TranslationsEntitiesListPage.2559018090] +#. defaultMessage is: +#. Search Page +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Page" +msgstr "" + +#. [src.translations.components.TranslationsEntitiesListPage.2105464697] +#. defaultMessage is: +#. Search Product +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product" +msgstr "" + +#. [src.productTypes.components.ProductTypeListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#. [src.translations.components.TranslationsEntitiesListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product Type" +msgstr "" + #. [src.components.AssignProductDialog.2850255786] #. defaultMessage is: #. Search Products @@ -6621,14 +6795,46 @@ msgctxt "description" msgid "Search Products" msgstr "" -#. [src.products.components.ProductListPage.3550330425] +#. [src.products.components.ProductListFilter.3550330425] #. defaultMessage is: #. Search Products... -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Search Products..." msgstr "" +#. [src.discounts.components.SaleListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#. [src.translations.components.TranslationsEntitiesListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Sale" +msgstr "" + +#. [src.staff.components.StaffListPage.61043583] +#. defaultMessage is: +#. Search Staff Member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "description" +msgid "Search Staff Member" +msgstr "" + +#. [src.discounts.components.VoucherListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#. [src.translations.components.TranslationsEntitiesListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Voucher" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.524117994] #. defaultMessage is: #. Search by attribute name @@ -6735,10 +6941,10 @@ msgctxt "description" msgid "Select all orders where:" msgstr "" -#. [src.products.components.ProductListPage.1421689426] +#. [src.products.components.ProductListFilter.1421689426] #. defaultMessage is: #. Select all products where: -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Select all products where:" msgstr "" @@ -6824,6 +7030,14 @@ msgctxt "description" msgid "Set plugin as Active" msgstr "" +#. [src.components.VisibilityCard.292404896] +#. defaultMessage is: +#. Set publication date +#: build/locale/src/components/VisibilityCard/VisibilityCard.json +msgctxt "description" +msgid "Set publication date" +msgstr "" + #. [src.discounts.shipment] - voucher discount #. defaultMessage is: #. Shipment @@ -7089,6 +7303,14 @@ msgctxt "staff section name" msgid "Staff Members" msgstr "" +#. [src.configuration.3140151600] +#. defaultMessage is: +#. Staff Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Staff Settings" +msgstr "" + #. [src.standard] - tax rate #. defaultMessage is: #. Standard @@ -8073,10 +8295,10 @@ msgctxt "payment status" msgid "Unpaid" msgstr "" -#. [src.collections.views.2237014112] - unpublish collections +#. [src.collections.views.CollectionList.2237014112] - unpublish collections #. defaultMessage is: #. Unpublish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "unpublish collections" msgid "Unpublish" msgstr "Stiahnuť zo zverejnenia" @@ -8113,10 +8335,10 @@ msgctxt "dialog header" msgid "Unpublish Products" msgstr "" -#. [src.collections.views.2637364047] - dialog title +#. [src.collections.views.CollectionList.2637364047] - dialog title #. defaultMessage is: #. Unpublish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Unpublish collections" msgstr "" @@ -8616,6 +8838,22 @@ msgctxt "description" msgid "ZIP / Postal code" msgstr "" +#. [src.productTypes.components.ProductTypeListPage.3479705616] - button +#. defaultMessage is: +#. create product type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "button" +msgid "create product type" +msgstr "" + +#. [src.staff.views.1308770978] - dialog header +#. defaultMessage is: +#. delete Staff User +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "dialog header" +msgid "delete Staff User" +msgstr "" + #. [orderPaymentVATDoesNotApply] - vat not included in order price #. defaultMessage is: #. does not apply @@ -8689,19 +8927,35 @@ msgctxt "product status is set as" msgid "is set as" msgstr "" -#. [src.staff.views.2240444792] - dialog header -#. defaultMessage is: -#. remove Staff User -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "dialog header" -msgid "remove Staff User" -msgstr "" - -#. [src.components.VisibilityCard.1815688500] +#. [src.collections.components.CollectionCreatePage.1815688500] - collection #. defaultMessage is: #. since {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.1815688500] - collection +#. defaultMessage is: +#. since {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "since {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.1815688500] - page +#. defaultMessage is: +#. since {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "since {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#. [src.products.components.ProductUpdatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "since {date}" msgstr "" @@ -8729,11 +8983,35 @@ msgctxt "weight" msgid "to {value} {unit}" msgstr "" -#. [src.components.VisibilityCard.2001551496] +#. [src.collections.components.CollectionCreatePage.2001551496] - collection #. defaultMessage is: #. will be visible from {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.2001551496] - collection +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "will be visible from {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.2001551496] - page +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "will be visible from {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#. [src.products.components.ProductUpdatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "will be visible from {date}" msgstr "" diff --git a/locale/sl.json b/locale/sl.json index b82f0fbde..f710d51dc 100644 --- a/locale/sl.json +++ b/locale/sl.json @@ -1 +1 @@ -{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.350498821":"","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.2519239682":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"Ime","src.categories.components.CategoryProducts.636461959":"Ime","src.collections.components.CollectionProducts.636461959":"Ime","src.products.components.ProductDetailsForm.636461959":"Ime","src.collections.components.CollectionDetails.636461959":"Ime","src.components.ProductList.636461959":"Ime","src.discounts.components.SaleInfo.636461959":"Ime","src.discounts.components.SaleList.636461959":"Ime","src.discounts.components.SaleSummary.636461959":"Ime","menuItemDialogNameLabel":"Ime","src.products.components.ProductVariants.636461959":"Ime","src.shipping.components.ShippingZoneRates.636461959":"Ime","src.shipping.components.ShippingZonesList.636461959":"Ime","src.staff.components.StaffList.636461959":"Ime","src.translations.components.TranslationsEntitiesList.636461959":"Ime","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.254756045":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.3182284913":"","src.auth.components.LoginPage.109182747":"Vpis","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"","src.categories.views.2004894945":"","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.3229914152":"","src.categories.components.CategoryList.435697837":"","src.categories.components.CategoryList.2159874182":"","src.categories.components.CategoryUpdatePage.2159874182":"","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.228151782":"","src.categories.components.CategoryProducts.2968663655":"Proizvodi","src.categories.components.CategoryUpdatePage.2968663655":"Proizvodi","src.discounts.components.DiscountCategories.2968663655":"Proizvodi","src.discounts.components.DiscountCollections.2968663655":"Proizvodi","src.products":"Proizvodi","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryProducts.3554578821":"","src.categories.components.CategoryProductsCard.3554578821":"","src.categories.components.CategoryProducts.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProducts.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.categories.components.CategoryProductsCard.4164156574":"","src.categories.views.1754466114":"","src.categories.views.1140231710":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.712767046":"","src.categories.views.299584400":"","src.categories.views.844574071":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.collections.components.CollectionCreatePage.3958681866":"","src.collections.components.CollectionListPage.3958681866":"","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"","src.availability":"","src.collections.components.CollectionList.3640454975":"Objavljeno","src.collections.components.CollectionProducts.3640454975":"Objavljeno","src.discounts.components.DiscountProducts.3640454975":"Objavljeno","src.components.ProductList.3640454975":"Objavljeno","src.products.components.ProductListPage.3640454975":"Objavljeno","src.pages.components.PageList.3640454975":"Objavljeno","src.products.views.ProductList.published":"Objavljeno","src.collections.components.CollectionList.2341910657":"Neobjavljeno","src.collections.components.CollectionProducts.2341910657":"Neobjavljeno","src.discounts.components.DiscountProducts.2341910657":"Neobjavljeno","src.components.ProductList.2341910657":"Neobjavljeno","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.686910896":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"","src.collections.views.2402899582":"","src.collections.views.2237014112":"Prekliči objavo","src.pages.views.2237014112":"Prekliči objavo","src.products.views.ProductList.2237014112":"Prekliči objavo","src.collections.views.1547167026":"Objavi","src.pages.views.1547167026":"Objavi","src.products.views.ProductList.1547167026":"Objavi","src.collections.views.2823425739":"","src.collections.views.1348793822":"","src.collections.views.2637364047":"","src.collections.views.3944356444":"","src.collections.views.3817188998":"","src.collections.views.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.4057224233":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"","src.components.ErrorMessageCard.2845142593":"","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.FilterBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.ProductList.1134347598":"Cena","src.orders.components.OrderDraftDetailsProducts.1134347598":"Cena","src.orders.components.OrderFulfillment.1134347598":"Cena","src.products.components.ProductListPage.1134347598":"Cena","src.products.components.ProductPricing.1134347598":"Cena","src.orders.components.OrderUnfulfilledItems.1134347598":"Cena","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"Cena","src.shipping.components.ShippingZoneRates.1134347598":"Cena","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"","src.pages.components.PageList.1459686496":"","src.products.components.ProductListFilter.1459686496":"","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"","src.products.views.ProductList.hidden":"","src.components.VisibilityCard.1815688500":"","src.components.VisibilityCard.2001551496":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","configurationMenuStaff":"","configurationMenuShipping":"","configurationMenuTaxes":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","src.customers.components.CustomerAddress.1320082647":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"","src.customers.components.CustomerAddresses.3517722732":"","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"Naslov","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"Opombe","src.orders.components.OrderCustomerNote.1520756907":"Opombe","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"Opomba","src.customers.components.CustomerDetails.577013340":"Opomba","src.customers.components.CustomerCreatePage.1934221653":"","src.customers.components.CustomerListPage.1934221653":"","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerOrders.3878642352":"Nedavni nakupi","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"","src.orders.components.OrderDraftList.4205493358":"","src.orders.components.OrderList.4205493358":"","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"","src.orders.components.OrderListFilter.1756106276":"","src.products.components.ProductListFilter.1756106276":"","src.products.components.ProductVariants.1756106276":"","src.customers.components.CustomerOrders.878013594":"Skupna vsota","src.orders.components.OrderDraftDetailsProducts.878013594":"Skupna vsota","src.orders.components.OrderDraftDetailsSummary.878013594":"Skupna vsota","src.orders.components.OrderDraftList.878013594":"Skupna vsota","src.orders.components.OrderFulfillment.878013594":"Skupna vsota","src.orders.components.OrderUnfulfilledItems.878013594":"Skupna vsota","src.orders.components.OrderList.878013594":"Skupna vsota","src.orders.components.OrderPayment.878013594":"Skupna vsota","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.1946482599":"","src.customers.views.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"Vrednost","src.discounts.components.SaleSummary.1148029984":"Vrednost","src.discounts.components.VoucherList.1148029984":"Vrednost","src.discounts.components.VoucherSummary.1148029984":"Vrednost","src.discounts.components.VoucherValue.1148029984":"Vrednost","src.products.components.ProductAttributes.1148029984":"Vrednost","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.1742771332":"","src.discounts.components.SalePricing.1099355007":"","src.products.components.ProductPricing.1099355007":"","src.products.components.ProductVariantPrice.1099355007":"","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"Države","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"Koda","src.discounts.components.VoucherSummary.78726751":"Koda","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.1536809153":"","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"Določeni izdelki","src.discounts.shipment":"","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.2809303671":"","src.discounts.views.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.367317371":"","src.discounts.views.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"","src.orders.views.OrderList.3528672691":"","src.confirm":"","src.delete":"","src.edit":"","src.manage":"","src.remove":"","src.save":"","src.show":"","src.undo":"","src.attributes":"","src.products.components.ProductAttributes.4153345096":"","src.categories":"Kategorije","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"Kolekcije","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"","src.customers":"","src.draftOrders":"","src.home":"Domov","src.navigation":"","src.orders":"Nakupi","src.pages":"","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"","src.taxes.components.CountryListPage.3955023266":"","src.translations":"","src.vouchers":"","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"","src.partiallyPaid":"","src.partiallyRefunded":"","src.refunded":"","src.unpaid":"","src.cancelled":"","src.draft":"","src.fulfilled":"","src.orders.views.OrderList.fulfilled":"","src.orders.components.OrderListFilter.1712863026":"","src.partiallyFulfilled":"","src.unfulfilled":"","src.orders.views.OrderList.unfulfilled":"","src.orders.components.OrderListFilter.1751787272":"","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","src.1395232177":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"Povezava","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"","src.orders.components.OrderDetailsPage.1854613983":"","src.orders.components.OrderDraftPage.1854613983":"","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"Naročnik","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"Naročnik","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"","src.orders.components.OrderCustomerEditDialog.1411666943":"","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.500287069":"","src.orders.components.OrderDraftCancelDialog.3199827590":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"","src.orders.components.OrderUnfulfilledItems.1895667608":"","src.orders.components.OrderDraftDetailsProducts.2796503714":"Količina","src.orders.components.OrderFulfillment.2796503714":"Količina","src.orders.components.OrderFulfillmentDialog.2796503714":"Količina","src.orders.components.OrderUnfulfilledItems.2796503714":"Količina","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"","src.orders.components.OrderPayment.781550514":"","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"","src.orders.components.OrderListPage.2826235371":"","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"","src.orders.components.OrderFulfillmentCancelDialog.732594284":"","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"SKU - številka izdelka","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"Številka za spremljanje naročila - tracking number","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.2574162126":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2943502192":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"Dostava oziroma pošiljanje","src.productTypes.components.ProductTypeShipping.1325966144":"Dostava oziroma pošiljanje","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"Dostava oziroma pošiljanje","src.orders.components.OrderPayment.3768782744":"","src.orders.components.OrderPayment.2320183694":"","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"","src.orders.components.OrderPayment.2845258362":"","src.orders.components.OrderPayment.2444197639":"","src.orders.components.OrderPayment.3500506678":"","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"Znesek","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.2775402904":"","src.products.components.ProductListPage.2775402904":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.3880993240":"","src.orders.views.1161115149":"","src.orders.views.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.755314116":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"Naslov","src.pages.components.PageList.1124600214":"Naslov","src.pages.components.PageInfo.1116746286":"Vsebina","src.translations.components.TranslationsPagesPage.1116746286":"Vsebina","src.pages.components.PageList.3478065224":"Razumljivi del URL naslova ali Slug","src.pages.components.PageSlug.3478065224":"Razumljivi del URL naslova ali Slug","src.productTypes.components.ProductTypeAttributes.3478065224":"Razumljivi del URL naslova ali Slug","src.pages.components.PageList.3767550649":"","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.1767905232":"","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.3785394515":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"","src.products.components.ProductVariantImages.3240888698":"","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"","src.products.components.ProductVariantStock.3841616483":"","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListPage.821159718":"","src.products.components.ProductListPage.1421689426":"","src.products.components.ProductListPage.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"","prodictStockInventoryLabel":"","src.products.components.ProductVariantStock.3490038570":"","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"","src.products.components.ProductVariants.2153006789":"","src.products.components.ProductVariantNavigation.2845381934":"","src.products.components.ProductVariants.2845381934":"","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1542417144":"","src.products.views.1591632382":"","src.products.views.490753666":"","src.products.views.672103788":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.1694086800":"","src.products.views.ProductList.224127438":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.products.views.2178905289":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1756957616":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.889729490":"","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.4080551769":"","src.productTypes.views.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.352297149":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2474410767":"","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.254167659":"","src.shipping.views.ShippingZoneDetails.1790261672":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"Ključ","src.siteSettings.components.SiteSettingsKeys.2446088470":"Ključ","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.3490059488":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"Dovoljenja","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.3247064221":"Aktiven","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.802625341":"","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"Uporabnik je aktiven","src.staff.views.2240444792":"","src.staff.views.2728048444":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file +{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.3824684885":"","src.attributes.components.AttributeListPage.2417065806":"","src.attributes.components.AttributeListPage.3916653510":"","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.4048785456":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"Ime","src.categories.components.CategoryProductList.636461959":"Ime","src.components.ProductList.636461959":"Ime","src.products.components.ProductList.636461959":"Ime","src.collections.components.CollectionDetails.636461959":"Ime","src.collections.components.CollectionProducts.636461959":"Ime","src.products.components.ProductDetailsForm.636461959":"Ime","src.discounts.components.SaleInfo.636461959":"Ime","src.discounts.components.SaleList.636461959":"Ime","src.discounts.components.SaleSummary.636461959":"Ime","menuItemDialogNameLabel":"Ime","src.plugins.components.PluginsList.636461959":"Ime","src.products.components.ProductVariants.636461959":"Ime","src.shipping.components.ShippingZoneRates.636461959":"Ime","src.shipping.components.ShippingZonesList.636461959":"Ime","src.staff.components.StaffList.636461959":"Ime","src.translations.components.TranslationsEntitiesList.636461959":"Ime","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.351422234":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.109182747":"Vpis","src.auth.components.LoginPage.4028609483":"","src.auth.components.NewPasswordPage.1915811227":"","src.auth.components.NewPasswordPage.1254879564":"","src.auth.components.NewPasswordPage.2799926859":"","src.auth.components.NewPasswordPage.4253911811":"","src.auth.components.NewPasswordPage.2342634351":"","src.auth.components.ResetPasswordPage.2370700732":"","src.auth.components.ResetPasswordPage.3663311080":"","src.auth.components.ResetPasswordSuccessPage.4066297200":"","src.auth.components.ResetPasswordSuccessPage.2245157344":"","src.auth.views.2388238158":"","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"","src.categories.views.2004894945":"","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.2159874182":"","src.categories.components.CategoryUpdatePage.2159874182":"","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.1140231710":"","src.categories.views.1140231710":"","src.categories.components.CategoryListPage.4294878092":"","src.categories.components.CategoryListPage.3841025483":"","src.translations.components.TranslationsEntitiesListPage.3841025483":"","src.categories.components.CategoryProductList.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductList.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProductList.3640454975":"Objavljeno","src.components.ProductList.3640454975":"Objavljeno","src.products.components.ProductList.3640454975":"Objavljeno","src.products.components.ProductListPage.3640454975":"Objavljeno","productStatusLabel":"Objavljeno","src.collections.components.CollectionList.3640454975":"Objavljeno","src.collections.components.CollectionProducts.3640454975":"Objavljeno","src.discounts.components.DiscountProducts.3640454975":"Objavljeno","src.pages.components.PageList.3640454975":"Objavljeno","src.products.views.ProductList.published":"Objavljeno","src.categories.components.CategoryProductList.1134347598":"Cena","src.orders.components.OrderFulfillment.1134347598":"Cena","src.products.components.ProductList.1134347598":"Cena","src.products.components.ProductListPage.1134347598":"Cena","src.products.components.ProductPricing.1134347598":"Cena","src.components.ProductList.1134347598":"Cena","src.orders.components.OrderDraftDetailsProducts.1134347598":"Cena","src.orders.components.OrderUnfulfilledItems.1134347598":"Cena","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"Cena","src.shipping.components.ShippingZoneRates.1134347598":"Cena","src.categories.components.CategoryProductList.2341910657":"Neobjavljeno","src.products.components.ProductList.2341910657":"Neobjavljeno","src.collections.components.CollectionList.2341910657":"Neobjavljeno","src.collections.components.CollectionProducts.2341910657":"Neobjavljeno","src.discounts.components.DiscountProducts.2341910657":"Neobjavljeno","src.components.ProductList.2341910657":"Neobjavljeno","src.categories.components.CategoryProductList.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.products.components.ProductList.1657559629":"","src.categories.components.CategoryProducts.4164156574":"","src.categories.components.CategoryProducts.3554578821":"","src.categories.components.CategoryUpdatePage.2968663655":"Proizvodi","src.discounts.components.DiscountCategories.2968663655":"Proizvodi","src.discounts.components.DiscountCollections.2968663655":"Proizvodi","src.products":"Proizvodi","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryUpdatePage.3229914152":"","src.categories.components.CategoryUpdatePage.770296100":"","src.categories.views.1754466114":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.CategoryList.3488150607":"","src.categories.views.712767046":"","src.categories.views.CategoryList.712767046":"","src.categories.views.299584400":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.categories.views.CategoryList.2144707585":"","src.collections.components.CollectionCreatePage.3958681866":"","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionCreatePage.2001551496":"","src.collections.components.CollectionDetailsPage.2001551496":"","src.pages.components.PageDetailsPage.2001551496":"","src.products.components.ProductCreatePage.2001551496":"","src.products.components.ProductUpdatePage.2001551496":"","src.collections.components.CollectionCreatePage.1815688500":"","src.collections.components.CollectionDetailsPage.1815688500":"","src.pages.components.PageDetailsPage.1815688500":"","src.products.components.ProductCreatePage.1815688500":"","src.products.components.ProductUpdatePage.1815688500":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"","src.availability":"","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionListPage.686910896":"","src.collections.views.686910896":"","src.collections.components.CollectionListPage.1631917001":"","src.collections.components.CollectionListPage.4057224233":"","src.components.AssignCollectionDialog.4057224233":"","src.translations.components.TranslationsEntitiesListPage.4057224233":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"","src.collections.views.2402899582":"","src.collections.views.CollectionList.2237014112":"Prekliči objavo","src.pages.views.2237014112":"Prekliči objavo","src.products.views.ProductList.2237014112":"Prekliči objavo","src.collections.views.CollectionList.1547167026":"Objavi","src.pages.views.1547167026":"Objavi","src.products.views.ProductList.1547167026":"Objavi","src.collections.views.CollectionList.2823425739":"","src.collections.views.CollectionList.1348793822":"","src.collections.views.CollectionList.2637364047":"","src.collections.views.CollectionList.3944356444":"","src.collections.views.CollectionList.3817188998":"","src.collections.views.CollectionList.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"","src.components.ErrorMessageCard.2845142593":"","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.Filter.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.Filter.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.FilterBar.2340527467":"","src.components.SearchBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"","src.pages.components.PageList.1459686496":"","src.products.components.ProductListFilter.1459686496":"","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"","src.products.views.ProductList.hidden":"","src.components.VisibilityCard.292404896":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","src.configuration.2326418019":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","src.configuration.3655543906":"","configurationMenuShipping":"","configurationMenuTaxes":"","src.configuration.3140151600":"","configurationMenuStaff":"","src.configuration.1233229030":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","configurationPluginsPages":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"","src.customers.components.CustomerAddresses.3517722732":"","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"Naslov","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"Opombe","src.orders.components.OrderCustomerNote.1520756907":"Opombe","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"Opomba","src.customers.components.CustomerDetails.577013340":"Opomba","src.customers.components.CustomerCreatePage.1934221653":"","src.customers.components.CustomerListPage.1934221653":"","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerListPage.477293306":"","src.customers.components.CustomerListPage.1643417013":"","src.customers.components.CustomerOrders.3878642352":"Nedavni nakupi","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"","src.orders.components.OrderDraftList.4205493358":"","src.orders.components.OrderList.4205493358":"","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"","src.orders.components.OrderListFilter.1756106276":"","src.plugins.components.PluginInfo.1756106276":"","src.products.components.ProductListFilter.1756106276":"","src.products.components.ProductVariants.1756106276":"","src.customers.components.CustomerOrders.878013594":"Skupna vsota","src.orders.components.OrderDraftDetailsProducts.878013594":"Skupna vsota","src.orders.components.OrderDraftDetailsSummary.878013594":"Skupna vsota","src.orders.components.OrderDraftList.878013594":"Skupna vsota","src.orders.components.OrderFulfillment.878013594":"Skupna vsota","src.orders.components.OrderUnfulfilledItems.878013594":"Skupna vsota","src.orders.components.OrderList.878013594":"Skupna vsota","src.orders.components.OrderPayment.878013594":"Skupna vsota","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.CustomerList.1946482599":"","src.customers.views.CustomerList.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","src.discounts.components.SaleListPage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"Vrednost","src.discounts.components.SaleSummary.1148029984":"Vrednost","src.discounts.components.VoucherList.1148029984":"Vrednost","src.discounts.components.VoucherSummary.1148029984":"Vrednost","src.discounts.components.VoucherValue.1148029984":"Vrednost","src.products.components.ProductAttributes.1148029984":"Vrednost","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.3907768880":"","src.discounts.components.SaleListPage.1866913828":"","src.translations.components.TranslationsEntitiesListPage.1866913828":"","src.discounts.components.SalePricing.1099355007":"","src.products.components.ProductPricing.1099355007":"","src.products.components.ProductVariantPrice.1099355007":"","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"Države","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"Koda","src.discounts.components.VoucherSummary.78726751":"Koda","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.614836274":"","src.discounts.components.VoucherListPage.1112241061":"","src.discounts.components.VoucherListPage.1930485532":"","src.translations.components.TranslationsEntitiesListPage.1930485532":"","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"Določeni izdelki","src.discounts.shipment":"","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.SaleList.2809303671":"","src.discounts.views.SaleList.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.VoucherList.367317371":"","src.discounts.views.VoucherList.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.somethingWentWrong":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"","src.orders.views.OrderList.3528672691":"","src.confirm":"","src.delete":"","src.edit":"","src.manage":"","src.remove":"","src.save":"","src.show":"","src.undo":"","src.attributes":"","src.products.components.ProductAttributes.4153345096":"","src.categories":"Kategorije","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"Kolekcije","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"","src.customers":"","src.draftOrders":"","src.home":"Domov","src.navigation":"","src.orders":"Nakupi","src.pages":"","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.plugins":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"","src.taxes.components.CountryListPage.3955023266":"","src.translations":"","src.vouchers":"","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"","src.partiallyPaid":"","src.partiallyRefunded":"","src.refunded":"","src.unpaid":"","src.cancelled":"","src.draft":"","src.fulfilled":"","src.orders.views.OrderList.fulfilled":"","src.orders.components.OrderListFilter.1712863026":"","src.partiallyFulfilled":"","src.unfulfilled":"","src.orders.views.OrderList.unfulfilled":"","src.orders.components.OrderListFilter.1751787272":"","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"Povezava","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"","src.orders.components.OrderDetailsPage.1854613983":"","src.orders.components.OrderDraftPage.1854613983":"","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"Naročnik","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"Naročnik","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"","src.orders.components.OrderCustomerEditDialog.1411666943":"","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.632633254":"","src.orders.components.OrderDraftCancelDialog.36681973":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"","src.orders.components.OrderUnfulfilledItems.1895667608":"","src.orders.components.OrderDraftDetailsProducts.2796503714":"Količina","src.orders.components.OrderFulfillment.2796503714":"Količina","src.orders.components.OrderFulfillmentDialog.2796503714":"Količina","src.orders.components.OrderUnfulfilledItems.2796503714":"Količina","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"","src.orders.components.OrderPayment.781550514":"","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"","src.orders.components.OrderListPage.2826235371":"","src.orders.components.OrderDraftListPage.551325728":"","src.orders.components.OrderDraftListPage.77765281":"","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"","src.orders.components.OrderFulfillmentCancelDialog.732594284":"","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"SKU - številka izdelka","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"Številka za spremljanje naročila - tracking number","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.4067959693":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2415661583":"","src.orders.views.OrderList.readyToCapture":"","src.orders.components.OrderListFilter.2222765704":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"Dostava oziroma pošiljanje","src.productTypes.components.ProductTypeShipping.1325966144":"Dostava oziroma pošiljanje","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"Dostava oziroma pošiljanje","src.orders.components.OrderPayment.3768782744":"","src.orders.components.OrderPayment.2320183694":"","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"","src.orders.components.OrderPayment.2845258362":"","src.orders.components.OrderPayment.2444197639":"","src.orders.components.OrderPayment.3500506678":"","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"Znesek","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.1542417144":"","src.products.components.ProductListPage.1542417144":"","src.products.views.1542417144":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.OrderDraftList.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.OrderDraftList.1648805446":"","src.orders.views.OrderDraftList.1161115149":"","src.orders.views.OrderDraftList.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.1068617485":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"Naslov","src.pages.components.PageList.1124600214":"Naslov","src.pages.components.PageInfo.1116746286":"Vsebina","src.translations.components.TranslationsPagesPage.1116746286":"Vsebina","src.pages.components.PageList.3478065224":"Razumljivi del URL naslova ali Slug","src.pages.components.PageSlug.3478065224":"Razumljivi del URL naslova ali Slug","src.productTypes.components.ProductTypeAttributes.3478065224":"Razumljivi del URL naslova ali Slug","src.pages.components.PageList.3767550649":"","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.3785394515":"","src.pages.views.3785394515":"","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.plugins.components.PluginInfo.3425535100":"","src.plugins.components.PluginsDetailsPage.3425535100":"","src.plugins.components.PluginInfo.1049131348":"","src.plugins.components.PluginInfo.4013064767":"","src.plugins.components.PluginsDetailsPage.3352026836":"","src.plugins.components.PluginsDetailsPage.2277745418":"","src.plugins.components.PluginsDetailsPage.1970881031":"","src.plugins.components.PluginSettings.1970881031":"","src.plugins.components.PluginsDetailsPage.4241018152":"","src.plugins.components.PluginsList.3247064221":"Aktiven","src.staff.components.StaffList.3247064221":"Aktiven","src.plugins.components.PluginsList.4120604650":"","src.plugins.components.PluginsList.666641390":"","src.plugins.views.100549097":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"","src.products.components.ProductVariantImages.3240888698":"","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"","src.products.components.ProductVariantStock.3841616483":"","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListFilter.821159718":"","src.products.components.ProductListFilter.1421689426":"","src.products.components.ProductListFilter.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"","prodictStockInventoryLabel":"","src.products.components.ProductVariantStock.3490038570":"","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"","src.products.components.ProductVariants.2153006789":"","src.products.components.ProductVariantNavigation.2845381934":"","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.3989383405":"","src.products.views.3989383405":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1591632382":"","src.products.views.1731766393":"","src.products.views.2880386427":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1217376589":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.3479705616":"","src.productTypes.components.ProductTypeListPage.1776073799":"","src.productTypes.components.ProductTypeListPage.3420445375":"","src.translations.components.TranslationsEntitiesListPage.3420445375":"","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.ProductTypeList.4080551769":"","src.productTypes.views.ProductTypeList.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRates.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2673544109":"","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.1947090060":"","src.shipping.views.ShippingZoneDetails.131963671":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"Ključ","src.siteSettings.components.SiteSettingsKeys.2446088470":"Ključ","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.1481503299":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"Dovoljenja","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.797461521":"","src.staff.components.StaffListPage.2852350932":"","src.staff.components.StaffListPage.61043583":"","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"Uporabnik je aktiven","src.staff.views.1308770978":"","src.staff.views.8878988":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.2105464697":"","src.translations.components.TranslationsEntitiesListPage.2559018090":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file diff --git a/locale/sl.po b/locale/sl.po index a324d9eba..942b5df4a 100644 --- a/locale/sl.po +++ b/locale/sl.po @@ -3,7 +3,7 @@ # msgid "" msgstr "" -"POT-Creation-Date: 2019-09-06T13:56:36.897Z\n" +"POT-Creation-Date: 2019-09-16T15:25:09.340Z\n" "Last-Translator: Nix Nix , 2019\n" "Language-Team: Slovenian (https://www.transifex.com/mirumee/teams/34782/sl/)\n" "MIME-Version: 1.0\n" @@ -141,22 +141,6 @@ msgctxt "create new menu item, header" msgid "Add Item" msgstr "" -#. [menuCreateDialogHeader] - dialog header -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json -msgctxt "dialog header" -msgid "Add Menu" -msgstr "" - -#. [menuListPageAddMenu] - button -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json -msgctxt "button" -msgid "Add Menu" -msgstr "" - #. [src.siteSettings.components.SiteSettingsKeyDialog.1238948746] - dialog #. header #. defaultMessage is: @@ -166,14 +150,6 @@ msgctxt "dialog header" msgid "Add New Authorization Key" msgstr "" -#. [src.pages.components.PageDetailsPage.755314116] - page header -#. defaultMessage is: -#. Add Page -#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json -msgctxt "page header" -msgid "Add Page" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.2892088870] - dialog header #. defaultMessage is: #. Add Price Rate @@ -182,38 +158,6 @@ msgctxt "dialog header" msgid "Add Price Rate" msgstr "" -#. [src.orders.components.OrderProductAddDialog.2775402904] - dialog header -#. defaultMessage is: -#. Add Product -#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json -msgctxt "dialog header" -msgid "Add Product" -msgstr "" - -#. [src.products.components.ProductListPage.2775402904] - button -#. defaultMessage is: -#. Add Product -#: build/locale/src/products/components/ProductListPage/ProductListPage.json -msgctxt "button" -msgid "Add Product" -msgstr "" - -#. [src.discounts.components.SaleListPage.1742771332] - button -#. defaultMessage is: -#. Add Sale -#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json -msgctxt "button" -msgid "Add Sale" -msgstr "" - -#. [src.staff.components.StaffAddMemberDialog.3490059488] - dialog header -#. defaultMessage is: -#. Add Staff Member -#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json -msgctxt "dialog header" -msgid "Add Staff Member" -msgstr "" - #. [src.attributes.components.AttributeValueEditDialog.1841790893] - add #. attribute value #. defaultMessage is: @@ -223,14 +167,6 @@ msgctxt "add attribute value" msgid "Add Value" msgstr "" -#. [src.products.views.2178905289] - header -#. defaultMessage is: -#. Add Variant -#: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "header" -msgid "Add Variant" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.1397795758] - add weight #. based shipping method, dialog header #. defaultMessage is: @@ -248,14 +184,6 @@ msgctxt "button" msgid "Add address" msgstr "" -#. [src.attributes.components.AttributeListPage.350498821] - button -#. defaultMessage is: -#. Add attribute -#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json -msgctxt "button" -msgid "Add attribute" -msgstr "" - #. [src.siteSettings.components.SiteSettingsKeyDialog.50561933] - button #. defaultMessage is: #. Add authentication @@ -264,14 +192,6 @@ msgctxt "button" msgid "Add authentication" msgstr "" -#. [src.categories.components.CategoryListPage.228151782] - button -#. defaultMessage is: -#. Add category -#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json -msgctxt "button" -msgid "Add category" -msgstr "" - #. [src.collections.components.CollectionCreatePage.3958681866] - page header #. defaultMessage is: #. Add collection @@ -280,14 +200,6 @@ msgctxt "page header" msgid "Add collection" msgstr "" -#. [src.collections.components.CollectionListPage.3958681866] - button -#. defaultMessage is: -#. Add collection -#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json -msgctxt "button" -msgid "Add collection" -msgstr "" - #. [src.customers.components.CustomerCreatePage.1934221653] - page header #. defaultMessage is: #. Add customer @@ -320,14 +232,6 @@ msgctxt "button" msgid "Add key" msgstr "" -#. [menuItemsAddItem] - add new menu item -#. defaultMessage is: -#. Add new item -#: build/locale/src/navigation/components/MenuItems/MenuItems.json -msgctxt "add new menu item" -msgid "Add new item" -msgstr "" - #. [menuItemsPlaceholder] #. defaultMessage is: #. Add new menu item to begin creating menu @@ -362,14 +266,6 @@ msgctxt "button" msgid "Add or Edit Link" msgstr "" -#. [src.pages.components.PageListPage.1767905232] - button -#. defaultMessage is: -#. Add page -#: build/locale/src/pages/components/PageListPage/PageListPage.json -msgctxt "button" -msgid "Add page" -msgstr "" - #. [src.categories.components.CategoryProducts.3554578821] - button #. defaultMessage is: #. Add product @@ -378,14 +274,6 @@ msgctxt "button" msgid "Add product" msgstr "" -#. [src.productTypes.components.ProductTypeListPage.889729490] - button -#. defaultMessage is: -#. Add product type -#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json -msgctxt "button" -msgid "Add product type" -msgstr "" - #. [src.orders.components.OrderDraftDetails.2528459381] - button #. defaultMessage is: #. Add products @@ -394,14 +282,6 @@ msgctxt "button" msgid "Add products" msgstr "" -#. [src.shipping.components.ShippingZoneRates.352297149] - button -#. defaultMessage is: -#. Add rate -#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json -msgctxt "button" -msgid "Add rate" -msgstr "" - #. [src.categories.components.CategoryCreatePage.2563994280] #. defaultMessage is: #. Add search engine title and description to make this category easier to @@ -463,30 +343,6 @@ msgctxt "button" msgid "Add shipping carrier" msgstr "" -#. [src.shipping.components.ShippingZonesList.2474410767] - button -#. defaultMessage is: -#. Add shipping zone -#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json -msgctxt "button" -msgid "Add shipping zone" -msgstr "" - -#. [src.staff.components.StaffListPage.802625341] - button -#. defaultMessage is: -#. Add staff member -#: build/locale/src/staff/components/StaffListPage/StaffListPage.json -msgctxt "button" -msgid "Add staff member" -msgstr "" - -#. [src.categories.components.CategoryList.435697837] - button -#. defaultMessage is: -#. Add subcategory -#: build/locale/src/categories/components/CategoryList/CategoryList.json -msgctxt "button" -msgid "Add subcategory" -msgstr "" - #. [src.attributes.components.AttributeProperties.673770329] - add attribute #. as column in product list table #. defaultMessage is: @@ -514,35 +370,14 @@ msgctxt "dialog header" msgid "Add tracking code" msgstr "" -#. [src.attributes.components.AttributeValues.254756045] - add attribute value -#. button -#. defaultMessage is: -#. Add value -#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json -msgctxt "add attribute value button" -msgid "Add value" -msgstr "" - #. [src.products.components.ProductVariantNavigation.2845381934] - button #. defaultMessage is: #. Add variant -#. [src.products.components.ProductVariants.2845381934] - button -#. defaultMessage is: -#. Add variant #: build/locale/src/products/components/ProductVariantNavigation/ProductVariantNavigation.json -#: build/locale/src/products/components/ProductVariants/ProductVariants.json msgctxt "button" msgid "Add variant" msgstr "" -#. [src.discounts.components.VoucherListPage.1536809153] - button -#. defaultMessage is: -#. Add voucher -#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json -msgctxt "button" -msgid "Add voucher" -msgstr "" - #. [src.attributes.views.AttributeDetails.634268988] - added new attribute #. value #. defaultMessage is: @@ -600,14 +435,6 @@ msgctxt "description" msgid "Address line 2" msgstr "" -#. [src.customers.components.CustomerAddress.1320082647] - addres card header -#. defaultMessage is: -#. Address {addressNumber} -#: build/locale/src/customers/components/CustomerAddress/CustomerAddress.json -msgctxt "addres card header" -msgid "Address {addressNumber}" -msgstr "" - #. [src.attributes.components.AttributeValues.1565474525] - attribute values #. list: slug column header #. defaultMessage is: @@ -657,6 +484,46 @@ msgctxt "tax rate" msgid "Agricultural supplies" msgstr "" +#. [src.attributes.components.AttributeListPage.2417065806] - tab name +#. defaultMessage is: +#. All Attributes +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "tab name" +msgid "All Attributes" +msgstr "" + +#. [src.categories.components.CategoryListPage.4294878092] - tab name +#. defaultMessage is: +#. All Categories +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "tab name" +msgid "All Categories" +msgstr "" + +#. [src.collections.components.CollectionListPage.1631917001] - tab name +#. defaultMessage is: +#. All Collections +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "tab name" +msgid "All Collections" +msgstr "" + +#. [src.customers.components.CustomerListPage.477293306] - tab name +#. defaultMessage is: +#. All Customers +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "tab name" +msgid "All Customers" +msgstr "" + +#. [src.orders.components.OrderDraftListPage.551325728] - tab name +#. defaultMessage is: +#. All Drafts +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "tab name" +msgid "All Drafts" +msgstr "" + #. [src.orders.components.OrderListPage.875489544] - tab name #. defaultMessage is: #. All Orders @@ -674,22 +541,54 @@ msgctxt "section header" msgid "All Photos" msgstr "" -#. [src.products.components.ProductListPage.821159718] - tab name +#. [src.productTypes.components.ProductTypeListPage.1776073799] - tab name +#. defaultMessage is: +#. All Product Types +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "tab name" +msgid "All Product Types" +msgstr "" + +#. [src.products.components.ProductListFilter.821159718] - tab name #. defaultMessage is: #. All Products -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "tab name" msgid "All Products" msgstr "" -#. [src.categories.components.CategoryList.3229914152] - section header +#. [src.discounts.components.SaleListPage.3907768880] - tab name +#. defaultMessage is: +#. All Sales +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "tab name" +msgid "All Sales" +msgstr "" + +#. [src.staff.components.StaffListPage.2852350932] - tab name +#. defaultMessage is: +#. All Staff Members +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "tab name" +msgid "All Staff Members" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.3229914152] - section header #. defaultMessage is: #. All Subcategories -#: build/locale/src/categories/components/CategoryList/CategoryList.json +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json msgctxt "section header" msgid "All Subcategories" msgstr "" +#. [src.discounts.components.VoucherListPage.1112241061] - tab name +#. defaultMessage is: +#. All Vouchers +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "tab name" +msgid "All Vouchers" +msgstr "" + #. [src.taxes.components.TaxConfiguration.142803418] #. defaultMessage is: #. All products prices are entered with tax included @@ -797,6 +696,14 @@ msgctxt "description" msgid "Are you sure you want to delete collection's image?" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.36681973] +#. defaultMessage is: +#. Are you sure you want to delete draft #{number}? +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "description" +msgid "Are you sure you want to delete draft #{number}?" +msgstr "" + #. [menuDetailsDeleteMenuContent] #. defaultMessage is: #. Are you sure you want to delete menu {menuName}? @@ -813,6 +720,14 @@ msgctxt "description" msgid "Are you sure you want to delete this address from users address book?" msgstr "" +#. [src.products.views.2880386427] +#. defaultMessage is: +#. Are you sure you want to delete this image? +#: build/locale/src/products/views/ProductImage.json +msgctxt "description" +msgid "Are you sure you want to delete this image?" +msgstr "" + #. [src.attributes.components.AttributeDeleteDialog.3738429348] - dialog #. content #. defaultMessage is: @@ -863,12 +778,7 @@ msgstr "" #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this attribute} #. other{{displayQuantity} categories}}? -#. [src.categories.views.844574071] -#. defaultMessage is: -#. Are you sure you want to delete {counter,plural,one{this attribute} -#. other{{displayQuantity} categories}}? #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this attribute} " @@ -886,22 +796,33 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.2497542455] +#. [src.categories.views.CategoryList.2144707585] +#. defaultMessage is: +#. Are you sure you want to delete {counter,plural,one{this category} +#. other{{displayQuantity} categories}}? +#: build/locale/src/categories/views/CategoryList/CategoryList.json +msgctxt "description" +msgid "" +"Are you sure you want to delete {counter,plural,one{this category} " +"other{{displayQuantity} categories}}?" +msgstr "" + +#. [src.collections.views.CollectionList.2497542455] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this collection} " "other{{displayQuantity} collections}}?" msgstr "" -#. [src.customers.views.409347866] +#. [src.customers.views.CustomerList.409347866] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this customer} #. other{{displayQuantity} customers}}? -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this customer} " @@ -919,11 +840,11 @@ msgid "" "other{{displayQuantity} menus}}?" msgstr "" -#. [src.orders.views.1389231130] - dialog content +#. [src.orders.views.OrderDraftList.1389231130] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this order draft} #. other{{displayQuantity} orderDrafts}}? -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this order draft} " @@ -941,11 +862,11 @@ msgid "" "other{{displayQuantity} pages}}?" msgstr "" -#. [src.productTypes.views.2294091098] - dialog content +#. [src.productTypes.views.ProductTypeList.2294091098] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this product type} #. other{{displayQuantity} product types}}? -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this product type} " @@ -963,11 +884,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.discounts.views.2516361175] - dialog content +#. [src.discounts.views.SaleList.2516361175] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this sale} #. other{{displayQuantity} sales}}? -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this sale} " @@ -996,17 +917,33 @@ msgid "" "other{{displayQuantity} variants}}?" msgstr "" -#. [src.discounts.views.1791926983] - dialog content +#. [src.discounts.views.VoucherList.1791926983] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this voucher} #. other{{displayQuantity} vouchers}}? -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this voucher} " "other{{displayQuantity} vouchers}}?" msgstr "" +#. [src.shipping.views.ShippingZoneDetails.131963671] - unassign country +#. defaultMessage is: +#. Are you sure you want to delete {countryName} from this shipping zone? +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country" +msgid "Are you sure you want to delete {countryName} from this shipping zone?" +msgstr "" + +#. [src.staff.views.8878988] +#. defaultMessage is: +#. Are you sure you want to delete {email} from staff members? +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "description" +msgid "Are you sure you want to delete {email} from staff members?" +msgstr "" + #. [src.customers.views.1927691511] - delete customer, dialog content #. defaultMessage is: #. Are you sure you want to delete {email}? @@ -1121,11 +1058,11 @@ msgctxt "description" msgid "Are you sure you want to mark this order as paid?" msgstr "" -#. [src.collections.views.1348793822] +#. [src.collections.views.CollectionList.1348793822] #. defaultMessage is: #. Are you sure you want to publish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to publish {counter,plural,one{this collection} " @@ -1154,30 +1091,6 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.orders.components.OrderDraftCancelDialog.3199827590] -#. defaultMessage is: -#. Are you sure you want to remove draft #{number}? -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "description" -msgid "Are you sure you want to remove draft #{number}?" -msgstr "" - -#. [src.products.views.672103788] -#. defaultMessage is: -#. Are you sure you want to remove this image? -#: build/locale/src/products/views/ProductImage.json -msgctxt "description" -msgid "Are you sure you want to remove this image?" -msgstr "" - -#. [src.shipping.views.ShippingZoneDetails.1790261672] - unassign country -#. defaultMessage is: -#. Are you sure you want to remove {countryName} from this shipping zone? -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country" -msgid "Are you sure you want to remove {countryName} from this shipping zone?" -msgstr "" - #. [src.staff.views.3945766678] #. defaultMessage is: #. Are you sure you want to remove {email} avatar? @@ -1186,14 +1099,6 @@ msgctxt "description" msgid "Are you sure you want to remove {email} avatar?" msgstr "" -#. [src.staff.views.2728048444] -#. defaultMessage is: -#. Are you sure you want to remove {email} from staff members? -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "description" -msgid "Are you sure you want to remove {email} from staff members?" -msgstr "" - #. [src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450] #. defaultMessage is: #. Are you sure you want to unassign {attributeName} from {productTypeName}? @@ -1274,11 +1179,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.3944356444] +#. [src.collections.views.CollectionList.3944356444] #. defaultMessage is: #. Are you sure you want to unpublish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to unpublish {counter,plural,one{this collection} " @@ -1439,6 +1344,15 @@ msgctxt "button" msgid "Assign products" msgstr "" +#. [src.attributes.components.AttributeValues.351422234] - assign attribute +#. value button +#. defaultMessage is: +#. Assign value +#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json +msgctxt "assign attribute value button" +msgid "Assign value" +msgstr "" + #. [src.attributes.components.AttributeDetails.3605174225] - attribute's slug #. short code label #. defaultMessage is: @@ -1517,6 +1431,14 @@ msgctxt "product attributes, section header" msgid "Attributes" msgstr "" +#. [src.configuration.2326418019] +#. defaultMessage is: +#. Attributes and Product Typess +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Attributes and Product Typess" +msgstr "" + #. [src.attributes.views.AttributeList.3218248395] - deleted multiple #. attributes #. defaultMessage is: @@ -2300,6 +2222,22 @@ msgctxt "description" msgid "Country area" msgstr "" +#. [menuCreateDialogHeader] - dialog header +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json +msgctxt "dialog header" +msgid "Create Menu" +msgstr "" + +#. [menuListPageAddMenu] - button +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json +msgctxt "button" +msgid "Create Menu" +msgstr "" + #. [src.attributes.components.AttributePage.2855501559] - page title #. defaultMessage is: #. Create New Attribute @@ -2324,6 +2262,30 @@ msgctxt "header" msgid "Create New Shipping Zone" msgstr "" +#. [src.pages.components.PageDetailsPage.1068617485] - page header +#. defaultMessage is: +#. Create Page +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page header" +msgid "Create Page" +msgstr "" + +#. [src.orders.components.OrderProductAddDialog.1542417144] - dialog header +#. defaultMessage is: +#. Create Product +#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json +msgctxt "dialog header" +msgid "Create Product" +msgstr "" + +#. [src.products.components.ProductListPage.1542417144] - button +#. defaultMessage is: +#. Create Product +#: build/locale/src/products/components/ProductListPage/ProductListPage.json +msgctxt "button" +msgid "Create Product" +msgstr "" + #. [src.products.views.1542417144] - window title #. defaultMessage is: #. Create Product @@ -2356,11 +2318,19 @@ msgctxt "page header" msgid "Create Sale" msgstr "" -#. [src.products.views.2362587265] - window title +#. [src.discounts.components.SaleListPage.3866518732] - button +#. defaultMessage is: +#. Create Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "button" +msgid "Create Sale" +msgstr "" + +#. [src.products.views.2362587265] - header #. defaultMessage is: #. Create Variant #: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "window title" +msgctxt "header" msgid "Create Variant" msgstr "" @@ -2372,6 +2342,22 @@ msgctxt "page header" msgid "Create Voucher" msgstr "" +#. [src.attributes.components.AttributeListPage.3824684885] - button +#. defaultMessage is: +#. Create attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "button" +msgid "Create attribute" +msgstr "" + +#. [src.categories.components.CategoryListPage.1140231710] - button +#. defaultMessage is: +#. Create category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "button" +msgid "Create category" +msgstr "" + #. [src.categories.views.1140231710] - window title #. defaultMessage is: #. Create category @@ -2380,6 +2366,14 @@ msgctxt "window title" msgid "Create category" msgstr "" +#. [src.collections.components.CollectionListPage.686910896] - button +#. defaultMessage is: +#. Create collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "button" +msgid "Create collection" +msgstr "" + #. [src.collections.views.686910896] - window title #. defaultMessage is: #. Create collection @@ -2396,6 +2390,14 @@ msgctxt "window title" msgid "Create customer" msgstr "" +#. [menuItemsAddItem] - add new menu item +#. defaultMessage is: +#. Create new item +#: build/locale/src/navigation/components/MenuItems/MenuItems.json +msgctxt "add new menu item" +msgid "Create new item" +msgstr "" + #. [src.orders.components.OrderDraftListPage.2826235371] - button #. defaultMessage is: #. Create order @@ -2408,6 +2410,14 @@ msgctxt "button" msgid "Create order" msgstr "" +#. [src.pages.components.PageListPage.3785394515] - button +#. defaultMessage is: +#. Create page +#: build/locale/src/pages/components/PageListPage/PageListPage.json +msgctxt "button" +msgid "Create page" +msgstr "" + #. [src.pages.views.3785394515] - header #. defaultMessage is: #. Create page @@ -2419,11 +2429,55 @@ msgstr "" #. [src.shipping.components.ShippingZoneRateDialog.16061680] - button #. defaultMessage is: #. Create rate +#. [src.shipping.components.ShippingZoneRates.16061680] - button +#. defaultMessage is: +#. Create rate #: build/locale/src/shipping/components/ShippingZoneRateDialog/ShippingZoneRateDialog.json +#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json msgctxt "button" msgid "Create rate" msgstr "" +#. [src.shipping.components.ShippingZonesList.2673544109] - button +#. defaultMessage is: +#. Create shipping zone +#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json +msgctxt "button" +msgid "Create shipping zone" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.770296100] - button +#. defaultMessage is: +#. Create subcategory +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json +msgctxt "button" +msgid "Create subcategory" +msgstr "" + +#. [src.products.components.ProductVariants.3989383405] - button +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/components/ProductVariants/ProductVariants.json +msgctxt "button" +msgid "Create variant" +msgstr "" + +#. [src.products.views.3989383405] - window title +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/views/ProductVariantCreate.json +msgctxt "window title" +msgid "Create variant" +msgstr "" + +#. [src.discounts.components.VoucherListPage.614836274] - button +#. defaultMessage is: +#. Create voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "button" +msgid "Create voucher" +msgstr "" + #. [src.collections.views.1597339737] #. defaultMessage is: #. Created collection @@ -2470,7 +2524,11 @@ msgstr "" #. [src.components.FilterBar.2340527467] #. defaultMessage is: #. Custom Filter +#. [src.components.SearchBar.2340527467] +#. defaultMessage is: +#. Custom Filter #: build/locale/src/components/FilterBar/FilterBar.json +#: build/locale/src/components/SearchBar/SearchBar.json msgctxt "description" msgid "Custom Filter" msgstr "" @@ -2726,10 +2784,18 @@ msgctxt "dialog title" msgid "Delete Collection" msgstr "" -#. [src.orders.views.1161115149] - dialog header +#. [src.products.views.1731766393] - dialog header +#. defaultMessage is: +#. Delete Image +#: build/locale/src/products/views/ProductImage.json +msgctxt "dialog header" +msgid "Delete Image" +msgstr "" + +#. [src.orders.views.OrderDraftList.1161115149] - dialog header #. defaultMessage is: #. Delete Order Drafts -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog header" msgid "Delete Order Drafts" msgstr "" @@ -2767,10 +2833,10 @@ msgctxt "dialog header" msgid "Delete Product Type" msgstr "" -#. [src.productTypes.views.4080551769] - dialog header +#. [src.productTypes.views.ProductTypeList.4080551769] - dialog header #. defaultMessage is: #. Delete Product Types -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog header" msgid "Delete Product Types" msgstr "" @@ -2799,10 +2865,10 @@ msgctxt "dialog header" msgid "Delete Sale" msgstr "" -#. [src.discounts.views.2809303671] - dialog header +#. [src.discounts.views.SaleList.2809303671] - dialog header #. defaultMessage is: #. Delete Sales -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog header" msgid "Delete Sales" msgstr "" @@ -2816,9 +2882,13 @@ msgctxt "custom search delete, dialog header" msgid "Delete Search" msgstr "" +#. [src.components.Filter.2173195312] - button +#. defaultMessage is: +#. Delete Search #. [src.components.TableFilter.2173195312] - button #. defaultMessage is: #. Delete Search +#: build/locale/src/components/Filter/FilterSearch.json #: build/locale/src/components/TableFilter/FilterChips.json msgctxt "button" msgid "Delete Search" @@ -2885,10 +2955,10 @@ msgctxt "dialog header" msgid "Delete Voucher" msgstr "" -#. [src.discounts.views.367317371] - dialog header +#. [src.discounts.views.VoucherList.367317371] - dialog header #. defaultMessage is: #. Delete Vouchers -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog header" msgid "Delete Vouchers" msgstr "" @@ -2922,11 +2992,11 @@ msgstr "" #. [src.categories.views.712767046] - dialog title #. defaultMessage is: #. Delete categories -#. [src.categories.views.712767046] - dialog title +#. [src.categories.views.CategoryList.712767046] - dialog title #. defaultMessage is: #. Delete categories #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "dialog title" msgid "Delete categories" msgstr "" @@ -2943,10 +3013,10 @@ msgctxt "dialog title" msgid "Delete category" msgstr "" -#. [src.collections.views.3817188998] - dialog title +#. [src.collections.views.CollectionList.3817188998] - dialog title #. defaultMessage is: #. Delete collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Delete collections" msgstr "" @@ -2959,14 +3029,31 @@ msgctxt "dialog header" msgid "Delete customer" msgstr "" -#. [src.customers.views.1946482599] - dialog header +#. [src.customers.views.CustomerList.1946482599] - dialog header #. defaultMessage is: #. Delete customers -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "dialog header" msgid "Delete customers" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.632633254] - dialog header +#. defaultMessage is: +#. Delete draft order +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "dialog header" +msgid "Delete draft order" +msgstr "" + +#. [src.shipping.views.ShippingZoneDetails.1947090060] - unassign country, +#. dialog header +#. defaultMessage is: +#. Delete from shipping zone +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country, dialog header" +msgid "Delete from shipping zone" +msgstr "" + #. [src.collections.views.942133001] - dialog title #. defaultMessage is: #. Delete image @@ -3027,6 +3114,14 @@ msgctxt "description" msgid "Deleted collection" msgstr "Kolekcija je izbrisana" +#. [src.orders.views.OrderDraftList.1648805446] +#. defaultMessage is: +#. Deleted draft orders +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json +msgctxt "description" +msgid "Deleted draft orders" +msgstr "" + #. [menuListDeletedMenu] #. defaultMessage is: #. Deleted menu @@ -3626,14 +3721,6 @@ msgctxt "order history message" msgid "Fulfilled {quantity} items" msgstr "" -#. [src.orders.components.OrderListFilter.2943502192] - order -#. defaultMessage is: -#. Fulfillment Status -#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json -msgctxt "order" -msgid "Fulfillment Status" -msgstr "" - #. [src.orders.components.OrderHistory.3081292385] - order history message #. defaultMessage is: #. Fulfillment confirmation was sent to customer @@ -3791,12 +3878,12 @@ msgid "If empty, the preview shows what will be autogenerated." msgstr "" "Če pustite polje prazno, se v oknu za predogled prikaže samodejni prikaz" -#. [src.attributes.components.AttributeProperties.2519239682] +#. [src.attributes.components.AttributeProperties.4048785456] #. defaultMessage is: -#. If enable this attribute can be used as a column in product table. +#. If enabled this attribute can be used as a column in product table. #: build/locale/src/attributes/components/AttributeProperties/AttributeProperties.json msgctxt "description" -msgid "If enable this attribute can be used as a column in product table." +msgid "If enabled this attribute can be used as a column in product table." msgstr "" #. [src.attributes.components.AttributeProperties.787251583] @@ -3902,6 +3989,22 @@ msgctxt "product variant stock" msgid "Inventory" msgstr "" +#. [src.staff.components.StaffAddMemberDialog.1481503299] - dialog header +#. defaultMessage is: +#. Invite Staff Member +#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json +msgctxt "dialog header" +msgid "Invite Staff Member" +msgstr "" + +#. [src.staff.components.StaffListPage.797461521] - button +#. defaultMessage is: +#. Invite staff member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "button" +msgid "Invite staff member" +msgstr "" + #. [src.productTypes.components.ProductTypeShipping.2143413921] - switch #. button #. defaultMessage is: @@ -4254,6 +4357,14 @@ msgctxt "voucher requirement" msgid "Minimum quantity of items" msgstr "" +#. [src.configuration.1233229030] +#. defaultMessage is: +#. Miscellaneous +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Miscellaneous" +msgstr "" + #. [src.attributes.components.AttributeDetails.3334509011] - product attribute #. type #. defaultMessage is: @@ -5086,6 +5197,14 @@ msgctxt "description" msgid "Order History" msgstr "" +#. [src.orders.components.OrderListFilter.2222765704] +#. defaultMessage is: +#. Order Status +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +msgctxt "description" +msgid "Order Status" +msgstr "" + #. [src.orders.components.OrderHistory.1230178536] - order history message #. defaultMessage is: #. Order address was updated @@ -5102,13 +5221,13 @@ msgctxt "order history message" msgid "Order confirmation was sent to customer" msgstr "" -#. [src.orders.views.1872939752] +#. [src.orders.views.OrderDraftList.1872939752] #. defaultMessage is: #. Order draft succesfully created #. [src.orders.views.OrderList.1872939752] #. defaultMessage is: #. Order draft succesfully created -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json #: build/locale/src/orders/views/OrderList/OrderList.json msgctxt "description" msgid "Order draft succesfully created" @@ -5773,6 +5892,14 @@ msgctxt "description" msgid "Product Name" msgstr "" +#. [src.configuration.3655543906] +#. defaultMessage is: +#. Product Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Product Settings" +msgstr "" + #. [src.discounts.components.DiscountProducts.4257289053] #. defaultMessage is: #. Product Type @@ -5931,12 +6058,12 @@ msgctxt "order history message" msgid "Products were added to draft order" msgstr "" -#. [src.orders.components.OrderHistory.2574162126] - order history message +#. [src.orders.components.OrderHistory.4067959693] - order history message #. defaultMessage is: -#. Products were removed from draft order +#. Products were deleted from draft order #: build/locale/src/orders/components/OrderHistory/OrderHistory.json msgctxt "order history message" -msgid "Products were removed from draft order" +msgid "Products were deleted from draft order" msgstr "" #. [src.properties] @@ -5963,10 +6090,10 @@ msgctxt "description" msgid "Provided email address does not exist in our database." msgstr "" -#. [src.collections.views.1547167026] - publish collections +#. [src.collections.views.CollectionList.1547167026] - publish collections #. defaultMessage is: #. Publish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "publish collections" msgid "Publish" msgstr "Objavi" @@ -6003,10 +6130,10 @@ msgctxt "dialog header" msgid "Publish Products" msgstr "" -#. [src.collections.views.2823425739] - dialog title +#. [src.collections.views.CollectionList.2823425739] - dialog title #. defaultMessage is: #. Publish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Publish collections" msgstr "" @@ -6180,6 +6307,18 @@ msgctxt "shipping method price" msgid "Rate Price" msgstr "" +#. [src.orders.components.OrderListFilter.2415661583] - order status +#. defaultMessage is: +#. Ready to Capture +#. [src.orders.views.OrderList.readyToCapture] - order status +#. defaultMessage is: +#. Ready to Capture +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +#: build/locale/src/orders/views/OrderList/filters.json +msgctxt "order status" +msgid "Ready to Capture" +msgstr "" + #. [src.customers.components.CustomerOrders.3878642352] - section header #. defaultMessage is: #. Recent orders @@ -6228,22 +6367,14 @@ msgctxt "switch button" msgid "Release all stock allocated to this order" msgstr "" -#. [src.auth.components.LoginPage.3182284913] - login -#. defaultMessage is: -#. Remember me -#: build/locale/src/auth/components/LoginPage/LoginPage.json -msgctxt "login" -msgid "Remember me" -msgstr "" - #. [src.categories.views.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. -#. [src.categories.views.3488150607] +#. [src.categories.views.CategoryList.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "description" msgid "Remember this will also delete all products assigned to this category." msgstr "" @@ -6256,39 +6387,6 @@ msgctxt "button" msgid "Remove" msgstr "" -#. [src.products.views.490753666] - dialog header -#. defaultMessage is: -#. Remove Image -#: build/locale/src/products/views/ProductImage.json -msgctxt "dialog header" -msgid "Remove Image" -msgstr "" - -#. [src.orders.components.OrderDraftCancelDialog.500287069] - dialog header -#. defaultMessage is: -#. Remove draft order -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "dialog header" -msgid "Remove draft order" -msgstr "" - -#. [src.shipping.views.ShippingZoneDetails.254167659] - unassign country, -#. dialog header -#. defaultMessage is: -#. Remove from shipping zone -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country, dialog header" -msgid "Remove from shipping zone" -msgstr "" - -#. [src.orders.views.3880993240] -#. defaultMessage is: -#. Removed draft orders -#: build/locale/src/orders/views/OrderDraftList.json -msgctxt "description" -msgid "Removed draft orders" -msgstr "" - #. [src.pages.views.1457312643] #. defaultMessage is: #. Removed page @@ -6454,6 +6552,18 @@ msgctxt "button" msgid "Save" msgstr "" +#. [src.components.Filter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#. [src.components.TableFilter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#: build/locale/src/components/Filter/FilterSearch.json +#: build/locale/src/components/TableFilter/FilterChips.json +msgctxt "button" +msgid "Save Custom Search" +msgstr "" + #. [src.components.SaveFilterTabDialog.1514415736] - save filter tab, header #. defaultMessage is: #. Save Custom Search @@ -6462,14 +6572,6 @@ msgctxt "save filter tab, header" msgid "Save Custom Search" msgstr "" -#. [src.components.TableFilter.1514415736] - button -#. defaultMessage is: -#. Save Custom Search -#: build/locale/src/components/TableFilter/FilterChips.json -msgctxt "button" -msgid "Save Custom Search" -msgstr "" - #. [src.products.components.ProductVariantCreatePage.2853608829] - button #. defaultMessage is: #. Save variant @@ -6486,6 +6588,14 @@ msgctxt "description" msgid "Saved changes" msgstr "" +#. [src.attributes.components.AttributeListPage.3916653510] +#. defaultMessage is: +#. Search Attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "description" +msgid "Search Attribute" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.902296540] #. defaultMessage is: #. Search Attributes @@ -6502,10 +6612,30 @@ msgctxt "description" msgid "Search Categories" msgstr "" +#. [src.categories.components.CategoryListPage.3841025483] +#. defaultMessage is: +#. Search Category +#. [src.translations.components.TranslationsEntitiesListPage.3841025483] +#. defaultMessage is: +#. Search Category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Category" +msgstr "" + +#. [src.collections.components.CollectionListPage.4057224233] +#. defaultMessage is: +#. Search Collection #. [src.components.AssignCollectionDialog.4057224233] #. defaultMessage is: #. Search Collection +#. [src.translations.components.TranslationsEntitiesListPage.4057224233] +#. defaultMessage is: +#. Search Collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json #: build/locale/src/components/AssignCollectionDialog/AssignCollectionDialog.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json msgctxt "description" msgid "Search Collection" msgstr "" @@ -6518,6 +6648,14 @@ msgctxt "description" msgid "Search Countries" msgstr "" +#. [src.customers.components.CustomerListPage.1643417013] +#. defaultMessage is: +#. Search Customer +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "description" +msgid "Search Customer" +msgstr "" + #. [src.orders.components.OrderCustomer.2433460203] #. defaultMessage is: #. Search Customers @@ -6526,6 +6664,14 @@ msgctxt "description" msgid "Search Customers" msgstr "" +#. [src.orders.components.OrderDraftListPage.77765281] +#. defaultMessage is: +#. Search Draft +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "description" +msgid "Search Draft" +msgstr "" + #. [src.translations.components.TranslationsCategoriesPage.1406947243] #. defaultMessage is: #. Search Engine Description @@ -6606,6 +6752,34 @@ msgctxt "description" msgid "Search Orders..." msgstr "" +#. [src.translations.components.TranslationsEntitiesListPage.2559018090] +#. defaultMessage is: +#. Search Page +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Page" +msgstr "" + +#. [src.translations.components.TranslationsEntitiesListPage.2105464697] +#. defaultMessage is: +#. Search Product +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product" +msgstr "" + +#. [src.productTypes.components.ProductTypeListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#. [src.translations.components.TranslationsEntitiesListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product Type" +msgstr "" + #. [src.components.AssignProductDialog.2850255786] #. defaultMessage is: #. Search Products @@ -6618,14 +6792,46 @@ msgctxt "description" msgid "Search Products" msgstr "" -#. [src.products.components.ProductListPage.3550330425] +#. [src.products.components.ProductListFilter.3550330425] #. defaultMessage is: #. Search Products... -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Search Products..." msgstr "" +#. [src.discounts.components.SaleListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#. [src.translations.components.TranslationsEntitiesListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Sale" +msgstr "" + +#. [src.staff.components.StaffListPage.61043583] +#. defaultMessage is: +#. Search Staff Member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "description" +msgid "Search Staff Member" +msgstr "" + +#. [src.discounts.components.VoucherListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#. [src.translations.components.TranslationsEntitiesListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Voucher" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.524117994] #. defaultMessage is: #. Search by attribute name @@ -6732,10 +6938,10 @@ msgctxt "description" msgid "Select all orders where:" msgstr "" -#. [src.products.components.ProductListPage.1421689426] +#. [src.products.components.ProductListFilter.1421689426] #. defaultMessage is: #. Select all products where: -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Select all products where:" msgstr "" @@ -6821,6 +7027,14 @@ msgctxt "description" msgid "Set plugin as Active" msgstr "" +#. [src.components.VisibilityCard.292404896] +#. defaultMessage is: +#. Set publication date +#: build/locale/src/components/VisibilityCard/VisibilityCard.json +msgctxt "description" +msgid "Set publication date" +msgstr "" + #. [src.discounts.shipment] - voucher discount #. defaultMessage is: #. Shipment @@ -7086,6 +7300,14 @@ msgctxt "staff section name" msgid "Staff Members" msgstr "" +#. [src.configuration.3140151600] +#. defaultMessage is: +#. Staff Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Staff Settings" +msgstr "" + #. [src.standard] - tax rate #. defaultMessage is: #. Standard @@ -8070,10 +8292,10 @@ msgctxt "payment status" msgid "Unpaid" msgstr "" -#. [src.collections.views.2237014112] - unpublish collections +#. [src.collections.views.CollectionList.2237014112] - unpublish collections #. defaultMessage is: #. Unpublish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "unpublish collections" msgid "Unpublish" msgstr "Prekliči objavo" @@ -8110,10 +8332,10 @@ msgctxt "dialog header" msgid "Unpublish Products" msgstr "" -#. [src.collections.views.2637364047] - dialog title +#. [src.collections.views.CollectionList.2637364047] - dialog title #. defaultMessage is: #. Unpublish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Unpublish collections" msgstr "" @@ -8613,6 +8835,22 @@ msgctxt "description" msgid "ZIP / Postal code" msgstr "" +#. [src.productTypes.components.ProductTypeListPage.3479705616] - button +#. defaultMessage is: +#. create product type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "button" +msgid "create product type" +msgstr "" + +#. [src.staff.views.1308770978] - dialog header +#. defaultMessage is: +#. delete Staff User +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "dialog header" +msgid "delete Staff User" +msgstr "" + #. [orderPaymentVATDoesNotApply] - vat not included in order price #. defaultMessage is: #. does not apply @@ -8686,19 +8924,35 @@ msgctxt "product status is set as" msgid "is set as" msgstr "" -#. [src.staff.views.2240444792] - dialog header -#. defaultMessage is: -#. remove Staff User -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "dialog header" -msgid "remove Staff User" -msgstr "" - -#. [src.components.VisibilityCard.1815688500] +#. [src.collections.components.CollectionCreatePage.1815688500] - collection #. defaultMessage is: #. since {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.1815688500] - collection +#. defaultMessage is: +#. since {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "since {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.1815688500] - page +#. defaultMessage is: +#. since {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "since {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#. [src.products.components.ProductUpdatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "since {date}" msgstr "" @@ -8726,11 +8980,35 @@ msgctxt "weight" msgid "to {value} {unit}" msgstr "" -#. [src.components.VisibilityCard.2001551496] +#. [src.collections.components.CollectionCreatePage.2001551496] - collection #. defaultMessage is: #. will be visible from {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.2001551496] - collection +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "will be visible from {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.2001551496] - page +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "will be visible from {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#. [src.products.components.ProductUpdatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "will be visible from {date}" msgstr "" diff --git a/locale/sq.json b/locale/sq.json index bff141e34..eeb7377ab 100644 --- a/locale/sq.json +++ b/locale/sq.json @@ -1 +1 @@ -{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.350498821":"Shto atribut","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.2519239682":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"Emri","src.categories.components.CategoryProducts.636461959":"Emri","src.collections.components.CollectionProducts.636461959":"Emri","src.products.components.ProductDetailsForm.636461959":"Emri","src.collections.components.CollectionDetails.636461959":"Emri","src.components.ProductList.636461959":"Emri","src.discounts.components.SaleInfo.636461959":"Emri","src.discounts.components.SaleList.636461959":"Emri","src.discounts.components.SaleSummary.636461959":"Emri","menuItemDialogNameLabel":"Emri","src.products.components.ProductVariants.636461959":"Emri","src.shipping.components.ShippingZoneRates.636461959":"Emri","src.shipping.components.ShippingZonesList.636461959":"Emri","src.staff.components.StaffList.636461959":"Emri","src.translations.components.TranslationsEntitiesList.636461959":"Emri","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.254756045":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.3182284913":"","src.auth.components.LoginPage.109182747":"Login","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"","src.categories.views.2004894945":"","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.3229914152":"","src.categories.components.CategoryList.435697837":"","src.categories.components.CategoryList.2159874182":"Subkategorite","src.categories.components.CategoryUpdatePage.2159874182":"Subkategorite","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.228151782":"Shto kategori","src.categories.components.CategoryProducts.2968663655":"Produktet","src.categories.components.CategoryUpdatePage.2968663655":"Produktet","src.discounts.components.DiscountCategories.2968663655":"Produktet","src.discounts.components.DiscountCollections.2968663655":"Produktet","src.products":"Produktet","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryProducts.3554578821":"Shto artikull","src.categories.components.CategoryProductsCard.3554578821":"Shto artikull","src.categories.components.CategoryProducts.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProducts.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.categories.components.CategoryProductsCard.4164156574":"","src.categories.views.1754466114":"","src.categories.views.1140231710":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.712767046":"","src.categories.views.299584400":"","src.categories.views.844574071":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.collections.components.CollectionCreatePage.3958681866":"Shto koleksion","src.collections.components.CollectionListPage.3958681866":"Shto koleksion","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"Dispozicioni","src.availability":"","src.collections.components.CollectionList.3640454975":"E publikuar","src.collections.components.CollectionProducts.3640454975":"E publikuar","src.discounts.components.DiscountProducts.3640454975":"E publikuar","src.components.ProductList.3640454975":"E publikuar","src.products.components.ProductListPage.3640454975":"E publikuar","src.pages.components.PageList.3640454975":"E publikuar","src.products.views.ProductList.published":"E publikuar","src.collections.components.CollectionList.2341910657":"Jo e publikuar","src.collections.components.CollectionProducts.2341910657":"Jo e publikuar","src.discounts.components.DiscountProducts.2341910657":"Jo e publikuar","src.components.ProductList.2341910657":"Jo e publikuar","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.686910896":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"","src.collections.views.2402899582":"","src.collections.views.2237014112":"Unpublish","src.pages.views.2237014112":"Unpublish","src.products.views.ProductList.2237014112":"Unpublish","src.collections.views.1547167026":"Publish","src.pages.views.1547167026":"Publish","src.products.views.ProductList.1547167026":"Publish","src.collections.views.2823425739":"","src.collections.views.1348793822":"","src.collections.views.2637364047":"","src.collections.views.3944356444":"","src.collections.views.3817188998":"","src.collections.views.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"Log out","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.4057224233":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"","src.components.ErrorMessageCard.2845142593":"","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.FilterBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"Shto","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.ProductList.1134347598":"Cmimi","src.orders.components.OrderDraftDetailsProducts.1134347598":"Cmimi","src.orders.components.OrderFulfillment.1134347598":"Cmimi","src.products.components.ProductListPage.1134347598":"Cmimi","src.products.components.ProductPricing.1134347598":"Cmimi","src.orders.components.OrderUnfulfilledItems.1134347598":"Cmimi","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"Cmimi","src.shipping.components.ShippingZoneRates.1134347598":"Cmimi","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"Visibility","src.pages.components.PageList.1459686496":"Visibility","src.products.components.ProductListFilter.1459686496":"Visibility","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"E fshehur","src.products.views.ProductList.hidden":"E fshehur","src.components.VisibilityCard.1815688500":"","src.components.VisibilityCard.2001551496":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","configurationMenuStaff":"","configurationMenuShipping":"","configurationMenuTaxes":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","src.customers.components.CustomerAddress.1320082647":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"Adresa e faturimit","src.customers.components.CustomerAddresses.3517722732":"Adresa e dergeses","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"Adresa","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"Shenime","src.orders.components.OrderCustomerNote.1520756907":"Shenime","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"Shenime","src.customers.components.CustomerDetails.577013340":"Shenime","src.customers.components.CustomerCreatePage.1934221653":"Shko klient","src.customers.components.CustomerListPage.1934221653":"Shko klient","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerOrders.3878642352":"Porosite me te reja","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"Data","src.orders.components.OrderDraftList.4205493358":"Data","src.orders.components.OrderList.4205493358":"Data","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"Status","src.orders.components.OrderListFilter.1756106276":"Status","src.products.components.ProductListFilter.1756106276":"Status","src.products.components.ProductVariants.1756106276":"Status","src.customers.components.CustomerOrders.878013594":"Totali","src.orders.components.OrderDraftDetailsProducts.878013594":"Totali","src.orders.components.OrderDraftDetailsSummary.878013594":"Totali","src.orders.components.OrderDraftList.878013594":"Totali","src.orders.components.OrderFulfillment.878013594":"Totali","src.orders.components.OrderUnfulfilledItems.878013594":"Totali","src.orders.components.OrderList.878013594":"Totali","src.orders.components.OrderPayment.878013594":"Totali","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.1946482599":"","src.customers.views.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"Vlera","src.discounts.components.SaleSummary.1148029984":"Vlera","src.discounts.components.VoucherList.1148029984":"Vlera","src.discounts.components.VoucherSummary.1148029984":"Vlera","src.discounts.components.VoucherValue.1148029984":"Vlera","src.products.components.ProductAttributes.1148029984":"Vlera","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.1742771332":"","src.discounts.components.SalePricing.1099355007":"Cmimi","src.products.components.ProductPricing.1099355007":"Cmimi","src.products.components.ProductVariantPrice.1099355007":"Cmimi","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"Countries","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"Kodi","src.discounts.components.VoucherSummary.78726751":"Kodi","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.1536809153":"Add voucher","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"Produkte specifike","src.discounts.shipment":"Transporti","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.2809303671":"","src.discounts.views.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.367317371":"","src.discounts.views.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"Anullo","src.orders.views.OrderList.3528672691":"Anullo","src.confirm":"","src.delete":"","src.edit":"Ndrysho","src.manage":"","src.remove":"Fshi","src.save":"Ruaj","src.show":"","src.undo":"","src.attributes":"Atributet","src.products.components.ProductAttributes.4153345096":"Atributet","src.categories":"Kategorite","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"Koleksione","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"Konfigurimi","src.customers":"Klientet","src.draftOrders":"","src.home":"Faqja kryesore","src.navigation":"Navigimi","src.orders":"Porosite","src.pages":"Faqet","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"Uljet","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"Taksat","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"Taksat","src.taxes.components.CountryListPage.3955023266":"Taksat","src.translations":"","src.vouchers":"Kupone","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"","src.partiallyPaid":"","src.partiallyRefunded":"Pjeserisht e rimbursuar","src.refunded":"E rimbursuar","src.unpaid":"","src.cancelled":"","src.draft":"Draft","src.fulfilled":"I perfunduar","src.orders.views.OrderList.fulfilled":"I perfunduar","src.orders.components.OrderListFilter.1712863026":"I perfunduar","src.partiallyFulfilled":"Pjeserisht i perfunduar","src.unfulfilled":"I paperfunduar","src.orders.views.OrderList.unfulfilled":"I paperfunduar","src.orders.components.OrderListFilter.1751787272":"I paperfunduar","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","src.1395232177":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"Link","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"Anullo porosine","src.orders.components.OrderDetailsPage.1854613983":"Anullo porosine","src.orders.components.OrderDraftPage.1854613983":"Anullo porosine","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"Klienti","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"Klienti","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"Njelloj si adresa e dergeses","src.orders.components.OrderCustomerEditDialog.1411666943":"Ndrysho detajet e klientit","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.500287069":"Fshi porosine ne draft","src.orders.components.OrderDraftCancelDialog.3199827590":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"Artikull","src.orders.components.OrderUnfulfilledItems.1895667608":"Artikull","src.orders.components.OrderDraftDetailsProducts.2796503714":"Sasia","src.orders.components.OrderFulfillment.2796503714":"Sasia","src.orders.components.OrderFulfillmentDialog.2796503714":"Sasia","src.orders.components.OrderUnfulfilledItems.2796503714":"Sasia","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"Subtotal","src.orders.components.OrderPayment.781550514":"Subtotal","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"Krijo porosi","src.orders.components.OrderListPage.2826235371":"Krijo porosi","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"Shto ndjekjen e statusit","src.orders.components.OrderFulfillmentCancelDialog.732594284":"Anullo perfundimin","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"Anullo perfundimin","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"SKU","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"Tracking number","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.2574162126":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"Porosia u pagua","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"Porosia u pranua.","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"Pagesa","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2943502192":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"Dergesa","src.productTypes.components.ProductTypeShipping.1325966144":"Dergesa","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"Dergesa","src.orders.components.OrderPayment.3768782744":"Shuma e autorizuar me pare","src.orders.components.OrderPayment.2320183694":"Shuma e ruajtur","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"E siguruar","src.orders.components.OrderPayment.2845258362":"Kthim","src.orders.components.OrderPayment.2444197639":"E anashkaluar","src.orders.components.OrderPayment.3500506678":"Vendose si te paguar","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"Sasia","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.2775402904":"","src.products.components.ProductListPage.2775402904":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"Perfundo","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.3880993240":"","src.orders.views.1161115149":"","src.orders.views.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.755314116":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"Titull","src.pages.components.PageList.1124600214":"Titull","src.pages.components.PageInfo.1116746286":"Permbajtja","src.translations.components.TranslationsPagesPage.1116746286":"Permbajtja","src.pages.components.PageList.3478065224":"Slug","src.pages.components.PageSlug.3478065224":"Slug","src.productTypes.components.ProductTypeAttributes.3478065224":"Slug","src.pages.components.PageList.3767550649":"","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.1767905232":"Shto faqe","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.3785394515":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"Vlerat","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"Imazhet","src.products.components.ProductVariantImages.3240888698":"Imazhet","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"","src.products.components.ProductVariantStock.3841616483":"","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListPage.821159718":"","src.products.components.ProductListPage.1421689426":"","src.products.components.ProductListPage.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"Inventory","prodictStockInventoryLabel":"Inventory","src.products.components.ProductVariantStock.3490038570":"Inventory","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"","src.products.components.ProductVariants.2153006789":"","src.products.components.ProductVariantNavigation.2845381934":"Add variant","src.products.components.ProductVariants.2845381934":"Add variant","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1542417144":"","src.products.views.1591632382":"","src.products.views.490753666":"","src.products.views.672103788":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.1694086800":"","src.products.views.ProductList.224127438":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.products.views.2178905289":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1756957616":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.889729490":"Add product type","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.4080551769":"","src.productTypes.views.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.352297149":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2474410767":"Shto zone transporti","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.254167659":"","src.shipping.views.ShippingZoneDetails.1790261672":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"Key","src.siteSettings.components.SiteSettingsKeys.2446088470":"Key","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.3490059488":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"Permissions","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.3247064221":"Aktive","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.802625341":"Add staff member","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"Perdoruesi eshte aktiv","src.staff.views.2240444792":"","src.staff.views.2728048444":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file +{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.3824684885":"","src.attributes.components.AttributeListPage.2417065806":"","src.attributes.components.AttributeListPage.3916653510":"","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.4048785456":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"Emri","src.categories.components.CategoryProductList.636461959":"Emri","src.components.ProductList.636461959":"Emri","src.products.components.ProductList.636461959":"Emri","src.collections.components.CollectionDetails.636461959":"Emri","src.collections.components.CollectionProducts.636461959":"Emri","src.products.components.ProductDetailsForm.636461959":"Emri","src.discounts.components.SaleInfo.636461959":"Emri","src.discounts.components.SaleList.636461959":"Emri","src.discounts.components.SaleSummary.636461959":"Emri","menuItemDialogNameLabel":"Emri","src.plugins.components.PluginsList.636461959":"Emri","src.products.components.ProductVariants.636461959":"Emri","src.shipping.components.ShippingZoneRates.636461959":"Emri","src.shipping.components.ShippingZonesList.636461959":"Emri","src.staff.components.StaffList.636461959":"Emri","src.translations.components.TranslationsEntitiesList.636461959":"Emri","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.351422234":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.109182747":"Login","src.auth.components.LoginPage.4028609483":"","src.auth.components.NewPasswordPage.1915811227":"","src.auth.components.NewPasswordPage.1254879564":"","src.auth.components.NewPasswordPage.2799926859":"","src.auth.components.NewPasswordPage.4253911811":"","src.auth.components.NewPasswordPage.2342634351":"","src.auth.components.ResetPasswordPage.2370700732":"","src.auth.components.ResetPasswordPage.3663311080":"","src.auth.components.ResetPasswordSuccessPage.4066297200":"","src.auth.components.ResetPasswordSuccessPage.2245157344":"","src.auth.views.2388238158":"","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"","src.categories.views.2004894945":"","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.2159874182":"Subkategorite","src.categories.components.CategoryUpdatePage.2159874182":"Subkategorite","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.1140231710":"","src.categories.views.1140231710":"","src.categories.components.CategoryListPage.4294878092":"","src.categories.components.CategoryListPage.3841025483":"","src.translations.components.TranslationsEntitiesListPage.3841025483":"","src.categories.components.CategoryProductList.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductList.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProductList.3640454975":"E publikuar","src.components.ProductList.3640454975":"E publikuar","src.products.components.ProductList.3640454975":"E publikuar","src.products.components.ProductListPage.3640454975":"E publikuar","productStatusLabel":"E publikuar","src.collections.components.CollectionList.3640454975":"E publikuar","src.collections.components.CollectionProducts.3640454975":"E publikuar","src.discounts.components.DiscountProducts.3640454975":"E publikuar","src.pages.components.PageList.3640454975":"E publikuar","src.products.views.ProductList.published":"E publikuar","src.categories.components.CategoryProductList.1134347598":"Cmimi","src.orders.components.OrderFulfillment.1134347598":"Cmimi","src.products.components.ProductList.1134347598":"Cmimi","src.products.components.ProductListPage.1134347598":"Cmimi","src.products.components.ProductPricing.1134347598":"Cmimi","src.components.ProductList.1134347598":"Cmimi","src.orders.components.OrderDraftDetailsProducts.1134347598":"Cmimi","src.orders.components.OrderUnfulfilledItems.1134347598":"Cmimi","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"Cmimi","src.shipping.components.ShippingZoneRates.1134347598":"Cmimi","src.categories.components.CategoryProductList.2341910657":"Jo e publikuar","src.products.components.ProductList.2341910657":"Jo e publikuar","src.collections.components.CollectionList.2341910657":"Jo e publikuar","src.collections.components.CollectionProducts.2341910657":"Jo e publikuar","src.discounts.components.DiscountProducts.2341910657":"Jo e publikuar","src.components.ProductList.2341910657":"Jo e publikuar","src.categories.components.CategoryProductList.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.products.components.ProductList.1657559629":"","src.categories.components.CategoryProducts.4164156574":"","src.categories.components.CategoryProducts.3554578821":"Shto artikull","src.categories.components.CategoryUpdatePage.2968663655":"Produktet","src.discounts.components.DiscountCategories.2968663655":"Produktet","src.discounts.components.DiscountCollections.2968663655":"Produktet","src.products":"Produktet","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryUpdatePage.3229914152":"","src.categories.components.CategoryUpdatePage.770296100":"","src.categories.views.1754466114":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.CategoryList.3488150607":"","src.categories.views.712767046":"","src.categories.views.CategoryList.712767046":"","src.categories.views.299584400":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.categories.views.CategoryList.2144707585":"","src.collections.components.CollectionCreatePage.3958681866":"Shto koleksion","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionCreatePage.2001551496":"","src.collections.components.CollectionDetailsPage.2001551496":"","src.pages.components.PageDetailsPage.2001551496":"","src.products.components.ProductCreatePage.2001551496":"","src.products.components.ProductUpdatePage.2001551496":"","src.collections.components.CollectionCreatePage.1815688500":"","src.collections.components.CollectionDetailsPage.1815688500":"","src.pages.components.PageDetailsPage.1815688500":"","src.products.components.ProductCreatePage.1815688500":"","src.products.components.ProductUpdatePage.1815688500":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"Dispozicioni","src.availability":"","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionListPage.686910896":"","src.collections.views.686910896":"","src.collections.components.CollectionListPage.1631917001":"","src.collections.components.CollectionListPage.4057224233":"","src.components.AssignCollectionDialog.4057224233":"","src.translations.components.TranslationsEntitiesListPage.4057224233":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"","src.collections.views.2402899582":"","src.collections.views.CollectionList.2237014112":"Unpublish","src.pages.views.2237014112":"Unpublish","src.products.views.ProductList.2237014112":"Unpublish","src.collections.views.CollectionList.1547167026":"Publish","src.pages.views.1547167026":"Publish","src.products.views.ProductList.1547167026":"Publish","src.collections.views.CollectionList.2823425739":"","src.collections.views.CollectionList.1348793822":"","src.collections.views.CollectionList.2637364047":"","src.collections.views.CollectionList.3944356444":"","src.collections.views.CollectionList.3817188998":"","src.collections.views.CollectionList.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"Log out","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"","src.components.ErrorMessageCard.2845142593":"","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.Filter.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.Filter.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.FilterBar.2340527467":"","src.components.SearchBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"Shto","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"Visibility","src.pages.components.PageList.1459686496":"Visibility","src.products.components.ProductListFilter.1459686496":"Visibility","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"E fshehur","src.products.views.ProductList.hidden":"E fshehur","src.components.VisibilityCard.292404896":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","src.configuration.2326418019":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","src.configuration.3655543906":"","configurationMenuShipping":"","configurationMenuTaxes":"","src.configuration.3140151600":"","configurationMenuStaff":"","src.configuration.1233229030":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","configurationPluginsPages":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"Adresa e faturimit","src.customers.components.CustomerAddresses.3517722732":"Adresa e dergeses","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"Adresa","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"Shenime","src.orders.components.OrderCustomerNote.1520756907":"Shenime","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"Shenime","src.customers.components.CustomerDetails.577013340":"Shenime","src.customers.components.CustomerCreatePage.1934221653":"Shko klient","src.customers.components.CustomerListPage.1934221653":"Shko klient","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerListPage.477293306":"","src.customers.components.CustomerListPage.1643417013":"","src.customers.components.CustomerOrders.3878642352":"Porosite me te reja","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"Data","src.orders.components.OrderDraftList.4205493358":"Data","src.orders.components.OrderList.4205493358":"Data","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"Status","src.orders.components.OrderListFilter.1756106276":"Status","src.plugins.components.PluginInfo.1756106276":"Status","src.products.components.ProductListFilter.1756106276":"Status","src.products.components.ProductVariants.1756106276":"Status","src.customers.components.CustomerOrders.878013594":"Totali","src.orders.components.OrderDraftDetailsProducts.878013594":"Totali","src.orders.components.OrderDraftDetailsSummary.878013594":"Totali","src.orders.components.OrderDraftList.878013594":"Totali","src.orders.components.OrderFulfillment.878013594":"Totali","src.orders.components.OrderUnfulfilledItems.878013594":"Totali","src.orders.components.OrderList.878013594":"Totali","src.orders.components.OrderPayment.878013594":"Totali","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.CustomerList.1946482599":"","src.customers.views.CustomerList.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","src.discounts.components.SaleListPage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"Vlera","src.discounts.components.SaleSummary.1148029984":"Vlera","src.discounts.components.VoucherList.1148029984":"Vlera","src.discounts.components.VoucherSummary.1148029984":"Vlera","src.discounts.components.VoucherValue.1148029984":"Vlera","src.products.components.ProductAttributes.1148029984":"Vlera","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.3907768880":"","src.discounts.components.SaleListPage.1866913828":"","src.translations.components.TranslationsEntitiesListPage.1866913828":"","src.discounts.components.SalePricing.1099355007":"Cmimi","src.products.components.ProductPricing.1099355007":"Cmimi","src.products.components.ProductVariantPrice.1099355007":"Cmimi","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"Countries","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"Kodi","src.discounts.components.VoucherSummary.78726751":"Kodi","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.614836274":"","src.discounts.components.VoucherListPage.1112241061":"","src.discounts.components.VoucherListPage.1930485532":"","src.translations.components.TranslationsEntitiesListPage.1930485532":"","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"Produkte specifike","src.discounts.shipment":"Transporti","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.SaleList.2809303671":"","src.discounts.views.SaleList.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.VoucherList.367317371":"","src.discounts.views.VoucherList.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.somethingWentWrong":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"Anullo","src.orders.views.OrderList.3528672691":"Anullo","src.confirm":"","src.delete":"","src.edit":"Ndrysho","src.manage":"","src.remove":"Fshi","src.save":"Ruaj","src.show":"","src.undo":"","src.attributes":"Atributet","src.products.components.ProductAttributes.4153345096":"Atributet","src.categories":"Kategorite","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"Koleksione","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"Konfigurimi","src.customers":"Klientet","src.draftOrders":"","src.home":"Faqja kryesore","src.navigation":"Navigimi","src.orders":"Porosite","src.pages":"Faqet","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.plugins":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"Uljet","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"Taksat","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"Taksat","src.taxes.components.CountryListPage.3955023266":"Taksat","src.translations":"","src.vouchers":"Kupone","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"","src.partiallyPaid":"","src.partiallyRefunded":"Pjeserisht e rimbursuar","src.refunded":"E rimbursuar","src.unpaid":"","src.cancelled":"","src.draft":"Draft","src.fulfilled":"I perfunduar","src.orders.views.OrderList.fulfilled":"I perfunduar","src.orders.components.OrderListFilter.1712863026":"I perfunduar","src.partiallyFulfilled":"Pjeserisht i perfunduar","src.unfulfilled":"I paperfunduar","src.orders.views.OrderList.unfulfilled":"I paperfunduar","src.orders.components.OrderListFilter.1751787272":"I paperfunduar","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"Link","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"Anullo porosine","src.orders.components.OrderDetailsPage.1854613983":"Anullo porosine","src.orders.components.OrderDraftPage.1854613983":"Anullo porosine","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"Klienti","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"Klienti","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"Njelloj si adresa e dergeses","src.orders.components.OrderCustomerEditDialog.1411666943":"Ndrysho detajet e klientit","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.632633254":"","src.orders.components.OrderDraftCancelDialog.36681973":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"Artikull","src.orders.components.OrderUnfulfilledItems.1895667608":"Artikull","src.orders.components.OrderDraftDetailsProducts.2796503714":"Sasia","src.orders.components.OrderFulfillment.2796503714":"Sasia","src.orders.components.OrderFulfillmentDialog.2796503714":"Sasia","src.orders.components.OrderUnfulfilledItems.2796503714":"Sasia","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"Subtotal","src.orders.components.OrderPayment.781550514":"Subtotal","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"Krijo porosi","src.orders.components.OrderListPage.2826235371":"Krijo porosi","src.orders.components.OrderDraftListPage.551325728":"","src.orders.components.OrderDraftListPage.77765281":"","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"Shto ndjekjen e statusit","src.orders.components.OrderFulfillmentCancelDialog.732594284":"Anullo perfundimin","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"Anullo perfundimin","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"SKU","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"Tracking number","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.4067959693":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"Porosia u pagua","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"Porosia u pranua.","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"Pagesa","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2415661583":"","src.orders.views.OrderList.readyToCapture":"","src.orders.components.OrderListFilter.2222765704":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"Dergesa","src.productTypes.components.ProductTypeShipping.1325966144":"Dergesa","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"Dergesa","src.orders.components.OrderPayment.3768782744":"Shuma e autorizuar me pare","src.orders.components.OrderPayment.2320183694":"Shuma e ruajtur","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"E siguruar","src.orders.components.OrderPayment.2845258362":"Kthim","src.orders.components.OrderPayment.2444197639":"E anashkaluar","src.orders.components.OrderPayment.3500506678":"Vendose si te paguar","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"Sasia","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.1542417144":"","src.products.components.ProductListPage.1542417144":"","src.products.views.1542417144":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"Perfundo","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.OrderDraftList.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.OrderDraftList.1648805446":"","src.orders.views.OrderDraftList.1161115149":"","src.orders.views.OrderDraftList.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.1068617485":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"Titull","src.pages.components.PageList.1124600214":"Titull","src.pages.components.PageInfo.1116746286":"Permbajtja","src.translations.components.TranslationsPagesPage.1116746286":"Permbajtja","src.pages.components.PageList.3478065224":"Slug","src.pages.components.PageSlug.3478065224":"Slug","src.productTypes.components.ProductTypeAttributes.3478065224":"Slug","src.pages.components.PageList.3767550649":"","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.3785394515":"","src.pages.views.3785394515":"","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.plugins.components.PluginInfo.3425535100":"","src.plugins.components.PluginsDetailsPage.3425535100":"","src.plugins.components.PluginInfo.1049131348":"","src.plugins.components.PluginInfo.4013064767":"","src.plugins.components.PluginsDetailsPage.3352026836":"","src.plugins.components.PluginsDetailsPage.2277745418":"","src.plugins.components.PluginsDetailsPage.1970881031":"","src.plugins.components.PluginSettings.1970881031":"","src.plugins.components.PluginsDetailsPage.4241018152":"","src.plugins.components.PluginsList.3247064221":"Aktive","src.staff.components.StaffList.3247064221":"Aktive","src.plugins.components.PluginsList.4120604650":"","src.plugins.components.PluginsList.666641390":"","src.plugins.views.100549097":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"Vlerat","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"Imazhet","src.products.components.ProductVariantImages.3240888698":"Imazhet","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"","src.products.components.ProductVariantStock.3841616483":"","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListFilter.821159718":"","src.products.components.ProductListFilter.1421689426":"","src.products.components.ProductListFilter.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"Inventory","prodictStockInventoryLabel":"Inventory","src.products.components.ProductVariantStock.3490038570":"Inventory","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"","src.products.components.ProductVariants.2153006789":"","src.products.components.ProductVariantNavigation.2845381934":"Add variant","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.3989383405":"","src.products.views.3989383405":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1591632382":"","src.products.views.1731766393":"","src.products.views.2880386427":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1217376589":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.3479705616":"","src.productTypes.components.ProductTypeListPage.1776073799":"","src.productTypes.components.ProductTypeListPage.3420445375":"","src.translations.components.TranslationsEntitiesListPage.3420445375":"","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.ProductTypeList.4080551769":"","src.productTypes.views.ProductTypeList.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRates.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2673544109":"","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.1947090060":"","src.shipping.views.ShippingZoneDetails.131963671":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"Key","src.siteSettings.components.SiteSettingsKeys.2446088470":"Key","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.1481503299":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"Permissions","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.797461521":"","src.staff.components.StaffListPage.2852350932":"","src.staff.components.StaffListPage.61043583":"","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"Perdoruesi eshte aktiv","src.staff.views.1308770978":"","src.staff.views.8878988":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.2105464697":"","src.translations.components.TranslationsEntitiesListPage.2559018090":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file diff --git a/locale/sq.po b/locale/sq.po index 2f0d103d3..dc9b00a80 100644 --- a/locale/sq.po +++ b/locale/sq.po @@ -3,7 +3,7 @@ # msgid "" msgstr "" -"POT-Creation-Date: 2019-09-06T13:56:36.897Z\n" +"POT-Creation-Date: 2019-09-16T15:25:09.340Z\n" "Last-Translator: Eltjona Qato , 2019\n" "Language-Team: Albanian (https://www.transifex.com/mirumee/teams/34782/sq/)\n" "MIME-Version: 1.0\n" @@ -141,22 +141,6 @@ msgctxt "create new menu item, header" msgid "Add Item" msgstr "" -#. [menuCreateDialogHeader] - dialog header -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json -msgctxt "dialog header" -msgid "Add Menu" -msgstr "" - -#. [menuListPageAddMenu] - button -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json -msgctxt "button" -msgid "Add Menu" -msgstr "" - #. [src.siteSettings.components.SiteSettingsKeyDialog.1238948746] - dialog #. header #. defaultMessage is: @@ -166,14 +150,6 @@ msgctxt "dialog header" msgid "Add New Authorization Key" msgstr "" -#. [src.pages.components.PageDetailsPage.755314116] - page header -#. defaultMessage is: -#. Add Page -#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json -msgctxt "page header" -msgid "Add Page" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.2892088870] - dialog header #. defaultMessage is: #. Add Price Rate @@ -182,38 +158,6 @@ msgctxt "dialog header" msgid "Add Price Rate" msgstr "" -#. [src.orders.components.OrderProductAddDialog.2775402904] - dialog header -#. defaultMessage is: -#. Add Product -#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json -msgctxt "dialog header" -msgid "Add Product" -msgstr "" - -#. [src.products.components.ProductListPage.2775402904] - button -#. defaultMessage is: -#. Add Product -#: build/locale/src/products/components/ProductListPage/ProductListPage.json -msgctxt "button" -msgid "Add Product" -msgstr "" - -#. [src.discounts.components.SaleListPage.1742771332] - button -#. defaultMessage is: -#. Add Sale -#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json -msgctxt "button" -msgid "Add Sale" -msgstr "" - -#. [src.staff.components.StaffAddMemberDialog.3490059488] - dialog header -#. defaultMessage is: -#. Add Staff Member -#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json -msgctxt "dialog header" -msgid "Add Staff Member" -msgstr "" - #. [src.attributes.components.AttributeValueEditDialog.1841790893] - add #. attribute value #. defaultMessage is: @@ -223,14 +167,6 @@ msgctxt "add attribute value" msgid "Add Value" msgstr "" -#. [src.products.views.2178905289] - header -#. defaultMessage is: -#. Add Variant -#: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "header" -msgid "Add Variant" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.1397795758] - add weight #. based shipping method, dialog header #. defaultMessage is: @@ -248,14 +184,6 @@ msgctxt "button" msgid "Add address" msgstr "" -#. [src.attributes.components.AttributeListPage.350498821] - button -#. defaultMessage is: -#. Add attribute -#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json -msgctxt "button" -msgid "Add attribute" -msgstr "Shto atribut" - #. [src.siteSettings.components.SiteSettingsKeyDialog.50561933] - button #. defaultMessage is: #. Add authentication @@ -264,14 +192,6 @@ msgctxt "button" msgid "Add authentication" msgstr "" -#. [src.categories.components.CategoryListPage.228151782] - button -#. defaultMessage is: -#. Add category -#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json -msgctxt "button" -msgid "Add category" -msgstr "Shto kategori" - #. [src.collections.components.CollectionCreatePage.3958681866] - page header #. defaultMessage is: #. Add collection @@ -280,14 +200,6 @@ msgctxt "page header" msgid "Add collection" msgstr "Shto koleksion" -#. [src.collections.components.CollectionListPage.3958681866] - button -#. defaultMessage is: -#. Add collection -#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json -msgctxt "button" -msgid "Add collection" -msgstr "Shto koleksion" - #. [src.customers.components.CustomerCreatePage.1934221653] - page header #. defaultMessage is: #. Add customer @@ -320,14 +232,6 @@ msgctxt "button" msgid "Add key" msgstr "" -#. [menuItemsAddItem] - add new menu item -#. defaultMessage is: -#. Add new item -#: build/locale/src/navigation/components/MenuItems/MenuItems.json -msgctxt "add new menu item" -msgid "Add new item" -msgstr "" - #. [menuItemsPlaceholder] #. defaultMessage is: #. Add new menu item to begin creating menu @@ -362,14 +266,6 @@ msgctxt "button" msgid "Add or Edit Link" msgstr "" -#. [src.pages.components.PageListPage.1767905232] - button -#. defaultMessage is: -#. Add page -#: build/locale/src/pages/components/PageListPage/PageListPage.json -msgctxt "button" -msgid "Add page" -msgstr "Shto faqe" - #. [src.categories.components.CategoryProducts.3554578821] - button #. defaultMessage is: #. Add product @@ -378,14 +274,6 @@ msgctxt "button" msgid "Add product" msgstr "Shto artikull" -#. [src.productTypes.components.ProductTypeListPage.889729490] - button -#. defaultMessage is: -#. Add product type -#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json -msgctxt "button" -msgid "Add product type" -msgstr "Add product type" - #. [src.orders.components.OrderDraftDetails.2528459381] - button #. defaultMessage is: #. Add products @@ -394,14 +282,6 @@ msgctxt "button" msgid "Add products" msgstr "" -#. [src.shipping.components.ShippingZoneRates.352297149] - button -#. defaultMessage is: -#. Add rate -#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json -msgctxt "button" -msgid "Add rate" -msgstr "" - #. [src.categories.components.CategoryCreatePage.2563994280] #. defaultMessage is: #. Add search engine title and description to make this category easier to @@ -463,30 +343,6 @@ msgctxt "button" msgid "Add shipping carrier" msgstr "" -#. [src.shipping.components.ShippingZonesList.2474410767] - button -#. defaultMessage is: -#. Add shipping zone -#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json -msgctxt "button" -msgid "Add shipping zone" -msgstr "Shto zone transporti" - -#. [src.staff.components.StaffListPage.802625341] - button -#. defaultMessage is: -#. Add staff member -#: build/locale/src/staff/components/StaffListPage/StaffListPage.json -msgctxt "button" -msgid "Add staff member" -msgstr "Add staff member" - -#. [src.categories.components.CategoryList.435697837] - button -#. defaultMessage is: -#. Add subcategory -#: build/locale/src/categories/components/CategoryList/CategoryList.json -msgctxt "button" -msgid "Add subcategory" -msgstr "" - #. [src.attributes.components.AttributeProperties.673770329] - add attribute #. as column in product list table #. defaultMessage is: @@ -514,35 +370,14 @@ msgctxt "dialog header" msgid "Add tracking code" msgstr "" -#. [src.attributes.components.AttributeValues.254756045] - add attribute value -#. button -#. defaultMessage is: -#. Add value -#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json -msgctxt "add attribute value button" -msgid "Add value" -msgstr "" - #. [src.products.components.ProductVariantNavigation.2845381934] - button #. defaultMessage is: #. Add variant -#. [src.products.components.ProductVariants.2845381934] - button -#. defaultMessage is: -#. Add variant #: build/locale/src/products/components/ProductVariantNavigation/ProductVariantNavigation.json -#: build/locale/src/products/components/ProductVariants/ProductVariants.json msgctxt "button" msgid "Add variant" msgstr "Add variant" -#. [src.discounts.components.VoucherListPage.1536809153] - button -#. defaultMessage is: -#. Add voucher -#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json -msgctxt "button" -msgid "Add voucher" -msgstr "Add voucher" - #. [src.attributes.views.AttributeDetails.634268988] - added new attribute #. value #. defaultMessage is: @@ -600,14 +435,6 @@ msgctxt "description" msgid "Address line 2" msgstr "" -#. [src.customers.components.CustomerAddress.1320082647] - addres card header -#. defaultMessage is: -#. Address {addressNumber} -#: build/locale/src/customers/components/CustomerAddress/CustomerAddress.json -msgctxt "addres card header" -msgid "Address {addressNumber}" -msgstr "" - #. [src.attributes.components.AttributeValues.1565474525] - attribute values #. list: slug column header #. defaultMessage is: @@ -657,6 +484,46 @@ msgctxt "tax rate" msgid "Agricultural supplies" msgstr "" +#. [src.attributes.components.AttributeListPage.2417065806] - tab name +#. defaultMessage is: +#. All Attributes +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "tab name" +msgid "All Attributes" +msgstr "" + +#. [src.categories.components.CategoryListPage.4294878092] - tab name +#. defaultMessage is: +#. All Categories +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "tab name" +msgid "All Categories" +msgstr "" + +#. [src.collections.components.CollectionListPage.1631917001] - tab name +#. defaultMessage is: +#. All Collections +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "tab name" +msgid "All Collections" +msgstr "" + +#. [src.customers.components.CustomerListPage.477293306] - tab name +#. defaultMessage is: +#. All Customers +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "tab name" +msgid "All Customers" +msgstr "" + +#. [src.orders.components.OrderDraftListPage.551325728] - tab name +#. defaultMessage is: +#. All Drafts +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "tab name" +msgid "All Drafts" +msgstr "" + #. [src.orders.components.OrderListPage.875489544] - tab name #. defaultMessage is: #. All Orders @@ -674,22 +541,54 @@ msgctxt "section header" msgid "All Photos" msgstr "" -#. [src.products.components.ProductListPage.821159718] - tab name +#. [src.productTypes.components.ProductTypeListPage.1776073799] - tab name +#. defaultMessage is: +#. All Product Types +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "tab name" +msgid "All Product Types" +msgstr "" + +#. [src.products.components.ProductListFilter.821159718] - tab name #. defaultMessage is: #. All Products -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "tab name" msgid "All Products" msgstr "" -#. [src.categories.components.CategoryList.3229914152] - section header +#. [src.discounts.components.SaleListPage.3907768880] - tab name +#. defaultMessage is: +#. All Sales +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "tab name" +msgid "All Sales" +msgstr "" + +#. [src.staff.components.StaffListPage.2852350932] - tab name +#. defaultMessage is: +#. All Staff Members +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "tab name" +msgid "All Staff Members" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.3229914152] - section header #. defaultMessage is: #. All Subcategories -#: build/locale/src/categories/components/CategoryList/CategoryList.json +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json msgctxt "section header" msgid "All Subcategories" msgstr "" +#. [src.discounts.components.VoucherListPage.1112241061] - tab name +#. defaultMessage is: +#. All Vouchers +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "tab name" +msgid "All Vouchers" +msgstr "" + #. [src.taxes.components.TaxConfiguration.142803418] #. defaultMessage is: #. All products prices are entered with tax included @@ -797,6 +696,14 @@ msgctxt "description" msgid "Are you sure you want to delete collection's image?" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.36681973] +#. defaultMessage is: +#. Are you sure you want to delete draft #{number}? +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "description" +msgid "Are you sure you want to delete draft #{number}?" +msgstr "" + #. [menuDetailsDeleteMenuContent] #. defaultMessage is: #. Are you sure you want to delete menu {menuName}? @@ -813,6 +720,14 @@ msgctxt "description" msgid "Are you sure you want to delete this address from users address book?" msgstr "" +#. [src.products.views.2880386427] +#. defaultMessage is: +#. Are you sure you want to delete this image? +#: build/locale/src/products/views/ProductImage.json +msgctxt "description" +msgid "Are you sure you want to delete this image?" +msgstr "" + #. [src.attributes.components.AttributeDeleteDialog.3738429348] - dialog #. content #. defaultMessage is: @@ -863,12 +778,7 @@ msgstr "" #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this attribute} #. other{{displayQuantity} categories}}? -#. [src.categories.views.844574071] -#. defaultMessage is: -#. Are you sure you want to delete {counter,plural,one{this attribute} -#. other{{displayQuantity} categories}}? #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this attribute} " @@ -886,22 +796,33 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.2497542455] +#. [src.categories.views.CategoryList.2144707585] +#. defaultMessage is: +#. Are you sure you want to delete {counter,plural,one{this category} +#. other{{displayQuantity} categories}}? +#: build/locale/src/categories/views/CategoryList/CategoryList.json +msgctxt "description" +msgid "" +"Are you sure you want to delete {counter,plural,one{this category} " +"other{{displayQuantity} categories}}?" +msgstr "" + +#. [src.collections.views.CollectionList.2497542455] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this collection} " "other{{displayQuantity} collections}}?" msgstr "" -#. [src.customers.views.409347866] +#. [src.customers.views.CustomerList.409347866] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this customer} #. other{{displayQuantity} customers}}? -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this customer} " @@ -919,11 +840,11 @@ msgid "" "other{{displayQuantity} menus}}?" msgstr "" -#. [src.orders.views.1389231130] - dialog content +#. [src.orders.views.OrderDraftList.1389231130] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this order draft} #. other{{displayQuantity} orderDrafts}}? -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this order draft} " @@ -941,11 +862,11 @@ msgid "" "other{{displayQuantity} pages}}?" msgstr "" -#. [src.productTypes.views.2294091098] - dialog content +#. [src.productTypes.views.ProductTypeList.2294091098] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this product type} #. other{{displayQuantity} product types}}? -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this product type} " @@ -963,11 +884,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.discounts.views.2516361175] - dialog content +#. [src.discounts.views.SaleList.2516361175] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this sale} #. other{{displayQuantity} sales}}? -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this sale} " @@ -996,17 +917,33 @@ msgid "" "other{{displayQuantity} variants}}?" msgstr "" -#. [src.discounts.views.1791926983] - dialog content +#. [src.discounts.views.VoucherList.1791926983] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this voucher} #. other{{displayQuantity} vouchers}}? -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this voucher} " "other{{displayQuantity} vouchers}}?" msgstr "" +#. [src.shipping.views.ShippingZoneDetails.131963671] - unassign country +#. defaultMessage is: +#. Are you sure you want to delete {countryName} from this shipping zone? +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country" +msgid "Are you sure you want to delete {countryName} from this shipping zone?" +msgstr "" + +#. [src.staff.views.8878988] +#. defaultMessage is: +#. Are you sure you want to delete {email} from staff members? +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "description" +msgid "Are you sure you want to delete {email} from staff members?" +msgstr "" + #. [src.customers.views.1927691511] - delete customer, dialog content #. defaultMessage is: #. Are you sure you want to delete {email}? @@ -1121,11 +1058,11 @@ msgctxt "description" msgid "Are you sure you want to mark this order as paid?" msgstr "" -#. [src.collections.views.1348793822] +#. [src.collections.views.CollectionList.1348793822] #. defaultMessage is: #. Are you sure you want to publish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to publish {counter,plural,one{this collection} " @@ -1154,30 +1091,6 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.orders.components.OrderDraftCancelDialog.3199827590] -#. defaultMessage is: -#. Are you sure you want to remove draft #{number}? -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "description" -msgid "Are you sure you want to remove draft #{number}?" -msgstr "" - -#. [src.products.views.672103788] -#. defaultMessage is: -#. Are you sure you want to remove this image? -#: build/locale/src/products/views/ProductImage.json -msgctxt "description" -msgid "Are you sure you want to remove this image?" -msgstr "" - -#. [src.shipping.views.ShippingZoneDetails.1790261672] - unassign country -#. defaultMessage is: -#. Are you sure you want to remove {countryName} from this shipping zone? -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country" -msgid "Are you sure you want to remove {countryName} from this shipping zone?" -msgstr "" - #. [src.staff.views.3945766678] #. defaultMessage is: #. Are you sure you want to remove {email} avatar? @@ -1186,14 +1099,6 @@ msgctxt "description" msgid "Are you sure you want to remove {email} avatar?" msgstr "" -#. [src.staff.views.2728048444] -#. defaultMessage is: -#. Are you sure you want to remove {email} from staff members? -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "description" -msgid "Are you sure you want to remove {email} from staff members?" -msgstr "" - #. [src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450] #. defaultMessage is: #. Are you sure you want to unassign {attributeName} from {productTypeName}? @@ -1274,11 +1179,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.3944356444] +#. [src.collections.views.CollectionList.3944356444] #. defaultMessage is: #. Are you sure you want to unpublish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to unpublish {counter,plural,one{this collection} " @@ -1439,6 +1344,15 @@ msgctxt "button" msgid "Assign products" msgstr "" +#. [src.attributes.components.AttributeValues.351422234] - assign attribute +#. value button +#. defaultMessage is: +#. Assign value +#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json +msgctxt "assign attribute value button" +msgid "Assign value" +msgstr "" + #. [src.attributes.components.AttributeDetails.3605174225] - attribute's slug #. short code label #. defaultMessage is: @@ -1517,6 +1431,14 @@ msgctxt "product attributes, section header" msgid "Attributes" msgstr "Atributet" +#. [src.configuration.2326418019] +#. defaultMessage is: +#. Attributes and Product Typess +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Attributes and Product Typess" +msgstr "" + #. [src.attributes.views.AttributeList.3218248395] - deleted multiple #. attributes #. defaultMessage is: @@ -2300,6 +2222,22 @@ msgctxt "description" msgid "Country area" msgstr "" +#. [menuCreateDialogHeader] - dialog header +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json +msgctxt "dialog header" +msgid "Create Menu" +msgstr "" + +#. [menuListPageAddMenu] - button +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json +msgctxt "button" +msgid "Create Menu" +msgstr "" + #. [src.attributes.components.AttributePage.2855501559] - page title #. defaultMessage is: #. Create New Attribute @@ -2324,6 +2262,30 @@ msgctxt "header" msgid "Create New Shipping Zone" msgstr "" +#. [src.pages.components.PageDetailsPage.1068617485] - page header +#. defaultMessage is: +#. Create Page +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page header" +msgid "Create Page" +msgstr "" + +#. [src.orders.components.OrderProductAddDialog.1542417144] - dialog header +#. defaultMessage is: +#. Create Product +#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json +msgctxt "dialog header" +msgid "Create Product" +msgstr "" + +#. [src.products.components.ProductListPage.1542417144] - button +#. defaultMessage is: +#. Create Product +#: build/locale/src/products/components/ProductListPage/ProductListPage.json +msgctxt "button" +msgid "Create Product" +msgstr "" + #. [src.products.views.1542417144] - window title #. defaultMessage is: #. Create Product @@ -2356,11 +2318,19 @@ msgctxt "page header" msgid "Create Sale" msgstr "" -#. [src.products.views.2362587265] - window title +#. [src.discounts.components.SaleListPage.3866518732] - button +#. defaultMessage is: +#. Create Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "button" +msgid "Create Sale" +msgstr "" + +#. [src.products.views.2362587265] - header #. defaultMessage is: #. Create Variant #: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "window title" +msgctxt "header" msgid "Create Variant" msgstr "" @@ -2372,6 +2342,22 @@ msgctxt "page header" msgid "Create Voucher" msgstr "" +#. [src.attributes.components.AttributeListPage.3824684885] - button +#. defaultMessage is: +#. Create attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "button" +msgid "Create attribute" +msgstr "" + +#. [src.categories.components.CategoryListPage.1140231710] - button +#. defaultMessage is: +#. Create category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "button" +msgid "Create category" +msgstr "" + #. [src.categories.views.1140231710] - window title #. defaultMessage is: #. Create category @@ -2380,6 +2366,14 @@ msgctxt "window title" msgid "Create category" msgstr "" +#. [src.collections.components.CollectionListPage.686910896] - button +#. defaultMessage is: +#. Create collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "button" +msgid "Create collection" +msgstr "" + #. [src.collections.views.686910896] - window title #. defaultMessage is: #. Create collection @@ -2396,6 +2390,14 @@ msgctxt "window title" msgid "Create customer" msgstr "" +#. [menuItemsAddItem] - add new menu item +#. defaultMessage is: +#. Create new item +#: build/locale/src/navigation/components/MenuItems/MenuItems.json +msgctxt "add new menu item" +msgid "Create new item" +msgstr "" + #. [src.orders.components.OrderDraftListPage.2826235371] - button #. defaultMessage is: #. Create order @@ -2408,6 +2410,14 @@ msgctxt "button" msgid "Create order" msgstr "Krijo porosi" +#. [src.pages.components.PageListPage.3785394515] - button +#. defaultMessage is: +#. Create page +#: build/locale/src/pages/components/PageListPage/PageListPage.json +msgctxt "button" +msgid "Create page" +msgstr "" + #. [src.pages.views.3785394515] - header #. defaultMessage is: #. Create page @@ -2419,11 +2429,55 @@ msgstr "" #. [src.shipping.components.ShippingZoneRateDialog.16061680] - button #. defaultMessage is: #. Create rate +#. [src.shipping.components.ShippingZoneRates.16061680] - button +#. defaultMessage is: +#. Create rate #: build/locale/src/shipping/components/ShippingZoneRateDialog/ShippingZoneRateDialog.json +#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json msgctxt "button" msgid "Create rate" msgstr "" +#. [src.shipping.components.ShippingZonesList.2673544109] - button +#. defaultMessage is: +#. Create shipping zone +#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json +msgctxt "button" +msgid "Create shipping zone" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.770296100] - button +#. defaultMessage is: +#. Create subcategory +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json +msgctxt "button" +msgid "Create subcategory" +msgstr "" + +#. [src.products.components.ProductVariants.3989383405] - button +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/components/ProductVariants/ProductVariants.json +msgctxt "button" +msgid "Create variant" +msgstr "" + +#. [src.products.views.3989383405] - window title +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/views/ProductVariantCreate.json +msgctxt "window title" +msgid "Create variant" +msgstr "" + +#. [src.discounts.components.VoucherListPage.614836274] - button +#. defaultMessage is: +#. Create voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "button" +msgid "Create voucher" +msgstr "" + #. [src.collections.views.1597339737] #. defaultMessage is: #. Created collection @@ -2470,7 +2524,11 @@ msgstr "" #. [src.components.FilterBar.2340527467] #. defaultMessage is: #. Custom Filter +#. [src.components.SearchBar.2340527467] +#. defaultMessage is: +#. Custom Filter #: build/locale/src/components/FilterBar/FilterBar.json +#: build/locale/src/components/SearchBar/SearchBar.json msgctxt "description" msgid "Custom Filter" msgstr "" @@ -2726,10 +2784,18 @@ msgctxt "dialog title" msgid "Delete Collection" msgstr "" -#. [src.orders.views.1161115149] - dialog header +#. [src.products.views.1731766393] - dialog header +#. defaultMessage is: +#. Delete Image +#: build/locale/src/products/views/ProductImage.json +msgctxt "dialog header" +msgid "Delete Image" +msgstr "" + +#. [src.orders.views.OrderDraftList.1161115149] - dialog header #. defaultMessage is: #. Delete Order Drafts -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog header" msgid "Delete Order Drafts" msgstr "" @@ -2767,10 +2833,10 @@ msgctxt "dialog header" msgid "Delete Product Type" msgstr "" -#. [src.productTypes.views.4080551769] - dialog header +#. [src.productTypes.views.ProductTypeList.4080551769] - dialog header #. defaultMessage is: #. Delete Product Types -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog header" msgid "Delete Product Types" msgstr "" @@ -2799,10 +2865,10 @@ msgctxt "dialog header" msgid "Delete Sale" msgstr "" -#. [src.discounts.views.2809303671] - dialog header +#. [src.discounts.views.SaleList.2809303671] - dialog header #. defaultMessage is: #. Delete Sales -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog header" msgid "Delete Sales" msgstr "" @@ -2816,9 +2882,13 @@ msgctxt "custom search delete, dialog header" msgid "Delete Search" msgstr "" +#. [src.components.Filter.2173195312] - button +#. defaultMessage is: +#. Delete Search #. [src.components.TableFilter.2173195312] - button #. defaultMessage is: #. Delete Search +#: build/locale/src/components/Filter/FilterSearch.json #: build/locale/src/components/TableFilter/FilterChips.json msgctxt "button" msgid "Delete Search" @@ -2885,10 +2955,10 @@ msgctxt "dialog header" msgid "Delete Voucher" msgstr "" -#. [src.discounts.views.367317371] - dialog header +#. [src.discounts.views.VoucherList.367317371] - dialog header #. defaultMessage is: #. Delete Vouchers -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog header" msgid "Delete Vouchers" msgstr "" @@ -2922,11 +2992,11 @@ msgstr "" #. [src.categories.views.712767046] - dialog title #. defaultMessage is: #. Delete categories -#. [src.categories.views.712767046] - dialog title +#. [src.categories.views.CategoryList.712767046] - dialog title #. defaultMessage is: #. Delete categories #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "dialog title" msgid "Delete categories" msgstr "" @@ -2943,10 +3013,10 @@ msgctxt "dialog title" msgid "Delete category" msgstr "" -#. [src.collections.views.3817188998] - dialog title +#. [src.collections.views.CollectionList.3817188998] - dialog title #. defaultMessage is: #. Delete collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Delete collections" msgstr "" @@ -2959,14 +3029,31 @@ msgctxt "dialog header" msgid "Delete customer" msgstr "" -#. [src.customers.views.1946482599] - dialog header +#. [src.customers.views.CustomerList.1946482599] - dialog header #. defaultMessage is: #. Delete customers -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "dialog header" msgid "Delete customers" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.632633254] - dialog header +#. defaultMessage is: +#. Delete draft order +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "dialog header" +msgid "Delete draft order" +msgstr "" + +#. [src.shipping.views.ShippingZoneDetails.1947090060] - unassign country, +#. dialog header +#. defaultMessage is: +#. Delete from shipping zone +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country, dialog header" +msgid "Delete from shipping zone" +msgstr "" + #. [src.collections.views.942133001] - dialog title #. defaultMessage is: #. Delete image @@ -3027,6 +3114,14 @@ msgctxt "description" msgid "Deleted collection" msgstr "Koleksioni i fshire" +#. [src.orders.views.OrderDraftList.1648805446] +#. defaultMessage is: +#. Deleted draft orders +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json +msgctxt "description" +msgid "Deleted draft orders" +msgstr "" + #. [menuListDeletedMenu] #. defaultMessage is: #. Deleted menu @@ -3626,14 +3721,6 @@ msgctxt "order history message" msgid "Fulfilled {quantity} items" msgstr "" -#. [src.orders.components.OrderListFilter.2943502192] - order -#. defaultMessage is: -#. Fulfillment Status -#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json -msgctxt "order" -msgid "Fulfillment Status" -msgstr "" - #. [src.orders.components.OrderHistory.3081292385] - order history message #. defaultMessage is: #. Fulfillment confirmation was sent to customer @@ -3790,12 +3877,12 @@ msgctxt "description" msgid "If empty, the preview shows what will be autogenerated." msgstr "If empty, the preview shows what will be autogenerated." -#. [src.attributes.components.AttributeProperties.2519239682] +#. [src.attributes.components.AttributeProperties.4048785456] #. defaultMessage is: -#. If enable this attribute can be used as a column in product table. +#. If enabled this attribute can be used as a column in product table. #: build/locale/src/attributes/components/AttributeProperties/AttributeProperties.json msgctxt "description" -msgid "If enable this attribute can be used as a column in product table." +msgid "If enabled this attribute can be used as a column in product table." msgstr "" #. [src.attributes.components.AttributeProperties.787251583] @@ -3901,6 +3988,22 @@ msgctxt "product variant stock" msgid "Inventory" msgstr "Inventory" +#. [src.staff.components.StaffAddMemberDialog.1481503299] - dialog header +#. defaultMessage is: +#. Invite Staff Member +#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json +msgctxt "dialog header" +msgid "Invite Staff Member" +msgstr "" + +#. [src.staff.components.StaffListPage.797461521] - button +#. defaultMessage is: +#. Invite staff member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "button" +msgid "Invite staff member" +msgstr "" + #. [src.productTypes.components.ProductTypeShipping.2143413921] - switch #. button #. defaultMessage is: @@ -4253,6 +4356,14 @@ msgctxt "voucher requirement" msgid "Minimum quantity of items" msgstr "" +#. [src.configuration.1233229030] +#. defaultMessage is: +#. Miscellaneous +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Miscellaneous" +msgstr "" + #. [src.attributes.components.AttributeDetails.3334509011] - product attribute #. type #. defaultMessage is: @@ -5085,6 +5196,14 @@ msgctxt "description" msgid "Order History" msgstr "" +#. [src.orders.components.OrderListFilter.2222765704] +#. defaultMessage is: +#. Order Status +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +msgctxt "description" +msgid "Order Status" +msgstr "" + #. [src.orders.components.OrderHistory.1230178536] - order history message #. defaultMessage is: #. Order address was updated @@ -5101,13 +5220,13 @@ msgctxt "order history message" msgid "Order confirmation was sent to customer" msgstr "" -#. [src.orders.views.1872939752] +#. [src.orders.views.OrderDraftList.1872939752] #. defaultMessage is: #. Order draft succesfully created #. [src.orders.views.OrderList.1872939752] #. defaultMessage is: #. Order draft succesfully created -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json #: build/locale/src/orders/views/OrderList/OrderList.json msgctxt "description" msgid "Order draft succesfully created" @@ -5772,6 +5891,14 @@ msgctxt "description" msgid "Product Name" msgstr "" +#. [src.configuration.3655543906] +#. defaultMessage is: +#. Product Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Product Settings" +msgstr "" + #. [src.discounts.components.DiscountProducts.4257289053] #. defaultMessage is: #. Product Type @@ -5930,12 +6057,12 @@ msgctxt "order history message" msgid "Products were added to draft order" msgstr "" -#. [src.orders.components.OrderHistory.2574162126] - order history message +#. [src.orders.components.OrderHistory.4067959693] - order history message #. defaultMessage is: -#. Products were removed from draft order +#. Products were deleted from draft order #: build/locale/src/orders/components/OrderHistory/OrderHistory.json msgctxt "order history message" -msgid "Products were removed from draft order" +msgid "Products were deleted from draft order" msgstr "" #. [src.properties] @@ -5962,10 +6089,10 @@ msgctxt "description" msgid "Provided email address does not exist in our database." msgstr "" -#. [src.collections.views.1547167026] - publish collections +#. [src.collections.views.CollectionList.1547167026] - publish collections #. defaultMessage is: #. Publish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "publish collections" msgid "Publish" msgstr "Publish" @@ -6002,10 +6129,10 @@ msgctxt "dialog header" msgid "Publish Products" msgstr "" -#. [src.collections.views.2823425739] - dialog title +#. [src.collections.views.CollectionList.2823425739] - dialog title #. defaultMessage is: #. Publish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Publish collections" msgstr "" @@ -6179,6 +6306,18 @@ msgctxt "shipping method price" msgid "Rate Price" msgstr "" +#. [src.orders.components.OrderListFilter.2415661583] - order status +#. defaultMessage is: +#. Ready to Capture +#. [src.orders.views.OrderList.readyToCapture] - order status +#. defaultMessage is: +#. Ready to Capture +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +#: build/locale/src/orders/views/OrderList/filters.json +msgctxt "order status" +msgid "Ready to Capture" +msgstr "" + #. [src.customers.components.CustomerOrders.3878642352] - section header #. defaultMessage is: #. Recent orders @@ -6227,22 +6366,14 @@ msgctxt "switch button" msgid "Release all stock allocated to this order" msgstr "" -#. [src.auth.components.LoginPage.3182284913] - login -#. defaultMessage is: -#. Remember me -#: build/locale/src/auth/components/LoginPage/LoginPage.json -msgctxt "login" -msgid "Remember me" -msgstr "" - #. [src.categories.views.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. -#. [src.categories.views.3488150607] +#. [src.categories.views.CategoryList.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "description" msgid "Remember this will also delete all products assigned to this category." msgstr "" @@ -6255,39 +6386,6 @@ msgctxt "button" msgid "Remove" msgstr "Fshi" -#. [src.products.views.490753666] - dialog header -#. defaultMessage is: -#. Remove Image -#: build/locale/src/products/views/ProductImage.json -msgctxt "dialog header" -msgid "Remove Image" -msgstr "" - -#. [src.orders.components.OrderDraftCancelDialog.500287069] - dialog header -#. defaultMessage is: -#. Remove draft order -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "dialog header" -msgid "Remove draft order" -msgstr "Fshi porosine ne draft" - -#. [src.shipping.views.ShippingZoneDetails.254167659] - unassign country, -#. dialog header -#. defaultMessage is: -#. Remove from shipping zone -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country, dialog header" -msgid "Remove from shipping zone" -msgstr "" - -#. [src.orders.views.3880993240] -#. defaultMessage is: -#. Removed draft orders -#: build/locale/src/orders/views/OrderDraftList.json -msgctxt "description" -msgid "Removed draft orders" -msgstr "" - #. [src.pages.views.1457312643] #. defaultMessage is: #. Removed page @@ -6453,6 +6551,18 @@ msgctxt "button" msgid "Save" msgstr "Ruaj" +#. [src.components.Filter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#. [src.components.TableFilter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#: build/locale/src/components/Filter/FilterSearch.json +#: build/locale/src/components/TableFilter/FilterChips.json +msgctxt "button" +msgid "Save Custom Search" +msgstr "" + #. [src.components.SaveFilterTabDialog.1514415736] - save filter tab, header #. defaultMessage is: #. Save Custom Search @@ -6461,14 +6571,6 @@ msgctxt "save filter tab, header" msgid "Save Custom Search" msgstr "" -#. [src.components.TableFilter.1514415736] - button -#. defaultMessage is: -#. Save Custom Search -#: build/locale/src/components/TableFilter/FilterChips.json -msgctxt "button" -msgid "Save Custom Search" -msgstr "" - #. [src.products.components.ProductVariantCreatePage.2853608829] - button #. defaultMessage is: #. Save variant @@ -6485,6 +6587,14 @@ msgctxt "description" msgid "Saved changes" msgstr "" +#. [src.attributes.components.AttributeListPage.3916653510] +#. defaultMessage is: +#. Search Attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "description" +msgid "Search Attribute" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.902296540] #. defaultMessage is: #. Search Attributes @@ -6501,10 +6611,30 @@ msgctxt "description" msgid "Search Categories" msgstr "" +#. [src.categories.components.CategoryListPage.3841025483] +#. defaultMessage is: +#. Search Category +#. [src.translations.components.TranslationsEntitiesListPage.3841025483] +#. defaultMessage is: +#. Search Category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Category" +msgstr "" + +#. [src.collections.components.CollectionListPage.4057224233] +#. defaultMessage is: +#. Search Collection #. [src.components.AssignCollectionDialog.4057224233] #. defaultMessage is: #. Search Collection +#. [src.translations.components.TranslationsEntitiesListPage.4057224233] +#. defaultMessage is: +#. Search Collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json #: build/locale/src/components/AssignCollectionDialog/AssignCollectionDialog.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json msgctxt "description" msgid "Search Collection" msgstr "" @@ -6517,6 +6647,14 @@ msgctxt "description" msgid "Search Countries" msgstr "" +#. [src.customers.components.CustomerListPage.1643417013] +#. defaultMessage is: +#. Search Customer +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "description" +msgid "Search Customer" +msgstr "" + #. [src.orders.components.OrderCustomer.2433460203] #. defaultMessage is: #. Search Customers @@ -6525,6 +6663,14 @@ msgctxt "description" msgid "Search Customers" msgstr "" +#. [src.orders.components.OrderDraftListPage.77765281] +#. defaultMessage is: +#. Search Draft +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "description" +msgid "Search Draft" +msgstr "" + #. [src.translations.components.TranslationsCategoriesPage.1406947243] #. defaultMessage is: #. Search Engine Description @@ -6605,6 +6751,34 @@ msgctxt "description" msgid "Search Orders..." msgstr "" +#. [src.translations.components.TranslationsEntitiesListPage.2559018090] +#. defaultMessage is: +#. Search Page +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Page" +msgstr "" + +#. [src.translations.components.TranslationsEntitiesListPage.2105464697] +#. defaultMessage is: +#. Search Product +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product" +msgstr "" + +#. [src.productTypes.components.ProductTypeListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#. [src.translations.components.TranslationsEntitiesListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product Type" +msgstr "" + #. [src.components.AssignProductDialog.2850255786] #. defaultMessage is: #. Search Products @@ -6617,14 +6791,46 @@ msgctxt "description" msgid "Search Products" msgstr "" -#. [src.products.components.ProductListPage.3550330425] +#. [src.products.components.ProductListFilter.3550330425] #. defaultMessage is: #. Search Products... -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Search Products..." msgstr "" +#. [src.discounts.components.SaleListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#. [src.translations.components.TranslationsEntitiesListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Sale" +msgstr "" + +#. [src.staff.components.StaffListPage.61043583] +#. defaultMessage is: +#. Search Staff Member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "description" +msgid "Search Staff Member" +msgstr "" + +#. [src.discounts.components.VoucherListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#. [src.translations.components.TranslationsEntitiesListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Voucher" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.524117994] #. defaultMessage is: #. Search by attribute name @@ -6731,10 +6937,10 @@ msgctxt "description" msgid "Select all orders where:" msgstr "" -#. [src.products.components.ProductListPage.1421689426] +#. [src.products.components.ProductListFilter.1421689426] #. defaultMessage is: #. Select all products where: -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Select all products where:" msgstr "" @@ -6820,6 +7026,14 @@ msgctxt "description" msgid "Set plugin as Active" msgstr "" +#. [src.components.VisibilityCard.292404896] +#. defaultMessage is: +#. Set publication date +#: build/locale/src/components/VisibilityCard/VisibilityCard.json +msgctxt "description" +msgid "Set publication date" +msgstr "" + #. [src.discounts.shipment] - voucher discount #. defaultMessage is: #. Shipment @@ -7085,6 +7299,14 @@ msgctxt "staff section name" msgid "Staff Members" msgstr "" +#. [src.configuration.3140151600] +#. defaultMessage is: +#. Staff Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Staff Settings" +msgstr "" + #. [src.standard] - tax rate #. defaultMessage is: #. Standard @@ -8069,10 +8291,10 @@ msgctxt "payment status" msgid "Unpaid" msgstr "" -#. [src.collections.views.2237014112] - unpublish collections +#. [src.collections.views.CollectionList.2237014112] - unpublish collections #. defaultMessage is: #. Unpublish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "unpublish collections" msgid "Unpublish" msgstr "Unpublish" @@ -8109,10 +8331,10 @@ msgctxt "dialog header" msgid "Unpublish Products" msgstr "" -#. [src.collections.views.2637364047] - dialog title +#. [src.collections.views.CollectionList.2637364047] - dialog title #. defaultMessage is: #. Unpublish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Unpublish collections" msgstr "" @@ -8612,6 +8834,22 @@ msgctxt "description" msgid "ZIP / Postal code" msgstr "" +#. [src.productTypes.components.ProductTypeListPage.3479705616] - button +#. defaultMessage is: +#. create product type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "button" +msgid "create product type" +msgstr "" + +#. [src.staff.views.1308770978] - dialog header +#. defaultMessage is: +#. delete Staff User +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "dialog header" +msgid "delete Staff User" +msgstr "" + #. [orderPaymentVATDoesNotApply] - vat not included in order price #. defaultMessage is: #. does not apply @@ -8685,19 +8923,35 @@ msgctxt "product status is set as" msgid "is set as" msgstr "" -#. [src.staff.views.2240444792] - dialog header -#. defaultMessage is: -#. remove Staff User -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "dialog header" -msgid "remove Staff User" -msgstr "" - -#. [src.components.VisibilityCard.1815688500] +#. [src.collections.components.CollectionCreatePage.1815688500] - collection #. defaultMessage is: #. since {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.1815688500] - collection +#. defaultMessage is: +#. since {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "since {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.1815688500] - page +#. defaultMessage is: +#. since {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "since {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#. [src.products.components.ProductUpdatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "since {date}" msgstr "" @@ -8725,11 +8979,35 @@ msgctxt "weight" msgid "to {value} {unit}" msgstr "" -#. [src.components.VisibilityCard.2001551496] +#. [src.collections.components.CollectionCreatePage.2001551496] - collection #. defaultMessage is: #. will be visible from {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.2001551496] - collection +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "will be visible from {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.2001551496] - page +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "will be visible from {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#. [src.products.components.ProductUpdatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "will be visible from {date}" msgstr "" diff --git a/locale/sr.json b/locale/sr.json index 00549b073..1824ba31a 100644 --- a/locale/sr.json +++ b/locale/sr.json @@ -1 +1 @@ -{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.350498821":"","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.2519239682":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"Naziv","src.categories.components.CategoryProducts.636461959":"Naziv","src.collections.components.CollectionProducts.636461959":"Naziv","src.products.components.ProductDetailsForm.636461959":"Naziv","src.collections.components.CollectionDetails.636461959":"Naziv","src.components.ProductList.636461959":"Naziv","src.discounts.components.SaleInfo.636461959":"Naziv","src.discounts.components.SaleList.636461959":"Naziv","src.discounts.components.SaleSummary.636461959":"Naziv","menuItemDialogNameLabel":"Naziv","src.products.components.ProductVariants.636461959":"Naziv","src.shipping.components.ShippingZoneRates.636461959":"Naziv","src.shipping.components.ShippingZonesList.636461959":"Naziv","src.staff.components.StaffList.636461959":"Naziv","src.translations.components.TranslationsEntitiesList.636461959":"Naziv","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.254756045":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.3182284913":"","src.auth.components.LoginPage.109182747":"","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"","src.categories.views.2004894945":"","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.3229914152":"","src.categories.components.CategoryList.435697837":"","src.categories.components.CategoryList.2159874182":"","src.categories.components.CategoryUpdatePage.2159874182":"","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.228151782":"","src.categories.components.CategoryProducts.2968663655":"Proizvodi","src.categories.components.CategoryUpdatePage.2968663655":"Proizvodi","src.discounts.components.DiscountCategories.2968663655":"Proizvodi","src.discounts.components.DiscountCollections.2968663655":"Proizvodi","src.products":"Proizvodi","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryProducts.3554578821":"","src.categories.components.CategoryProductsCard.3554578821":"","src.categories.components.CategoryProducts.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProducts.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.categories.components.CategoryProductsCard.4164156574":"","src.categories.views.1754466114":"","src.categories.views.1140231710":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.712767046":"","src.categories.views.299584400":"","src.categories.views.844574071":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.collections.components.CollectionCreatePage.3958681866":"","src.collections.components.CollectionListPage.3958681866":"","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"","src.availability":"","src.collections.components.CollectionList.3640454975":"Objavljeno","src.collections.components.CollectionProducts.3640454975":"Objavljeno","src.discounts.components.DiscountProducts.3640454975":"Objavljeno","src.components.ProductList.3640454975":"Objavljeno","src.products.components.ProductListPage.3640454975":"Objavljeno","src.pages.components.PageList.3640454975":"Objavljeno","src.products.views.ProductList.published":"Objavljeno","src.collections.components.CollectionList.2341910657":"Nije objavljeno","src.collections.components.CollectionProducts.2341910657":"Nije objavljeno","src.discounts.components.DiscountProducts.2341910657":"Nije objavljeno","src.components.ProductList.2341910657":"Nije objavljeno","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.686910896":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"","src.collections.views.2402899582":"","src.collections.views.2237014112":"","src.pages.views.2237014112":"","src.products.views.ProductList.2237014112":"","src.collections.views.1547167026":"","src.pages.views.1547167026":"","src.products.views.ProductList.1547167026":"","src.collections.views.2823425739":"","src.collections.views.1348793822":"","src.collections.views.2637364047":"","src.collections.views.3944356444":"","src.collections.views.3817188998":"","src.collections.views.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.4057224233":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"","src.components.ErrorMessageCard.2845142593":"","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.FilterBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.ProductList.1134347598":"Cena","src.orders.components.OrderDraftDetailsProducts.1134347598":"Cena","src.orders.components.OrderFulfillment.1134347598":"Cena","src.products.components.ProductListPage.1134347598":"Cena","src.products.components.ProductPricing.1134347598":"Cena","src.orders.components.OrderUnfulfilledItems.1134347598":"Cena","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"Cena","src.shipping.components.ShippingZoneRates.1134347598":"Cena","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"","src.pages.components.PageList.1459686496":"","src.products.components.ProductListFilter.1459686496":"","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"","src.products.views.ProductList.hidden":"","src.components.VisibilityCard.1815688500":"","src.components.VisibilityCard.2001551496":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","configurationMenuStaff":"","configurationMenuShipping":"","configurationMenuTaxes":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","src.customers.components.CustomerAddress.1320082647":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"","src.customers.components.CustomerAddresses.3517722732":"","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"Adresa","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"Beleške","src.orders.components.OrderCustomerNote.1520756907":"Beleške","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"Beleška","src.customers.components.CustomerDetails.577013340":"Beleška","src.customers.components.CustomerCreatePage.1934221653":"","src.customers.components.CustomerListPage.1934221653":"","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerOrders.3878642352":"","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"Datum","src.orders.components.OrderDraftList.4205493358":"Datum","src.orders.components.OrderList.4205493358":"Datum","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"Status","src.orders.components.OrderListFilter.1756106276":"Status","src.products.components.ProductListFilter.1756106276":"Status","src.products.components.ProductVariants.1756106276":"Status","src.customers.components.CustomerOrders.878013594":"","src.orders.components.OrderDraftDetailsProducts.878013594":"","src.orders.components.OrderDraftDetailsSummary.878013594":"","src.orders.components.OrderDraftList.878013594":"","src.orders.components.OrderFulfillment.878013594":"","src.orders.components.OrderUnfulfilledItems.878013594":"","src.orders.components.OrderList.878013594":"","src.orders.components.OrderPayment.878013594":"","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.1946482599":"","src.customers.views.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"Vrednost","src.discounts.components.SaleSummary.1148029984":"Vrednost","src.discounts.components.VoucherList.1148029984":"Vrednost","src.discounts.components.VoucherSummary.1148029984":"Vrednost","src.discounts.components.VoucherValue.1148029984":"Vrednost","src.products.components.ProductAttributes.1148029984":"Vrednost","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.1742771332":"","src.discounts.components.SalePricing.1099355007":"","src.products.components.ProductPricing.1099355007":"","src.products.components.ProductVariantPrice.1099355007":"","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"Države","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"Kupon kod","src.discounts.components.VoucherSummary.78726751":"Kupon kod","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.1536809153":"","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"Određeni proizvodi","src.discounts.shipment":"","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.2809303671":"","src.discounts.views.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.367317371":"","src.discounts.views.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"Odustani","src.orders.views.OrderList.3528672691":"Odustani","src.confirm":"","src.delete":"","src.edit":"Izmeni","src.manage":"","src.remove":"","src.save":"","src.show":"","src.undo":"","src.attributes":"","src.products.components.ProductAttributes.4153345096":"","src.categories":"Kategorije","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"Kolekcije","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"","src.customers":"","src.draftOrders":"","src.home":"Početna","src.navigation":"","src.orders":"","src.pages":"","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"","src.taxes.components.CountryListPage.3955023266":"","src.translations":"","src.vouchers":"","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"","src.partiallyPaid":"","src.partiallyRefunded":"","src.refunded":"","src.unpaid":"","src.cancelled":"","src.draft":"","src.fulfilled":"","src.orders.views.OrderList.fulfilled":"","src.orders.components.OrderListFilter.1712863026":"","src.partiallyFulfilled":"","src.unfulfilled":"","src.orders.views.OrderList.unfulfilled":"","src.orders.components.OrderListFilter.1751787272":"","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","src.1395232177":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"Link","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"","src.orders.components.OrderDetailsPage.1854613983":"","src.orders.components.OrderDraftPage.1854613983":"","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"","src.orders.components.OrderCustomerEditDialog.1411666943":"","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.500287069":"","src.orders.components.OrderDraftCancelDialog.3199827590":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"","src.orders.components.OrderUnfulfilledItems.1895667608":"","src.orders.components.OrderDraftDetailsProducts.2796503714":"Količina","src.orders.components.OrderFulfillment.2796503714":"Količina","src.orders.components.OrderFulfillmentDialog.2796503714":"Količina","src.orders.components.OrderUnfulfilledItems.2796503714":"Količina","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"","src.orders.components.OrderPayment.781550514":"","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"","src.orders.components.OrderListPage.2826235371":"","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"","src.orders.components.OrderFulfillmentCancelDialog.732594284":"","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.2574162126":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2943502192":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"Poštarina","src.productTypes.components.ProductTypeShipping.1325966144":"Poštarina","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"Poštarina","src.orders.components.OrderPayment.3768782744":"","src.orders.components.OrderPayment.2320183694":"","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"","src.orders.components.OrderPayment.2845258362":"","src.orders.components.OrderPayment.2444197639":"","src.orders.components.OrderPayment.3500506678":"","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.2775402904":"","src.products.components.ProductListPage.2775402904":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.3880993240":"","src.orders.views.1161115149":"","src.orders.views.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.755314116":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"","src.pages.components.PageList.1124600214":"","src.pages.components.PageInfo.1116746286":"","src.translations.components.TranslationsPagesPage.1116746286":"","src.pages.components.PageList.3478065224":"","src.pages.components.PageSlug.3478065224":"","src.productTypes.components.ProductTypeAttributes.3478065224":"","src.pages.components.PageList.3767550649":"","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.1767905232":"","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.3785394515":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"","src.products.components.ProductVariantImages.3240888698":"","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"","src.products.components.ProductVariantStock.3841616483":"","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListPage.821159718":"","src.products.components.ProductListPage.1421689426":"","src.products.components.ProductListPage.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"","prodictStockInventoryLabel":"","src.products.components.ProductVariantStock.3490038570":"","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"","src.products.components.ProductVariants.2153006789":"","src.products.components.ProductVariantNavigation.2845381934":"","src.products.components.ProductVariants.2845381934":"","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1542417144":"","src.products.views.1591632382":"","src.products.views.490753666":"","src.products.views.672103788":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.1694086800":"","src.products.views.ProductList.224127438":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.products.views.2178905289":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1756957616":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.889729490":"","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.4080551769":"","src.productTypes.views.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.352297149":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2474410767":"","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.254167659":"","src.shipping.views.ShippingZoneDetails.1790261672":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"","src.siteSettings.components.SiteSettingsKeys.2446088470":"","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.3490059488":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"Dozvole","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.3247064221":"Aktivan","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.802625341":"","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"Korisnik je aktivan","src.staff.views.2240444792":"","src.staff.views.2728048444":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file +{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.3824684885":"","src.attributes.components.AttributeListPage.2417065806":"","src.attributes.components.AttributeListPage.3916653510":"","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.4048785456":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"Naziv","src.categories.components.CategoryProductList.636461959":"Naziv","src.components.ProductList.636461959":"Naziv","src.products.components.ProductList.636461959":"Naziv","src.collections.components.CollectionDetails.636461959":"Naziv","src.collections.components.CollectionProducts.636461959":"Naziv","src.products.components.ProductDetailsForm.636461959":"Naziv","src.discounts.components.SaleInfo.636461959":"Naziv","src.discounts.components.SaleList.636461959":"Naziv","src.discounts.components.SaleSummary.636461959":"Naziv","menuItemDialogNameLabel":"Naziv","src.plugins.components.PluginsList.636461959":"Naziv","src.products.components.ProductVariants.636461959":"Naziv","src.shipping.components.ShippingZoneRates.636461959":"Naziv","src.shipping.components.ShippingZonesList.636461959":"Naziv","src.staff.components.StaffList.636461959":"Naziv","src.translations.components.TranslationsEntitiesList.636461959":"Naziv","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.351422234":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.109182747":"","src.auth.components.LoginPage.4028609483":"","src.auth.components.NewPasswordPage.1915811227":"","src.auth.components.NewPasswordPage.1254879564":"","src.auth.components.NewPasswordPage.2799926859":"","src.auth.components.NewPasswordPage.4253911811":"","src.auth.components.NewPasswordPage.2342634351":"","src.auth.components.ResetPasswordPage.2370700732":"","src.auth.components.ResetPasswordPage.3663311080":"","src.auth.components.ResetPasswordSuccessPage.4066297200":"","src.auth.components.ResetPasswordSuccessPage.2245157344":"","src.auth.views.2388238158":"","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"","src.categories.views.2004894945":"","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.2159874182":"","src.categories.components.CategoryUpdatePage.2159874182":"","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.1140231710":"","src.categories.views.1140231710":"","src.categories.components.CategoryListPage.4294878092":"","src.categories.components.CategoryListPage.3841025483":"","src.translations.components.TranslationsEntitiesListPage.3841025483":"","src.categories.components.CategoryProductList.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductList.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProductList.3640454975":"Objavljeno","src.components.ProductList.3640454975":"Objavljeno","src.products.components.ProductList.3640454975":"Objavljeno","src.products.components.ProductListPage.3640454975":"Objavljeno","productStatusLabel":"Objavljeno","src.collections.components.CollectionList.3640454975":"Objavljeno","src.collections.components.CollectionProducts.3640454975":"Objavljeno","src.discounts.components.DiscountProducts.3640454975":"Objavljeno","src.pages.components.PageList.3640454975":"Objavljeno","src.products.views.ProductList.published":"Objavljeno","src.categories.components.CategoryProductList.1134347598":"Cena","src.orders.components.OrderFulfillment.1134347598":"Cena","src.products.components.ProductList.1134347598":"Cena","src.products.components.ProductListPage.1134347598":"Cena","src.products.components.ProductPricing.1134347598":"Cena","src.components.ProductList.1134347598":"Cena","src.orders.components.OrderDraftDetailsProducts.1134347598":"Cena","src.orders.components.OrderUnfulfilledItems.1134347598":"Cena","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"Cena","src.shipping.components.ShippingZoneRates.1134347598":"Cena","src.categories.components.CategoryProductList.2341910657":"Nije objavljeno","src.products.components.ProductList.2341910657":"Nije objavljeno","src.collections.components.CollectionList.2341910657":"Nije objavljeno","src.collections.components.CollectionProducts.2341910657":"Nije objavljeno","src.discounts.components.DiscountProducts.2341910657":"Nije objavljeno","src.components.ProductList.2341910657":"Nije objavljeno","src.categories.components.CategoryProductList.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.products.components.ProductList.1657559629":"","src.categories.components.CategoryProducts.4164156574":"","src.categories.components.CategoryProducts.3554578821":"","src.categories.components.CategoryUpdatePage.2968663655":"Proizvodi","src.discounts.components.DiscountCategories.2968663655":"Proizvodi","src.discounts.components.DiscountCollections.2968663655":"Proizvodi","src.products":"Proizvodi","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryUpdatePage.3229914152":"","src.categories.components.CategoryUpdatePage.770296100":"","src.categories.views.1754466114":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.CategoryList.3488150607":"","src.categories.views.712767046":"","src.categories.views.CategoryList.712767046":"","src.categories.views.299584400":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.categories.views.CategoryList.2144707585":"","src.collections.components.CollectionCreatePage.3958681866":"","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionCreatePage.2001551496":"","src.collections.components.CollectionDetailsPage.2001551496":"","src.pages.components.PageDetailsPage.2001551496":"","src.products.components.ProductCreatePage.2001551496":"","src.products.components.ProductUpdatePage.2001551496":"","src.collections.components.CollectionCreatePage.1815688500":"","src.collections.components.CollectionDetailsPage.1815688500":"","src.pages.components.PageDetailsPage.1815688500":"","src.products.components.ProductCreatePage.1815688500":"","src.products.components.ProductUpdatePage.1815688500":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"","src.availability":"","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionListPage.686910896":"","src.collections.views.686910896":"","src.collections.components.CollectionListPage.1631917001":"","src.collections.components.CollectionListPage.4057224233":"","src.components.AssignCollectionDialog.4057224233":"","src.translations.components.TranslationsEntitiesListPage.4057224233":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"","src.collections.views.2402899582":"","src.collections.views.CollectionList.2237014112":"","src.pages.views.2237014112":"","src.products.views.ProductList.2237014112":"","src.collections.views.CollectionList.1547167026":"","src.pages.views.1547167026":"","src.products.views.ProductList.1547167026":"","src.collections.views.CollectionList.2823425739":"","src.collections.views.CollectionList.1348793822":"","src.collections.views.CollectionList.2637364047":"","src.collections.views.CollectionList.3944356444":"","src.collections.views.CollectionList.3817188998":"","src.collections.views.CollectionList.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"","src.components.ErrorMessageCard.2845142593":"","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.Filter.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.Filter.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.FilterBar.2340527467":"","src.components.SearchBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"","src.pages.components.PageList.1459686496":"","src.products.components.ProductListFilter.1459686496":"","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"","src.products.views.ProductList.hidden":"","src.components.VisibilityCard.292404896":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","src.configuration.2326418019":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","src.configuration.3655543906":"","configurationMenuShipping":"","configurationMenuTaxes":"","src.configuration.3140151600":"","configurationMenuStaff":"","src.configuration.1233229030":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","configurationPluginsPages":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"","src.customers.components.CustomerAddresses.3517722732":"","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"Adresa","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"Beleške","src.orders.components.OrderCustomerNote.1520756907":"Beleške","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"Beleška","src.customers.components.CustomerDetails.577013340":"Beleška","src.customers.components.CustomerCreatePage.1934221653":"","src.customers.components.CustomerListPage.1934221653":"","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerListPage.477293306":"","src.customers.components.CustomerListPage.1643417013":"","src.customers.components.CustomerOrders.3878642352":"","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"Datum","src.orders.components.OrderDraftList.4205493358":"Datum","src.orders.components.OrderList.4205493358":"Datum","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"Status","src.orders.components.OrderListFilter.1756106276":"Status","src.plugins.components.PluginInfo.1756106276":"Status","src.products.components.ProductListFilter.1756106276":"Status","src.products.components.ProductVariants.1756106276":"Status","src.customers.components.CustomerOrders.878013594":"","src.orders.components.OrderDraftDetailsProducts.878013594":"","src.orders.components.OrderDraftDetailsSummary.878013594":"","src.orders.components.OrderDraftList.878013594":"","src.orders.components.OrderFulfillment.878013594":"","src.orders.components.OrderUnfulfilledItems.878013594":"","src.orders.components.OrderList.878013594":"","src.orders.components.OrderPayment.878013594":"","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.CustomerList.1946482599":"","src.customers.views.CustomerList.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","src.discounts.components.SaleListPage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"Vrednost","src.discounts.components.SaleSummary.1148029984":"Vrednost","src.discounts.components.VoucherList.1148029984":"Vrednost","src.discounts.components.VoucherSummary.1148029984":"Vrednost","src.discounts.components.VoucherValue.1148029984":"Vrednost","src.products.components.ProductAttributes.1148029984":"Vrednost","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.3907768880":"","src.discounts.components.SaleListPage.1866913828":"","src.translations.components.TranslationsEntitiesListPage.1866913828":"","src.discounts.components.SalePricing.1099355007":"","src.products.components.ProductPricing.1099355007":"","src.products.components.ProductVariantPrice.1099355007":"","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"Države","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"Kupon kod","src.discounts.components.VoucherSummary.78726751":"Kupon kod","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.614836274":"","src.discounts.components.VoucherListPage.1112241061":"","src.discounts.components.VoucherListPage.1930485532":"","src.translations.components.TranslationsEntitiesListPage.1930485532":"","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"Određeni proizvodi","src.discounts.shipment":"","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.SaleList.2809303671":"","src.discounts.views.SaleList.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.VoucherList.367317371":"","src.discounts.views.VoucherList.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.somethingWentWrong":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"Odustani","src.orders.views.OrderList.3528672691":"Odustani","src.confirm":"","src.delete":"","src.edit":"Izmeni","src.manage":"","src.remove":"","src.save":"","src.show":"","src.undo":"","src.attributes":"","src.products.components.ProductAttributes.4153345096":"","src.categories":"Kategorije","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"Kolekcije","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"","src.customers":"","src.draftOrders":"","src.home":"Početna","src.navigation":"","src.orders":"","src.pages":"","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.plugins":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"","src.taxes.components.CountryListPage.3955023266":"","src.translations":"","src.vouchers":"","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"","src.partiallyPaid":"","src.partiallyRefunded":"","src.refunded":"","src.unpaid":"","src.cancelled":"","src.draft":"","src.fulfilled":"","src.orders.views.OrderList.fulfilled":"","src.orders.components.OrderListFilter.1712863026":"","src.partiallyFulfilled":"","src.unfulfilled":"","src.orders.views.OrderList.unfulfilled":"","src.orders.components.OrderListFilter.1751787272":"","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"Link","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"","src.orders.components.OrderDetailsPage.1854613983":"","src.orders.components.OrderDraftPage.1854613983":"","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"","src.orders.components.OrderCustomerEditDialog.1411666943":"","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.632633254":"","src.orders.components.OrderDraftCancelDialog.36681973":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"","src.orders.components.OrderUnfulfilledItems.1895667608":"","src.orders.components.OrderDraftDetailsProducts.2796503714":"Količina","src.orders.components.OrderFulfillment.2796503714":"Količina","src.orders.components.OrderFulfillmentDialog.2796503714":"Količina","src.orders.components.OrderUnfulfilledItems.2796503714":"Količina","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"","src.orders.components.OrderPayment.781550514":"","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"","src.orders.components.OrderListPage.2826235371":"","src.orders.components.OrderDraftListPage.551325728":"","src.orders.components.OrderDraftListPage.77765281":"","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"","src.orders.components.OrderFulfillmentCancelDialog.732594284":"","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.4067959693":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2415661583":"","src.orders.views.OrderList.readyToCapture":"","src.orders.components.OrderListFilter.2222765704":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"Poštarina","src.productTypes.components.ProductTypeShipping.1325966144":"Poštarina","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"Poštarina","src.orders.components.OrderPayment.3768782744":"","src.orders.components.OrderPayment.2320183694":"","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"","src.orders.components.OrderPayment.2845258362":"","src.orders.components.OrderPayment.2444197639":"","src.orders.components.OrderPayment.3500506678":"","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.1542417144":"","src.products.components.ProductListPage.1542417144":"","src.products.views.1542417144":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.OrderDraftList.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.OrderDraftList.1648805446":"","src.orders.views.OrderDraftList.1161115149":"","src.orders.views.OrderDraftList.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.1068617485":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"","src.pages.components.PageList.1124600214":"","src.pages.components.PageInfo.1116746286":"","src.translations.components.TranslationsPagesPage.1116746286":"","src.pages.components.PageList.3478065224":"","src.pages.components.PageSlug.3478065224":"","src.productTypes.components.ProductTypeAttributes.3478065224":"","src.pages.components.PageList.3767550649":"","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.3785394515":"","src.pages.views.3785394515":"","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.plugins.components.PluginInfo.3425535100":"","src.plugins.components.PluginsDetailsPage.3425535100":"","src.plugins.components.PluginInfo.1049131348":"","src.plugins.components.PluginInfo.4013064767":"","src.plugins.components.PluginsDetailsPage.3352026836":"","src.plugins.components.PluginsDetailsPage.2277745418":"","src.plugins.components.PluginsDetailsPage.1970881031":"","src.plugins.components.PluginSettings.1970881031":"","src.plugins.components.PluginsDetailsPage.4241018152":"","src.plugins.components.PluginsList.3247064221":"Aktivan","src.staff.components.StaffList.3247064221":"Aktivan","src.plugins.components.PluginsList.4120604650":"","src.plugins.components.PluginsList.666641390":"","src.plugins.views.100549097":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"","src.products.components.ProductVariantImages.3240888698":"","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"","src.products.components.ProductVariantStock.3841616483":"","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListFilter.821159718":"","src.products.components.ProductListFilter.1421689426":"","src.products.components.ProductListFilter.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"","prodictStockInventoryLabel":"","src.products.components.ProductVariantStock.3490038570":"","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"","src.products.components.ProductVariants.2153006789":"","src.products.components.ProductVariantNavigation.2845381934":"","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.3989383405":"","src.products.views.3989383405":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1591632382":"","src.products.views.1731766393":"","src.products.views.2880386427":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1217376589":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.3479705616":"","src.productTypes.components.ProductTypeListPage.1776073799":"","src.productTypes.components.ProductTypeListPage.3420445375":"","src.translations.components.TranslationsEntitiesListPage.3420445375":"","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.ProductTypeList.4080551769":"","src.productTypes.views.ProductTypeList.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRates.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2673544109":"","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.1947090060":"","src.shipping.views.ShippingZoneDetails.131963671":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"","src.siteSettings.components.SiteSettingsKeys.2446088470":"","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.1481503299":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"Dozvole","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.797461521":"","src.staff.components.StaffListPage.2852350932":"","src.staff.components.StaffListPage.61043583":"","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"Korisnik je aktivan","src.staff.views.1308770978":"","src.staff.views.8878988":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.2105464697":"","src.translations.components.TranslationsEntitiesListPage.2559018090":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file diff --git a/locale/sr.po b/locale/sr.po index 45f116d72..4ef7cc8b6 100644 --- a/locale/sr.po +++ b/locale/sr.po @@ -3,7 +3,7 @@ # msgid "" msgstr "" -"POT-Creation-Date: 2019-09-06T13:56:36.897Z\n" +"POT-Creation-Date: 2019-09-16T15:25:09.340Z\n" "Last-Translator: Bogdan Đukić , 2019\n" "Language-Team: Serbian (https://www.transifex.com/mirumee/teams/34782/sr/)\n" "MIME-Version: 1.0\n" @@ -141,22 +141,6 @@ msgctxt "create new menu item, header" msgid "Add Item" msgstr "" -#. [menuCreateDialogHeader] - dialog header -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json -msgctxt "dialog header" -msgid "Add Menu" -msgstr "" - -#. [menuListPageAddMenu] - button -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json -msgctxt "button" -msgid "Add Menu" -msgstr "" - #. [src.siteSettings.components.SiteSettingsKeyDialog.1238948746] - dialog #. header #. defaultMessage is: @@ -166,14 +150,6 @@ msgctxt "dialog header" msgid "Add New Authorization Key" msgstr "" -#. [src.pages.components.PageDetailsPage.755314116] - page header -#. defaultMessage is: -#. Add Page -#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json -msgctxt "page header" -msgid "Add Page" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.2892088870] - dialog header #. defaultMessage is: #. Add Price Rate @@ -182,38 +158,6 @@ msgctxt "dialog header" msgid "Add Price Rate" msgstr "" -#. [src.orders.components.OrderProductAddDialog.2775402904] - dialog header -#. defaultMessage is: -#. Add Product -#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json -msgctxt "dialog header" -msgid "Add Product" -msgstr "" - -#. [src.products.components.ProductListPage.2775402904] - button -#. defaultMessage is: -#. Add Product -#: build/locale/src/products/components/ProductListPage/ProductListPage.json -msgctxt "button" -msgid "Add Product" -msgstr "" - -#. [src.discounts.components.SaleListPage.1742771332] - button -#. defaultMessage is: -#. Add Sale -#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json -msgctxt "button" -msgid "Add Sale" -msgstr "" - -#. [src.staff.components.StaffAddMemberDialog.3490059488] - dialog header -#. defaultMessage is: -#. Add Staff Member -#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json -msgctxt "dialog header" -msgid "Add Staff Member" -msgstr "" - #. [src.attributes.components.AttributeValueEditDialog.1841790893] - add #. attribute value #. defaultMessage is: @@ -223,14 +167,6 @@ msgctxt "add attribute value" msgid "Add Value" msgstr "" -#. [src.products.views.2178905289] - header -#. defaultMessage is: -#. Add Variant -#: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "header" -msgid "Add Variant" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.1397795758] - add weight #. based shipping method, dialog header #. defaultMessage is: @@ -248,14 +184,6 @@ msgctxt "button" msgid "Add address" msgstr "" -#. [src.attributes.components.AttributeListPage.350498821] - button -#. defaultMessage is: -#. Add attribute -#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json -msgctxt "button" -msgid "Add attribute" -msgstr "" - #. [src.siteSettings.components.SiteSettingsKeyDialog.50561933] - button #. defaultMessage is: #. Add authentication @@ -264,14 +192,6 @@ msgctxt "button" msgid "Add authentication" msgstr "" -#. [src.categories.components.CategoryListPage.228151782] - button -#. defaultMessage is: -#. Add category -#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json -msgctxt "button" -msgid "Add category" -msgstr "" - #. [src.collections.components.CollectionCreatePage.3958681866] - page header #. defaultMessage is: #. Add collection @@ -280,14 +200,6 @@ msgctxt "page header" msgid "Add collection" msgstr "" -#. [src.collections.components.CollectionListPage.3958681866] - button -#. defaultMessage is: -#. Add collection -#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json -msgctxt "button" -msgid "Add collection" -msgstr "" - #. [src.customers.components.CustomerCreatePage.1934221653] - page header #. defaultMessage is: #. Add customer @@ -320,14 +232,6 @@ msgctxt "button" msgid "Add key" msgstr "" -#. [menuItemsAddItem] - add new menu item -#. defaultMessage is: -#. Add new item -#: build/locale/src/navigation/components/MenuItems/MenuItems.json -msgctxt "add new menu item" -msgid "Add new item" -msgstr "" - #. [menuItemsPlaceholder] #. defaultMessage is: #. Add new menu item to begin creating menu @@ -362,14 +266,6 @@ msgctxt "button" msgid "Add or Edit Link" msgstr "" -#. [src.pages.components.PageListPage.1767905232] - button -#. defaultMessage is: -#. Add page -#: build/locale/src/pages/components/PageListPage/PageListPage.json -msgctxt "button" -msgid "Add page" -msgstr "" - #. [src.categories.components.CategoryProducts.3554578821] - button #. defaultMessage is: #. Add product @@ -378,14 +274,6 @@ msgctxt "button" msgid "Add product" msgstr "" -#. [src.productTypes.components.ProductTypeListPage.889729490] - button -#. defaultMessage is: -#. Add product type -#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json -msgctxt "button" -msgid "Add product type" -msgstr "" - #. [src.orders.components.OrderDraftDetails.2528459381] - button #. defaultMessage is: #. Add products @@ -394,14 +282,6 @@ msgctxt "button" msgid "Add products" msgstr "" -#. [src.shipping.components.ShippingZoneRates.352297149] - button -#. defaultMessage is: -#. Add rate -#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json -msgctxt "button" -msgid "Add rate" -msgstr "" - #. [src.categories.components.CategoryCreatePage.2563994280] #. defaultMessage is: #. Add search engine title and description to make this category easier to @@ -463,30 +343,6 @@ msgctxt "button" msgid "Add shipping carrier" msgstr "" -#. [src.shipping.components.ShippingZonesList.2474410767] - button -#. defaultMessage is: -#. Add shipping zone -#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json -msgctxt "button" -msgid "Add shipping zone" -msgstr "" - -#. [src.staff.components.StaffListPage.802625341] - button -#. defaultMessage is: -#. Add staff member -#: build/locale/src/staff/components/StaffListPage/StaffListPage.json -msgctxt "button" -msgid "Add staff member" -msgstr "" - -#. [src.categories.components.CategoryList.435697837] - button -#. defaultMessage is: -#. Add subcategory -#: build/locale/src/categories/components/CategoryList/CategoryList.json -msgctxt "button" -msgid "Add subcategory" -msgstr "" - #. [src.attributes.components.AttributeProperties.673770329] - add attribute #. as column in product list table #. defaultMessage is: @@ -514,35 +370,14 @@ msgctxt "dialog header" msgid "Add tracking code" msgstr "" -#. [src.attributes.components.AttributeValues.254756045] - add attribute value -#. button -#. defaultMessage is: -#. Add value -#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json -msgctxt "add attribute value button" -msgid "Add value" -msgstr "" - #. [src.products.components.ProductVariantNavigation.2845381934] - button #. defaultMessage is: #. Add variant -#. [src.products.components.ProductVariants.2845381934] - button -#. defaultMessage is: -#. Add variant #: build/locale/src/products/components/ProductVariantNavigation/ProductVariantNavigation.json -#: build/locale/src/products/components/ProductVariants/ProductVariants.json msgctxt "button" msgid "Add variant" msgstr "" -#. [src.discounts.components.VoucherListPage.1536809153] - button -#. defaultMessage is: -#. Add voucher -#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json -msgctxt "button" -msgid "Add voucher" -msgstr "" - #. [src.attributes.views.AttributeDetails.634268988] - added new attribute #. value #. defaultMessage is: @@ -600,14 +435,6 @@ msgctxt "description" msgid "Address line 2" msgstr "" -#. [src.customers.components.CustomerAddress.1320082647] - addres card header -#. defaultMessage is: -#. Address {addressNumber} -#: build/locale/src/customers/components/CustomerAddress/CustomerAddress.json -msgctxt "addres card header" -msgid "Address {addressNumber}" -msgstr "" - #. [src.attributes.components.AttributeValues.1565474525] - attribute values #. list: slug column header #. defaultMessage is: @@ -657,6 +484,46 @@ msgctxt "tax rate" msgid "Agricultural supplies" msgstr "" +#. [src.attributes.components.AttributeListPage.2417065806] - tab name +#. defaultMessage is: +#. All Attributes +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "tab name" +msgid "All Attributes" +msgstr "" + +#. [src.categories.components.CategoryListPage.4294878092] - tab name +#. defaultMessage is: +#. All Categories +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "tab name" +msgid "All Categories" +msgstr "" + +#. [src.collections.components.CollectionListPage.1631917001] - tab name +#. defaultMessage is: +#. All Collections +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "tab name" +msgid "All Collections" +msgstr "" + +#. [src.customers.components.CustomerListPage.477293306] - tab name +#. defaultMessage is: +#. All Customers +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "tab name" +msgid "All Customers" +msgstr "" + +#. [src.orders.components.OrderDraftListPage.551325728] - tab name +#. defaultMessage is: +#. All Drafts +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "tab name" +msgid "All Drafts" +msgstr "" + #. [src.orders.components.OrderListPage.875489544] - tab name #. defaultMessage is: #. All Orders @@ -674,22 +541,54 @@ msgctxt "section header" msgid "All Photos" msgstr "" -#. [src.products.components.ProductListPage.821159718] - tab name +#. [src.productTypes.components.ProductTypeListPage.1776073799] - tab name +#. defaultMessage is: +#. All Product Types +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "tab name" +msgid "All Product Types" +msgstr "" + +#. [src.products.components.ProductListFilter.821159718] - tab name #. defaultMessage is: #. All Products -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "tab name" msgid "All Products" msgstr "" -#. [src.categories.components.CategoryList.3229914152] - section header +#. [src.discounts.components.SaleListPage.3907768880] - tab name +#. defaultMessage is: +#. All Sales +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "tab name" +msgid "All Sales" +msgstr "" + +#. [src.staff.components.StaffListPage.2852350932] - tab name +#. defaultMessage is: +#. All Staff Members +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "tab name" +msgid "All Staff Members" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.3229914152] - section header #. defaultMessage is: #. All Subcategories -#: build/locale/src/categories/components/CategoryList/CategoryList.json +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json msgctxt "section header" msgid "All Subcategories" msgstr "" +#. [src.discounts.components.VoucherListPage.1112241061] - tab name +#. defaultMessage is: +#. All Vouchers +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "tab name" +msgid "All Vouchers" +msgstr "" + #. [src.taxes.components.TaxConfiguration.142803418] #. defaultMessage is: #. All products prices are entered with tax included @@ -797,6 +696,14 @@ msgctxt "description" msgid "Are you sure you want to delete collection's image?" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.36681973] +#. defaultMessage is: +#. Are you sure you want to delete draft #{number}? +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "description" +msgid "Are you sure you want to delete draft #{number}?" +msgstr "" + #. [menuDetailsDeleteMenuContent] #. defaultMessage is: #. Are you sure you want to delete menu {menuName}? @@ -813,6 +720,14 @@ msgctxt "description" msgid "Are you sure you want to delete this address from users address book?" msgstr "" +#. [src.products.views.2880386427] +#. defaultMessage is: +#. Are you sure you want to delete this image? +#: build/locale/src/products/views/ProductImage.json +msgctxt "description" +msgid "Are you sure you want to delete this image?" +msgstr "" + #. [src.attributes.components.AttributeDeleteDialog.3738429348] - dialog #. content #. defaultMessage is: @@ -863,12 +778,7 @@ msgstr "" #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this attribute} #. other{{displayQuantity} categories}}? -#. [src.categories.views.844574071] -#. defaultMessage is: -#. Are you sure you want to delete {counter,plural,one{this attribute} -#. other{{displayQuantity} categories}}? #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this attribute} " @@ -886,22 +796,33 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.2497542455] +#. [src.categories.views.CategoryList.2144707585] +#. defaultMessage is: +#. Are you sure you want to delete {counter,plural,one{this category} +#. other{{displayQuantity} categories}}? +#: build/locale/src/categories/views/CategoryList/CategoryList.json +msgctxt "description" +msgid "" +"Are you sure you want to delete {counter,plural,one{this category} " +"other{{displayQuantity} categories}}?" +msgstr "" + +#. [src.collections.views.CollectionList.2497542455] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this collection} " "other{{displayQuantity} collections}}?" msgstr "" -#. [src.customers.views.409347866] +#. [src.customers.views.CustomerList.409347866] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this customer} #. other{{displayQuantity} customers}}? -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this customer} " @@ -919,11 +840,11 @@ msgid "" "other{{displayQuantity} menus}}?" msgstr "" -#. [src.orders.views.1389231130] - dialog content +#. [src.orders.views.OrderDraftList.1389231130] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this order draft} #. other{{displayQuantity} orderDrafts}}? -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this order draft} " @@ -941,11 +862,11 @@ msgid "" "other{{displayQuantity} pages}}?" msgstr "" -#. [src.productTypes.views.2294091098] - dialog content +#. [src.productTypes.views.ProductTypeList.2294091098] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this product type} #. other{{displayQuantity} product types}}? -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this product type} " @@ -963,11 +884,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.discounts.views.2516361175] - dialog content +#. [src.discounts.views.SaleList.2516361175] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this sale} #. other{{displayQuantity} sales}}? -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this sale} " @@ -996,17 +917,33 @@ msgid "" "other{{displayQuantity} variants}}?" msgstr "" -#. [src.discounts.views.1791926983] - dialog content +#. [src.discounts.views.VoucherList.1791926983] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this voucher} #. other{{displayQuantity} vouchers}}? -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this voucher} " "other{{displayQuantity} vouchers}}?" msgstr "" +#. [src.shipping.views.ShippingZoneDetails.131963671] - unassign country +#. defaultMessage is: +#. Are you sure you want to delete {countryName} from this shipping zone? +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country" +msgid "Are you sure you want to delete {countryName} from this shipping zone?" +msgstr "" + +#. [src.staff.views.8878988] +#. defaultMessage is: +#. Are you sure you want to delete {email} from staff members? +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "description" +msgid "Are you sure you want to delete {email} from staff members?" +msgstr "" + #. [src.customers.views.1927691511] - delete customer, dialog content #. defaultMessage is: #. Are you sure you want to delete {email}? @@ -1121,11 +1058,11 @@ msgctxt "description" msgid "Are you sure you want to mark this order as paid?" msgstr "" -#. [src.collections.views.1348793822] +#. [src.collections.views.CollectionList.1348793822] #. defaultMessage is: #. Are you sure you want to publish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to publish {counter,plural,one{this collection} " @@ -1154,30 +1091,6 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.orders.components.OrderDraftCancelDialog.3199827590] -#. defaultMessage is: -#. Are you sure you want to remove draft #{number}? -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "description" -msgid "Are you sure you want to remove draft #{number}?" -msgstr "" - -#. [src.products.views.672103788] -#. defaultMessage is: -#. Are you sure you want to remove this image? -#: build/locale/src/products/views/ProductImage.json -msgctxt "description" -msgid "Are you sure you want to remove this image?" -msgstr "" - -#. [src.shipping.views.ShippingZoneDetails.1790261672] - unassign country -#. defaultMessage is: -#. Are you sure you want to remove {countryName} from this shipping zone? -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country" -msgid "Are you sure you want to remove {countryName} from this shipping zone?" -msgstr "" - #. [src.staff.views.3945766678] #. defaultMessage is: #. Are you sure you want to remove {email} avatar? @@ -1186,14 +1099,6 @@ msgctxt "description" msgid "Are you sure you want to remove {email} avatar?" msgstr "" -#. [src.staff.views.2728048444] -#. defaultMessage is: -#. Are you sure you want to remove {email} from staff members? -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "description" -msgid "Are you sure you want to remove {email} from staff members?" -msgstr "" - #. [src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450] #. defaultMessage is: #. Are you sure you want to unassign {attributeName} from {productTypeName}? @@ -1274,11 +1179,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.3944356444] +#. [src.collections.views.CollectionList.3944356444] #. defaultMessage is: #. Are you sure you want to unpublish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to unpublish {counter,plural,one{this collection} " @@ -1439,6 +1344,15 @@ msgctxt "button" msgid "Assign products" msgstr "" +#. [src.attributes.components.AttributeValues.351422234] - assign attribute +#. value button +#. defaultMessage is: +#. Assign value +#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json +msgctxt "assign attribute value button" +msgid "Assign value" +msgstr "" + #. [src.attributes.components.AttributeDetails.3605174225] - attribute's slug #. short code label #. defaultMessage is: @@ -1517,6 +1431,14 @@ msgctxt "product attributes, section header" msgid "Attributes" msgstr "" +#. [src.configuration.2326418019] +#. defaultMessage is: +#. Attributes and Product Typess +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Attributes and Product Typess" +msgstr "" + #. [src.attributes.views.AttributeList.3218248395] - deleted multiple #. attributes #. defaultMessage is: @@ -2300,6 +2222,22 @@ msgctxt "description" msgid "Country area" msgstr "" +#. [menuCreateDialogHeader] - dialog header +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json +msgctxt "dialog header" +msgid "Create Menu" +msgstr "" + +#. [menuListPageAddMenu] - button +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json +msgctxt "button" +msgid "Create Menu" +msgstr "" + #. [src.attributes.components.AttributePage.2855501559] - page title #. defaultMessage is: #. Create New Attribute @@ -2324,6 +2262,30 @@ msgctxt "header" msgid "Create New Shipping Zone" msgstr "" +#. [src.pages.components.PageDetailsPage.1068617485] - page header +#. defaultMessage is: +#. Create Page +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page header" +msgid "Create Page" +msgstr "" + +#. [src.orders.components.OrderProductAddDialog.1542417144] - dialog header +#. defaultMessage is: +#. Create Product +#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json +msgctxt "dialog header" +msgid "Create Product" +msgstr "" + +#. [src.products.components.ProductListPage.1542417144] - button +#. defaultMessage is: +#. Create Product +#: build/locale/src/products/components/ProductListPage/ProductListPage.json +msgctxt "button" +msgid "Create Product" +msgstr "" + #. [src.products.views.1542417144] - window title #. defaultMessage is: #. Create Product @@ -2356,11 +2318,19 @@ msgctxt "page header" msgid "Create Sale" msgstr "" -#. [src.products.views.2362587265] - window title +#. [src.discounts.components.SaleListPage.3866518732] - button +#. defaultMessage is: +#. Create Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "button" +msgid "Create Sale" +msgstr "" + +#. [src.products.views.2362587265] - header #. defaultMessage is: #. Create Variant #: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "window title" +msgctxt "header" msgid "Create Variant" msgstr "" @@ -2372,6 +2342,22 @@ msgctxt "page header" msgid "Create Voucher" msgstr "" +#. [src.attributes.components.AttributeListPage.3824684885] - button +#. defaultMessage is: +#. Create attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "button" +msgid "Create attribute" +msgstr "" + +#. [src.categories.components.CategoryListPage.1140231710] - button +#. defaultMessage is: +#. Create category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "button" +msgid "Create category" +msgstr "" + #. [src.categories.views.1140231710] - window title #. defaultMessage is: #. Create category @@ -2380,6 +2366,14 @@ msgctxt "window title" msgid "Create category" msgstr "" +#. [src.collections.components.CollectionListPage.686910896] - button +#. defaultMessage is: +#. Create collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "button" +msgid "Create collection" +msgstr "" + #. [src.collections.views.686910896] - window title #. defaultMessage is: #. Create collection @@ -2396,6 +2390,14 @@ msgctxt "window title" msgid "Create customer" msgstr "" +#. [menuItemsAddItem] - add new menu item +#. defaultMessage is: +#. Create new item +#: build/locale/src/navigation/components/MenuItems/MenuItems.json +msgctxt "add new menu item" +msgid "Create new item" +msgstr "" + #. [src.orders.components.OrderDraftListPage.2826235371] - button #. defaultMessage is: #. Create order @@ -2408,6 +2410,14 @@ msgctxt "button" msgid "Create order" msgstr "" +#. [src.pages.components.PageListPage.3785394515] - button +#. defaultMessage is: +#. Create page +#: build/locale/src/pages/components/PageListPage/PageListPage.json +msgctxt "button" +msgid "Create page" +msgstr "" + #. [src.pages.views.3785394515] - header #. defaultMessage is: #. Create page @@ -2419,11 +2429,55 @@ msgstr "" #. [src.shipping.components.ShippingZoneRateDialog.16061680] - button #. defaultMessage is: #. Create rate +#. [src.shipping.components.ShippingZoneRates.16061680] - button +#. defaultMessage is: +#. Create rate #: build/locale/src/shipping/components/ShippingZoneRateDialog/ShippingZoneRateDialog.json +#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json msgctxt "button" msgid "Create rate" msgstr "" +#. [src.shipping.components.ShippingZonesList.2673544109] - button +#. defaultMessage is: +#. Create shipping zone +#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json +msgctxt "button" +msgid "Create shipping zone" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.770296100] - button +#. defaultMessage is: +#. Create subcategory +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json +msgctxt "button" +msgid "Create subcategory" +msgstr "" + +#. [src.products.components.ProductVariants.3989383405] - button +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/components/ProductVariants/ProductVariants.json +msgctxt "button" +msgid "Create variant" +msgstr "" + +#. [src.products.views.3989383405] - window title +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/views/ProductVariantCreate.json +msgctxt "window title" +msgid "Create variant" +msgstr "" + +#. [src.discounts.components.VoucherListPage.614836274] - button +#. defaultMessage is: +#. Create voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "button" +msgid "Create voucher" +msgstr "" + #. [src.collections.views.1597339737] #. defaultMessage is: #. Created collection @@ -2470,7 +2524,11 @@ msgstr "" #. [src.components.FilterBar.2340527467] #. defaultMessage is: #. Custom Filter +#. [src.components.SearchBar.2340527467] +#. defaultMessage is: +#. Custom Filter #: build/locale/src/components/FilterBar/FilterBar.json +#: build/locale/src/components/SearchBar/SearchBar.json msgctxt "description" msgid "Custom Filter" msgstr "" @@ -2726,10 +2784,18 @@ msgctxt "dialog title" msgid "Delete Collection" msgstr "" -#. [src.orders.views.1161115149] - dialog header +#. [src.products.views.1731766393] - dialog header +#. defaultMessage is: +#. Delete Image +#: build/locale/src/products/views/ProductImage.json +msgctxt "dialog header" +msgid "Delete Image" +msgstr "" + +#. [src.orders.views.OrderDraftList.1161115149] - dialog header #. defaultMessage is: #. Delete Order Drafts -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog header" msgid "Delete Order Drafts" msgstr "" @@ -2767,10 +2833,10 @@ msgctxt "dialog header" msgid "Delete Product Type" msgstr "" -#. [src.productTypes.views.4080551769] - dialog header +#. [src.productTypes.views.ProductTypeList.4080551769] - dialog header #. defaultMessage is: #. Delete Product Types -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog header" msgid "Delete Product Types" msgstr "" @@ -2799,10 +2865,10 @@ msgctxt "dialog header" msgid "Delete Sale" msgstr "" -#. [src.discounts.views.2809303671] - dialog header +#. [src.discounts.views.SaleList.2809303671] - dialog header #. defaultMessage is: #. Delete Sales -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog header" msgid "Delete Sales" msgstr "" @@ -2816,9 +2882,13 @@ msgctxt "custom search delete, dialog header" msgid "Delete Search" msgstr "" +#. [src.components.Filter.2173195312] - button +#. defaultMessage is: +#. Delete Search #. [src.components.TableFilter.2173195312] - button #. defaultMessage is: #. Delete Search +#: build/locale/src/components/Filter/FilterSearch.json #: build/locale/src/components/TableFilter/FilterChips.json msgctxt "button" msgid "Delete Search" @@ -2885,10 +2955,10 @@ msgctxt "dialog header" msgid "Delete Voucher" msgstr "" -#. [src.discounts.views.367317371] - dialog header +#. [src.discounts.views.VoucherList.367317371] - dialog header #. defaultMessage is: #. Delete Vouchers -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog header" msgid "Delete Vouchers" msgstr "" @@ -2922,11 +2992,11 @@ msgstr "" #. [src.categories.views.712767046] - dialog title #. defaultMessage is: #. Delete categories -#. [src.categories.views.712767046] - dialog title +#. [src.categories.views.CategoryList.712767046] - dialog title #. defaultMessage is: #. Delete categories #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "dialog title" msgid "Delete categories" msgstr "" @@ -2943,10 +3013,10 @@ msgctxt "dialog title" msgid "Delete category" msgstr "" -#. [src.collections.views.3817188998] - dialog title +#. [src.collections.views.CollectionList.3817188998] - dialog title #. defaultMessage is: #. Delete collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Delete collections" msgstr "" @@ -2959,14 +3029,31 @@ msgctxt "dialog header" msgid "Delete customer" msgstr "" -#. [src.customers.views.1946482599] - dialog header +#. [src.customers.views.CustomerList.1946482599] - dialog header #. defaultMessage is: #. Delete customers -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "dialog header" msgid "Delete customers" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.632633254] - dialog header +#. defaultMessage is: +#. Delete draft order +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "dialog header" +msgid "Delete draft order" +msgstr "" + +#. [src.shipping.views.ShippingZoneDetails.1947090060] - unassign country, +#. dialog header +#. defaultMessage is: +#. Delete from shipping zone +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country, dialog header" +msgid "Delete from shipping zone" +msgstr "" + #. [src.collections.views.942133001] - dialog title #. defaultMessage is: #. Delete image @@ -3027,6 +3114,14 @@ msgctxt "description" msgid "Deleted collection" msgstr "Kolekcija izbrisana" +#. [src.orders.views.OrderDraftList.1648805446] +#. defaultMessage is: +#. Deleted draft orders +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json +msgctxt "description" +msgid "Deleted draft orders" +msgstr "" + #. [menuListDeletedMenu] #. defaultMessage is: #. Deleted menu @@ -3626,14 +3721,6 @@ msgctxt "order history message" msgid "Fulfilled {quantity} items" msgstr "" -#. [src.orders.components.OrderListFilter.2943502192] - order -#. defaultMessage is: -#. Fulfillment Status -#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json -msgctxt "order" -msgid "Fulfillment Status" -msgstr "" - #. [src.orders.components.OrderHistory.3081292385] - order history message #. defaultMessage is: #. Fulfillment confirmation was sent to customer @@ -3790,12 +3877,12 @@ msgctxt "description" msgid "If empty, the preview shows what will be autogenerated." msgstr "" -#. [src.attributes.components.AttributeProperties.2519239682] +#. [src.attributes.components.AttributeProperties.4048785456] #. defaultMessage is: -#. If enable this attribute can be used as a column in product table. +#. If enabled this attribute can be used as a column in product table. #: build/locale/src/attributes/components/AttributeProperties/AttributeProperties.json msgctxt "description" -msgid "If enable this attribute can be used as a column in product table." +msgid "If enabled this attribute can be used as a column in product table." msgstr "" #. [src.attributes.components.AttributeProperties.787251583] @@ -3901,6 +3988,22 @@ msgctxt "product variant stock" msgid "Inventory" msgstr "" +#. [src.staff.components.StaffAddMemberDialog.1481503299] - dialog header +#. defaultMessage is: +#. Invite Staff Member +#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json +msgctxt "dialog header" +msgid "Invite Staff Member" +msgstr "" + +#. [src.staff.components.StaffListPage.797461521] - button +#. defaultMessage is: +#. Invite staff member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "button" +msgid "Invite staff member" +msgstr "" + #. [src.productTypes.components.ProductTypeShipping.2143413921] - switch #. button #. defaultMessage is: @@ -4253,6 +4356,14 @@ msgctxt "voucher requirement" msgid "Minimum quantity of items" msgstr "" +#. [src.configuration.1233229030] +#. defaultMessage is: +#. Miscellaneous +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Miscellaneous" +msgstr "" + #. [src.attributes.components.AttributeDetails.3334509011] - product attribute #. type #. defaultMessage is: @@ -5085,6 +5196,14 @@ msgctxt "description" msgid "Order History" msgstr "" +#. [src.orders.components.OrderListFilter.2222765704] +#. defaultMessage is: +#. Order Status +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +msgctxt "description" +msgid "Order Status" +msgstr "" + #. [src.orders.components.OrderHistory.1230178536] - order history message #. defaultMessage is: #. Order address was updated @@ -5101,13 +5220,13 @@ msgctxt "order history message" msgid "Order confirmation was sent to customer" msgstr "" -#. [src.orders.views.1872939752] +#. [src.orders.views.OrderDraftList.1872939752] #. defaultMessage is: #. Order draft succesfully created #. [src.orders.views.OrderList.1872939752] #. defaultMessage is: #. Order draft succesfully created -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json #: build/locale/src/orders/views/OrderList/OrderList.json msgctxt "description" msgid "Order draft succesfully created" @@ -5772,6 +5891,14 @@ msgctxt "description" msgid "Product Name" msgstr "" +#. [src.configuration.3655543906] +#. defaultMessage is: +#. Product Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Product Settings" +msgstr "" + #. [src.discounts.components.DiscountProducts.4257289053] #. defaultMessage is: #. Product Type @@ -5930,12 +6057,12 @@ msgctxt "order history message" msgid "Products were added to draft order" msgstr "" -#. [src.orders.components.OrderHistory.2574162126] - order history message +#. [src.orders.components.OrderHistory.4067959693] - order history message #. defaultMessage is: -#. Products were removed from draft order +#. Products were deleted from draft order #: build/locale/src/orders/components/OrderHistory/OrderHistory.json msgctxt "order history message" -msgid "Products were removed from draft order" +msgid "Products were deleted from draft order" msgstr "" #. [src.properties] @@ -5962,10 +6089,10 @@ msgctxt "description" msgid "Provided email address does not exist in our database." msgstr "" -#. [src.collections.views.1547167026] - publish collections +#. [src.collections.views.CollectionList.1547167026] - publish collections #. defaultMessage is: #. Publish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "publish collections" msgid "Publish" msgstr "" @@ -6002,10 +6129,10 @@ msgctxt "dialog header" msgid "Publish Products" msgstr "" -#. [src.collections.views.2823425739] - dialog title +#. [src.collections.views.CollectionList.2823425739] - dialog title #. defaultMessage is: #. Publish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Publish collections" msgstr "" @@ -6179,6 +6306,18 @@ msgctxt "shipping method price" msgid "Rate Price" msgstr "" +#. [src.orders.components.OrderListFilter.2415661583] - order status +#. defaultMessage is: +#. Ready to Capture +#. [src.orders.views.OrderList.readyToCapture] - order status +#. defaultMessage is: +#. Ready to Capture +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +#: build/locale/src/orders/views/OrderList/filters.json +msgctxt "order status" +msgid "Ready to Capture" +msgstr "" + #. [src.customers.components.CustomerOrders.3878642352] - section header #. defaultMessage is: #. Recent orders @@ -6227,22 +6366,14 @@ msgctxt "switch button" msgid "Release all stock allocated to this order" msgstr "" -#. [src.auth.components.LoginPage.3182284913] - login -#. defaultMessage is: -#. Remember me -#: build/locale/src/auth/components/LoginPage/LoginPage.json -msgctxt "login" -msgid "Remember me" -msgstr "" - #. [src.categories.views.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. -#. [src.categories.views.3488150607] +#. [src.categories.views.CategoryList.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "description" msgid "Remember this will also delete all products assigned to this category." msgstr "" @@ -6255,39 +6386,6 @@ msgctxt "button" msgid "Remove" msgstr "" -#. [src.products.views.490753666] - dialog header -#. defaultMessage is: -#. Remove Image -#: build/locale/src/products/views/ProductImage.json -msgctxt "dialog header" -msgid "Remove Image" -msgstr "" - -#. [src.orders.components.OrderDraftCancelDialog.500287069] - dialog header -#. defaultMessage is: -#. Remove draft order -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "dialog header" -msgid "Remove draft order" -msgstr "" - -#. [src.shipping.views.ShippingZoneDetails.254167659] - unassign country, -#. dialog header -#. defaultMessage is: -#. Remove from shipping zone -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country, dialog header" -msgid "Remove from shipping zone" -msgstr "" - -#. [src.orders.views.3880993240] -#. defaultMessage is: -#. Removed draft orders -#: build/locale/src/orders/views/OrderDraftList.json -msgctxt "description" -msgid "Removed draft orders" -msgstr "" - #. [src.pages.views.1457312643] #. defaultMessage is: #. Removed page @@ -6453,6 +6551,18 @@ msgctxt "button" msgid "Save" msgstr "" +#. [src.components.Filter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#. [src.components.TableFilter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#: build/locale/src/components/Filter/FilterSearch.json +#: build/locale/src/components/TableFilter/FilterChips.json +msgctxt "button" +msgid "Save Custom Search" +msgstr "" + #. [src.components.SaveFilterTabDialog.1514415736] - save filter tab, header #. defaultMessage is: #. Save Custom Search @@ -6461,14 +6571,6 @@ msgctxt "save filter tab, header" msgid "Save Custom Search" msgstr "" -#. [src.components.TableFilter.1514415736] - button -#. defaultMessage is: -#. Save Custom Search -#: build/locale/src/components/TableFilter/FilterChips.json -msgctxt "button" -msgid "Save Custom Search" -msgstr "" - #. [src.products.components.ProductVariantCreatePage.2853608829] - button #. defaultMessage is: #. Save variant @@ -6485,6 +6587,14 @@ msgctxt "description" msgid "Saved changes" msgstr "" +#. [src.attributes.components.AttributeListPage.3916653510] +#. defaultMessage is: +#. Search Attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "description" +msgid "Search Attribute" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.902296540] #. defaultMessage is: #. Search Attributes @@ -6501,10 +6611,30 @@ msgctxt "description" msgid "Search Categories" msgstr "" +#. [src.categories.components.CategoryListPage.3841025483] +#. defaultMessage is: +#. Search Category +#. [src.translations.components.TranslationsEntitiesListPage.3841025483] +#. defaultMessage is: +#. Search Category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Category" +msgstr "" + +#. [src.collections.components.CollectionListPage.4057224233] +#. defaultMessage is: +#. Search Collection #. [src.components.AssignCollectionDialog.4057224233] #. defaultMessage is: #. Search Collection +#. [src.translations.components.TranslationsEntitiesListPage.4057224233] +#. defaultMessage is: +#. Search Collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json #: build/locale/src/components/AssignCollectionDialog/AssignCollectionDialog.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json msgctxt "description" msgid "Search Collection" msgstr "" @@ -6517,6 +6647,14 @@ msgctxt "description" msgid "Search Countries" msgstr "" +#. [src.customers.components.CustomerListPage.1643417013] +#. defaultMessage is: +#. Search Customer +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "description" +msgid "Search Customer" +msgstr "" + #. [src.orders.components.OrderCustomer.2433460203] #. defaultMessage is: #. Search Customers @@ -6525,6 +6663,14 @@ msgctxt "description" msgid "Search Customers" msgstr "" +#. [src.orders.components.OrderDraftListPage.77765281] +#. defaultMessage is: +#. Search Draft +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "description" +msgid "Search Draft" +msgstr "" + #. [src.translations.components.TranslationsCategoriesPage.1406947243] #. defaultMessage is: #. Search Engine Description @@ -6605,6 +6751,34 @@ msgctxt "description" msgid "Search Orders..." msgstr "" +#. [src.translations.components.TranslationsEntitiesListPage.2559018090] +#. defaultMessage is: +#. Search Page +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Page" +msgstr "" + +#. [src.translations.components.TranslationsEntitiesListPage.2105464697] +#. defaultMessage is: +#. Search Product +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product" +msgstr "" + +#. [src.productTypes.components.ProductTypeListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#. [src.translations.components.TranslationsEntitiesListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product Type" +msgstr "" + #. [src.components.AssignProductDialog.2850255786] #. defaultMessage is: #. Search Products @@ -6617,14 +6791,46 @@ msgctxt "description" msgid "Search Products" msgstr "" -#. [src.products.components.ProductListPage.3550330425] +#. [src.products.components.ProductListFilter.3550330425] #. defaultMessage is: #. Search Products... -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Search Products..." msgstr "" +#. [src.discounts.components.SaleListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#. [src.translations.components.TranslationsEntitiesListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Sale" +msgstr "" + +#. [src.staff.components.StaffListPage.61043583] +#. defaultMessage is: +#. Search Staff Member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "description" +msgid "Search Staff Member" +msgstr "" + +#. [src.discounts.components.VoucherListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#. [src.translations.components.TranslationsEntitiesListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Voucher" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.524117994] #. defaultMessage is: #. Search by attribute name @@ -6731,10 +6937,10 @@ msgctxt "description" msgid "Select all orders where:" msgstr "" -#. [src.products.components.ProductListPage.1421689426] +#. [src.products.components.ProductListFilter.1421689426] #. defaultMessage is: #. Select all products where: -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Select all products where:" msgstr "" @@ -6820,6 +7026,14 @@ msgctxt "description" msgid "Set plugin as Active" msgstr "" +#. [src.components.VisibilityCard.292404896] +#. defaultMessage is: +#. Set publication date +#: build/locale/src/components/VisibilityCard/VisibilityCard.json +msgctxt "description" +msgid "Set publication date" +msgstr "" + #. [src.discounts.shipment] - voucher discount #. defaultMessage is: #. Shipment @@ -7085,6 +7299,14 @@ msgctxt "staff section name" msgid "Staff Members" msgstr "" +#. [src.configuration.3140151600] +#. defaultMessage is: +#. Staff Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Staff Settings" +msgstr "" + #. [src.standard] - tax rate #. defaultMessage is: #. Standard @@ -8069,10 +8291,10 @@ msgctxt "payment status" msgid "Unpaid" msgstr "" -#. [src.collections.views.2237014112] - unpublish collections +#. [src.collections.views.CollectionList.2237014112] - unpublish collections #. defaultMessage is: #. Unpublish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "unpublish collections" msgid "Unpublish" msgstr "" @@ -8109,10 +8331,10 @@ msgctxt "dialog header" msgid "Unpublish Products" msgstr "" -#. [src.collections.views.2637364047] - dialog title +#. [src.collections.views.CollectionList.2637364047] - dialog title #. defaultMessage is: #. Unpublish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Unpublish collections" msgstr "" @@ -8612,6 +8834,22 @@ msgctxt "description" msgid "ZIP / Postal code" msgstr "" +#. [src.productTypes.components.ProductTypeListPage.3479705616] - button +#. defaultMessage is: +#. create product type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "button" +msgid "create product type" +msgstr "" + +#. [src.staff.views.1308770978] - dialog header +#. defaultMessage is: +#. delete Staff User +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "dialog header" +msgid "delete Staff User" +msgstr "" + #. [orderPaymentVATDoesNotApply] - vat not included in order price #. defaultMessage is: #. does not apply @@ -8685,19 +8923,35 @@ msgctxt "product status is set as" msgid "is set as" msgstr "" -#. [src.staff.views.2240444792] - dialog header -#. defaultMessage is: -#. remove Staff User -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "dialog header" -msgid "remove Staff User" -msgstr "" - -#. [src.components.VisibilityCard.1815688500] +#. [src.collections.components.CollectionCreatePage.1815688500] - collection #. defaultMessage is: #. since {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.1815688500] - collection +#. defaultMessage is: +#. since {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "since {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.1815688500] - page +#. defaultMessage is: +#. since {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "since {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#. [src.products.components.ProductUpdatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "since {date}" msgstr "" @@ -8725,11 +8979,35 @@ msgctxt "weight" msgid "to {value} {unit}" msgstr "" -#. [src.components.VisibilityCard.2001551496] +#. [src.collections.components.CollectionCreatePage.2001551496] - collection #. defaultMessage is: #. will be visible from {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.2001551496] - collection +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "will be visible from {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.2001551496] - page +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "will be visible from {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#. [src.products.components.ProductUpdatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "will be visible from {date}" msgstr "" diff --git a/locale/sv.json b/locale/sv.json index df9d67a8c..a52321dbe 100644 --- a/locale/sv.json +++ b/locale/sv.json @@ -1 +1 @@ -{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.350498821":"Lägg till attribut","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.2519239682":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"Namn","src.categories.components.CategoryProducts.636461959":"Namn","src.collections.components.CollectionProducts.636461959":"Namn","src.products.components.ProductDetailsForm.636461959":"Namn","src.collections.components.CollectionDetails.636461959":"Namn","src.components.ProductList.636461959":"Namn","src.discounts.components.SaleInfo.636461959":"Namn","src.discounts.components.SaleList.636461959":"Namn","src.discounts.components.SaleSummary.636461959":"Namn","menuItemDialogNameLabel":"Namn","src.products.components.ProductVariants.636461959":"Namn","src.shipping.components.ShippingZoneRates.636461959":"Namn","src.shipping.components.ShippingZonesList.636461959":"Namn","src.staff.components.StaffList.636461959":"Namn","src.translations.components.TranslationsEntitiesList.636461959":"Namn","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.254756045":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.3182284913":"","src.auth.components.LoginPage.109182747":"Logga in","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"","src.categories.views.2004894945":"","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.3229914152":"","src.categories.components.CategoryList.435697837":"","src.categories.components.CategoryList.2159874182":"Underkategorier","src.categories.components.CategoryUpdatePage.2159874182":"Underkategorier","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.228151782":"Lägg till kategori","src.categories.components.CategoryProducts.2968663655":"Produkter","src.categories.components.CategoryUpdatePage.2968663655":"Produkter","src.discounts.components.DiscountCategories.2968663655":"Produkter","src.discounts.components.DiscountCollections.2968663655":"Produkter","src.products":"Produkter","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryProducts.3554578821":"Lägg till produkt","src.categories.components.CategoryProductsCard.3554578821":"Lägg till produkt","src.categories.components.CategoryProducts.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProducts.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.categories.components.CategoryProductsCard.4164156574":"","src.categories.views.1754466114":"","src.categories.views.1140231710":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.712767046":"","src.categories.views.299584400":"","src.categories.views.844574071":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.collections.components.CollectionCreatePage.3958681866":"Lägg till kollektion","src.collections.components.CollectionListPage.3958681866":"Lägg till kollektion","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"Tillgänglighet","src.availability":"","src.collections.components.CollectionList.3640454975":"Publicerad","src.collections.components.CollectionProducts.3640454975":"Publicerad","src.discounts.components.DiscountProducts.3640454975":"Publicerad","src.components.ProductList.3640454975":"Publicerad","src.products.components.ProductListPage.3640454975":"Publicerad","src.pages.components.PageList.3640454975":"Publicerad","src.products.views.ProductList.published":"Publicerad","src.collections.components.CollectionList.2341910657":"Opublicerad","src.collections.components.CollectionProducts.2341910657":"Opublicerad","src.discounts.components.DiscountProducts.2341910657":"Opublicerad","src.components.ProductList.2341910657":"Opublicerad","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.686910896":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"","src.collections.views.2402899582":"","src.collections.views.2237014112":"Avpublicera","src.pages.views.2237014112":"Avpublicera","src.products.views.ProductList.2237014112":"Avpublicera","src.collections.views.1547167026":"Publicera","src.pages.views.1547167026":"Publicera","src.products.views.ProductList.1547167026":"Publicera","src.collections.views.2823425739":"","src.collections.views.1348793822":"","src.collections.views.2637364047":"","src.collections.views.3944356444":"","src.collections.views.3817188998":"","src.collections.views.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"Logga ut","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.4057224233":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"","src.components.ErrorMessageCard.2845142593":"","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.FilterBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"Lägg till","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.ProductList.1134347598":"Pris","src.orders.components.OrderDraftDetailsProducts.1134347598":"Pris","src.orders.components.OrderFulfillment.1134347598":"Pris","src.products.components.ProductListPage.1134347598":"Pris","src.products.components.ProductPricing.1134347598":"Pris","src.orders.components.OrderUnfulfilledItems.1134347598":"Pris","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"Pris","src.shipping.components.ShippingZoneRates.1134347598":"Pris","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"Synlighet","src.pages.components.PageList.1459686496":"Synlighet","src.products.components.ProductListFilter.1459686496":"Synlighet","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"Dold","src.products.views.ProductList.hidden":"Dold","src.components.VisibilityCard.1815688500":"","src.components.VisibilityCard.2001551496":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","configurationMenuStaff":"","configurationMenuShipping":"","configurationMenuTaxes":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","src.customers.components.CustomerAddress.1320082647":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"Fakturaadress","src.customers.components.CustomerAddresses.3517722732":"Leveransadress","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"Adress","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"Noteringar","src.orders.components.OrderCustomerNote.1520756907":"Noteringar","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"Notering","src.customers.components.CustomerDetails.577013340":"Notering","src.customers.components.CustomerCreatePage.1934221653":"Lägg till kund","src.customers.components.CustomerListPage.1934221653":"Lägg till kund","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerOrders.3878642352":"Senaste ordrar","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"Datum","src.orders.components.OrderDraftList.4205493358":"Datum","src.orders.components.OrderList.4205493358":"Datum","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"Status","src.orders.components.OrderListFilter.1756106276":"Status","src.products.components.ProductListFilter.1756106276":"Status","src.products.components.ProductVariants.1756106276":"Status","src.customers.components.CustomerOrders.878013594":"Totalsumma","src.orders.components.OrderDraftDetailsProducts.878013594":"Totalsumma","src.orders.components.OrderDraftDetailsSummary.878013594":"Totalsumma","src.orders.components.OrderDraftList.878013594":"Totalsumma","src.orders.components.OrderFulfillment.878013594":"Totalsumma","src.orders.components.OrderUnfulfilledItems.878013594":"Totalsumma","src.orders.components.OrderList.878013594":"Totalsumma","src.orders.components.OrderPayment.878013594":"Totalsumma","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.1946482599":"","src.customers.views.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"Värde","src.discounts.components.SaleSummary.1148029984":"Värde","src.discounts.components.VoucherList.1148029984":"Värde","src.discounts.components.VoucherSummary.1148029984":"Värde","src.discounts.components.VoucherValue.1148029984":"Värde","src.products.components.ProductAttributes.1148029984":"Värde","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.1742771332":"","src.discounts.components.SalePricing.1099355007":"Prissättning","src.products.components.ProductPricing.1099355007":"Prissättning","src.products.components.ProductVariantPrice.1099355007":"Prissättning","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"Länder","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"Kod","src.discounts.components.VoucherSummary.78726751":"Kod","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.1536809153":"Lägg till rabattkupong","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"Specifika produkter","src.discounts.shipment":"Frakt","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.2809303671":"","src.discounts.views.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.367317371":"","src.discounts.views.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"Avbryt","src.orders.views.OrderList.3528672691":"Avbryt","src.confirm":"","src.delete":"","src.edit":"Ändra","src.manage":"","src.remove":"Ta bort","src.save":"Spara","src.show":"","src.undo":"","src.attributes":"Attribut","src.products.components.ProductAttributes.4153345096":"Attribut","src.categories":"Kategorier","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"Kollektioner","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"Inställningar","src.customers":"Kunder","src.draftOrders":"","src.home":"Hem","src.navigation":"Navigation","src.orders":"Ordrar","src.pages":"Sidor","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"Rabatter","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"Moms","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"Moms","src.taxes.components.CountryListPage.3955023266":"Moms","src.translations":"","src.vouchers":"Kuponger ","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"","src.partiallyPaid":"","src.partiallyRefunded":"","src.refunded":"Återbetalad","src.unpaid":"","src.cancelled":"","src.draft":"Utkast","src.fulfilled":"Fullbordad","src.orders.views.OrderList.fulfilled":"Fullbordad","src.orders.components.OrderListFilter.1712863026":"Fullbordad","src.partiallyFulfilled":"Delvis fullbordad","src.unfulfilled":"Ej fullbordad","src.orders.views.OrderList.unfulfilled":"Ej fullbordad","src.orders.components.OrderListFilter.1751787272":"Ej fullbordad","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","src.1395232177":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"Länk","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"Avbryt order","src.orders.components.OrderDetailsPage.1854613983":"Avbryt order","src.orders.components.OrderDraftPage.1854613983":"Avbryt order","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"Kund","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"Kund","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"Samma som leveransadress","src.orders.components.OrderCustomerEditDialog.1411666943":"Ändra kunddetaljer","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.500287069":"Ta bort orderförslag","src.orders.components.OrderDraftCancelDialog.3199827590":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"Produkt","src.orders.components.OrderUnfulfilledItems.1895667608":"Produkt","src.orders.components.OrderDraftDetailsProducts.2796503714":"Antal","src.orders.components.OrderFulfillment.2796503714":"Antal","src.orders.components.OrderFulfillmentDialog.2796503714":"Antal","src.orders.components.OrderUnfulfilledItems.2796503714":"Antal","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"Delsumma","src.orders.components.OrderPayment.781550514":"Delsumma","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"Skapa order","src.orders.components.OrderListPage.2826235371":"Skapa order","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"Lägg till spårning","src.orders.components.OrderFulfillmentCancelDialog.732594284":"Avbryt köp","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"Avbryt Slutfört","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"SKU","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"Spårningsnummer","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.2574162126":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"Order har betalats till fullo","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"Order skapades","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"Betalning","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2943502192":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"Leverans","src.productTypes.components.ProductTypeShipping.1325966144":"Leverans","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"Leverans","src.orders.components.OrderPayment.3768782744":"Summa för automatisk betalning","src.orders.components.OrderPayment.2320183694":"Låst nu summa","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"Lås","src.orders.components.OrderPayment.2845258362":"Återbetalning","src.orders.components.OrderPayment.2444197639":"Ogiltigt","src.orders.components.OrderPayment.3500506678":"Markera som betald","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"Summa","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.2775402904":"","src.products.components.ProductListPage.2775402904":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"Slutför","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.3880993240":"","src.orders.views.1161115149":"","src.orders.views.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.755314116":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"Titel","src.pages.components.PageList.1124600214":"Titel","src.pages.components.PageInfo.1116746286":"Innehåll","src.translations.components.TranslationsPagesPage.1116746286":"Innehåll","src.pages.components.PageList.3478065224":"Slug","src.pages.components.PageSlug.3478065224":"Slug","src.productTypes.components.ProductTypeAttributes.3478065224":"Slug","src.pages.components.PageList.3767550649":"Opublicerad","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.1767905232":"Lägg till sida","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.3785394515":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"Värden","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"Bilder","src.products.components.ProductVariantImages.3240888698":"Bilder","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"","src.products.components.ProductVariantStock.3841616483":"","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListPage.821159718":"","src.products.components.ProductListPage.1421689426":"","src.products.components.ProductListPage.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"Lagerförteckning","prodictStockInventoryLabel":"Lagerförteckning","src.products.components.ProductVariantStock.3490038570":"Lagerförteckning","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"","src.products.components.ProductVariants.2153006789":"","src.products.components.ProductVariantNavigation.2845381934":"Lägg till variant","src.products.components.ProductVariants.2845381934":"Lägg till variant","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1542417144":"","src.products.views.1591632382":"","src.products.views.490753666":"","src.products.views.672103788":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.1694086800":"","src.products.views.ProductList.224127438":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.products.views.2178905289":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1756957616":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.889729490":"Lägg till produkttyp","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.4080551769":"","src.productTypes.views.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.352297149":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2474410767":"Lägg till leveranszon","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.254167659":"","src.shipping.views.ShippingZoneDetails.1790261672":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"Nyckel","src.siteSettings.components.SiteSettingsKeys.2446088470":"Nyckel","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.3490059488":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"Rättigheter","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.3247064221":"Aktiv","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.802625341":"Lägg till anställd","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"Användaren är aktiv","src.staff.views.2240444792":"","src.staff.views.2728048444":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file +{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.3824684885":"","src.attributes.components.AttributeListPage.2417065806":"","src.attributes.components.AttributeListPage.3916653510":"","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.4048785456":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"Namn","src.categories.components.CategoryProductList.636461959":"Namn","src.components.ProductList.636461959":"Namn","src.products.components.ProductList.636461959":"Namn","src.collections.components.CollectionDetails.636461959":"Namn","src.collections.components.CollectionProducts.636461959":"Namn","src.products.components.ProductDetailsForm.636461959":"Namn","src.discounts.components.SaleInfo.636461959":"Namn","src.discounts.components.SaleList.636461959":"Namn","src.discounts.components.SaleSummary.636461959":"Namn","menuItemDialogNameLabel":"Namn","src.plugins.components.PluginsList.636461959":"Namn","src.products.components.ProductVariants.636461959":"Namn","src.shipping.components.ShippingZoneRates.636461959":"Namn","src.shipping.components.ShippingZonesList.636461959":"Namn","src.staff.components.StaffList.636461959":"Namn","src.translations.components.TranslationsEntitiesList.636461959":"Namn","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.351422234":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.109182747":"Logga in","src.auth.components.LoginPage.4028609483":"","src.auth.components.NewPasswordPage.1915811227":"","src.auth.components.NewPasswordPage.1254879564":"","src.auth.components.NewPasswordPage.2799926859":"","src.auth.components.NewPasswordPage.4253911811":"","src.auth.components.NewPasswordPage.2342634351":"","src.auth.components.ResetPasswordPage.2370700732":"","src.auth.components.ResetPasswordPage.3663311080":"","src.auth.components.ResetPasswordSuccessPage.4066297200":"","src.auth.components.ResetPasswordSuccessPage.2245157344":"","src.auth.views.2388238158":"","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"","src.categories.views.2004894945":"","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.2159874182":"Underkategorier","src.categories.components.CategoryUpdatePage.2159874182":"Underkategorier","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.1140231710":"","src.categories.views.1140231710":"","src.categories.components.CategoryListPage.4294878092":"","src.categories.components.CategoryListPage.3841025483":"","src.translations.components.TranslationsEntitiesListPage.3841025483":"","src.categories.components.CategoryProductList.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductList.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProductList.3640454975":"Publicerad","src.components.ProductList.3640454975":"Publicerad","src.products.components.ProductList.3640454975":"Publicerad","src.products.components.ProductListPage.3640454975":"Publicerad","productStatusLabel":"Publicerad","src.collections.components.CollectionList.3640454975":"Publicerad","src.collections.components.CollectionProducts.3640454975":"Publicerad","src.discounts.components.DiscountProducts.3640454975":"Publicerad","src.pages.components.PageList.3640454975":"Publicerad","src.products.views.ProductList.published":"Publicerad","src.categories.components.CategoryProductList.1134347598":"Pris","src.orders.components.OrderFulfillment.1134347598":"Pris","src.products.components.ProductList.1134347598":"Pris","src.products.components.ProductListPage.1134347598":"Pris","src.products.components.ProductPricing.1134347598":"Pris","src.components.ProductList.1134347598":"Pris","src.orders.components.OrderDraftDetailsProducts.1134347598":"Pris","src.orders.components.OrderUnfulfilledItems.1134347598":"Pris","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"Pris","src.shipping.components.ShippingZoneRates.1134347598":"Pris","src.categories.components.CategoryProductList.2341910657":"Opublicerad","src.products.components.ProductList.2341910657":"Opublicerad","src.collections.components.CollectionList.2341910657":"Opublicerad","src.collections.components.CollectionProducts.2341910657":"Opublicerad","src.discounts.components.DiscountProducts.2341910657":"Opublicerad","src.components.ProductList.2341910657":"Opublicerad","src.categories.components.CategoryProductList.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.products.components.ProductList.1657559629":"","src.categories.components.CategoryProducts.4164156574":"","src.categories.components.CategoryProducts.3554578821":"Lägg till produkt","src.categories.components.CategoryUpdatePage.2968663655":"Produkter","src.discounts.components.DiscountCategories.2968663655":"Produkter","src.discounts.components.DiscountCollections.2968663655":"Produkter","src.products":"Produkter","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryUpdatePage.3229914152":"","src.categories.components.CategoryUpdatePage.770296100":"","src.categories.views.1754466114":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.CategoryList.3488150607":"","src.categories.views.712767046":"","src.categories.views.CategoryList.712767046":"","src.categories.views.299584400":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.categories.views.CategoryList.2144707585":"","src.collections.components.CollectionCreatePage.3958681866":"Lägg till kollektion","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionCreatePage.2001551496":"","src.collections.components.CollectionDetailsPage.2001551496":"","src.pages.components.PageDetailsPage.2001551496":"","src.products.components.ProductCreatePage.2001551496":"","src.products.components.ProductUpdatePage.2001551496":"","src.collections.components.CollectionCreatePage.1815688500":"","src.collections.components.CollectionDetailsPage.1815688500":"","src.pages.components.PageDetailsPage.1815688500":"","src.products.components.ProductCreatePage.1815688500":"","src.products.components.ProductUpdatePage.1815688500":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"Tillgänglighet","src.availability":"","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionListPage.686910896":"","src.collections.views.686910896":"","src.collections.components.CollectionListPage.1631917001":"","src.collections.components.CollectionListPage.4057224233":"","src.components.AssignCollectionDialog.4057224233":"","src.translations.components.TranslationsEntitiesListPage.4057224233":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"","src.collections.views.2402899582":"","src.collections.views.CollectionList.2237014112":"Avpublicera","src.pages.views.2237014112":"Avpublicera","src.products.views.ProductList.2237014112":"Avpublicera","src.collections.views.CollectionList.1547167026":"Publicera","src.pages.views.1547167026":"Publicera","src.products.views.ProductList.1547167026":"Publicera","src.collections.views.CollectionList.2823425739":"","src.collections.views.CollectionList.1348793822":"","src.collections.views.CollectionList.2637364047":"","src.collections.views.CollectionList.3944356444":"","src.collections.views.CollectionList.3817188998":"","src.collections.views.CollectionList.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"Logga ut","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"","src.components.ErrorMessageCard.2845142593":"","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.Filter.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.Filter.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.FilterBar.2340527467":"","src.components.SearchBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"Lägg till","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"Synlighet","src.pages.components.PageList.1459686496":"Synlighet","src.products.components.ProductListFilter.1459686496":"Synlighet","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"Dold","src.products.views.ProductList.hidden":"Dold","src.components.VisibilityCard.292404896":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","src.configuration.2326418019":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","src.configuration.3655543906":"","configurationMenuShipping":"","configurationMenuTaxes":"","src.configuration.3140151600":"","configurationMenuStaff":"","src.configuration.1233229030":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","configurationPluginsPages":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"Fakturaadress","src.customers.components.CustomerAddresses.3517722732":"Leveransadress","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"Adress","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"Noteringar","src.orders.components.OrderCustomerNote.1520756907":"Noteringar","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"Notering","src.customers.components.CustomerDetails.577013340":"Notering","src.customers.components.CustomerCreatePage.1934221653":"Lägg till kund","src.customers.components.CustomerListPage.1934221653":"Lägg till kund","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerListPage.477293306":"","src.customers.components.CustomerListPage.1643417013":"","src.customers.components.CustomerOrders.3878642352":"Senaste ordrar","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"Datum","src.orders.components.OrderDraftList.4205493358":"Datum","src.orders.components.OrderList.4205493358":"Datum","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"Status","src.orders.components.OrderListFilter.1756106276":"Status","src.plugins.components.PluginInfo.1756106276":"Status","src.products.components.ProductListFilter.1756106276":"Status","src.products.components.ProductVariants.1756106276":"Status","src.customers.components.CustomerOrders.878013594":"Totalsumma","src.orders.components.OrderDraftDetailsProducts.878013594":"Totalsumma","src.orders.components.OrderDraftDetailsSummary.878013594":"Totalsumma","src.orders.components.OrderDraftList.878013594":"Totalsumma","src.orders.components.OrderFulfillment.878013594":"Totalsumma","src.orders.components.OrderUnfulfilledItems.878013594":"Totalsumma","src.orders.components.OrderList.878013594":"Totalsumma","src.orders.components.OrderPayment.878013594":"Totalsumma","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.CustomerList.1946482599":"","src.customers.views.CustomerList.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","src.discounts.components.SaleListPage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"Värde","src.discounts.components.SaleSummary.1148029984":"Värde","src.discounts.components.VoucherList.1148029984":"Värde","src.discounts.components.VoucherSummary.1148029984":"Värde","src.discounts.components.VoucherValue.1148029984":"Värde","src.products.components.ProductAttributes.1148029984":"Värde","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.3907768880":"","src.discounts.components.SaleListPage.1866913828":"","src.translations.components.TranslationsEntitiesListPage.1866913828":"","src.discounts.components.SalePricing.1099355007":"Prissättning","src.products.components.ProductPricing.1099355007":"Prissättning","src.products.components.ProductVariantPrice.1099355007":"Prissättning","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"Länder","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"Kod","src.discounts.components.VoucherSummary.78726751":"Kod","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.614836274":"","src.discounts.components.VoucherListPage.1112241061":"","src.discounts.components.VoucherListPage.1930485532":"","src.translations.components.TranslationsEntitiesListPage.1930485532":"","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"Specifika produkter","src.discounts.shipment":"Frakt","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.SaleList.2809303671":"","src.discounts.views.SaleList.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.VoucherList.367317371":"","src.discounts.views.VoucherList.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.somethingWentWrong":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"Avbryt","src.orders.views.OrderList.3528672691":"Avbryt","src.confirm":"","src.delete":"","src.edit":"Ändra","src.manage":"","src.remove":"Ta bort","src.save":"Spara","src.show":"","src.undo":"","src.attributes":"Attribut","src.products.components.ProductAttributes.4153345096":"Attribut","src.categories":"Kategorier","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"Kollektioner","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"Inställningar","src.customers":"Kunder","src.draftOrders":"","src.home":"Hem","src.navigation":"Navigation","src.orders":"Ordrar","src.pages":"Sidor","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.plugins":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"Rabatter","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"Moms","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"Moms","src.taxes.components.CountryListPage.3955023266":"Moms","src.translations":"","src.vouchers":"Kuponger ","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"","src.partiallyPaid":"","src.partiallyRefunded":"","src.refunded":"Återbetalad","src.unpaid":"","src.cancelled":"","src.draft":"Utkast","src.fulfilled":"Fullbordad","src.orders.views.OrderList.fulfilled":"Fullbordad","src.orders.components.OrderListFilter.1712863026":"Fullbordad","src.partiallyFulfilled":"Delvis fullbordad","src.unfulfilled":"Ej fullbordad","src.orders.views.OrderList.unfulfilled":"Ej fullbordad","src.orders.components.OrderListFilter.1751787272":"Ej fullbordad","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"Länk","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"Avbryt order","src.orders.components.OrderDetailsPage.1854613983":"Avbryt order","src.orders.components.OrderDraftPage.1854613983":"Avbryt order","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"Kund","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"Kund","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"Samma som leveransadress","src.orders.components.OrderCustomerEditDialog.1411666943":"Ändra kunddetaljer","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.632633254":"","src.orders.components.OrderDraftCancelDialog.36681973":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"Produkt","src.orders.components.OrderUnfulfilledItems.1895667608":"Produkt","src.orders.components.OrderDraftDetailsProducts.2796503714":"Antal","src.orders.components.OrderFulfillment.2796503714":"Antal","src.orders.components.OrderFulfillmentDialog.2796503714":"Antal","src.orders.components.OrderUnfulfilledItems.2796503714":"Antal","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"Delsumma","src.orders.components.OrderPayment.781550514":"Delsumma","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"Skapa order","src.orders.components.OrderListPage.2826235371":"Skapa order","src.orders.components.OrderDraftListPage.551325728":"","src.orders.components.OrderDraftListPage.77765281":"","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"Lägg till spårning","src.orders.components.OrderFulfillmentCancelDialog.732594284":"Avbryt köp","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"Avbryt Slutfört","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"SKU","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"Spårningsnummer","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.4067959693":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"Order har betalats till fullo","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"Order skapades","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"Betalning","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2415661583":"","src.orders.views.OrderList.readyToCapture":"","src.orders.components.OrderListFilter.2222765704":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"Leverans","src.productTypes.components.ProductTypeShipping.1325966144":"Leverans","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"Leverans","src.orders.components.OrderPayment.3768782744":"Summa för automatisk betalning","src.orders.components.OrderPayment.2320183694":"Låst nu summa","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"Lås","src.orders.components.OrderPayment.2845258362":"Återbetalning","src.orders.components.OrderPayment.2444197639":"Ogiltigt","src.orders.components.OrderPayment.3500506678":"Markera som betald","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"Summa","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.1542417144":"","src.products.components.ProductListPage.1542417144":"","src.products.views.1542417144":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"Slutför","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.OrderDraftList.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.OrderDraftList.1648805446":"","src.orders.views.OrderDraftList.1161115149":"","src.orders.views.OrderDraftList.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.1068617485":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"Titel","src.pages.components.PageList.1124600214":"Titel","src.pages.components.PageInfo.1116746286":"Innehåll","src.translations.components.TranslationsPagesPage.1116746286":"Innehåll","src.pages.components.PageList.3478065224":"Slug","src.pages.components.PageSlug.3478065224":"Slug","src.productTypes.components.ProductTypeAttributes.3478065224":"Slug","src.pages.components.PageList.3767550649":"Opublicerad","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.3785394515":"","src.pages.views.3785394515":"","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.plugins.components.PluginInfo.3425535100":"","src.plugins.components.PluginsDetailsPage.3425535100":"","src.plugins.components.PluginInfo.1049131348":"","src.plugins.components.PluginInfo.4013064767":"","src.plugins.components.PluginsDetailsPage.3352026836":"","src.plugins.components.PluginsDetailsPage.2277745418":"","src.plugins.components.PluginsDetailsPage.1970881031":"","src.plugins.components.PluginSettings.1970881031":"","src.plugins.components.PluginsDetailsPage.4241018152":"","src.plugins.components.PluginsList.3247064221":"Aktiv","src.staff.components.StaffList.3247064221":"Aktiv","src.plugins.components.PluginsList.4120604650":"","src.plugins.components.PluginsList.666641390":"","src.plugins.views.100549097":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"Värden","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"Bilder","src.products.components.ProductVariantImages.3240888698":"Bilder","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"","src.products.components.ProductVariantStock.3841616483":"","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListFilter.821159718":"","src.products.components.ProductListFilter.1421689426":"","src.products.components.ProductListFilter.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"Lagerförteckning","prodictStockInventoryLabel":"Lagerförteckning","src.products.components.ProductVariantStock.3490038570":"Lagerförteckning","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"","src.products.components.ProductVariants.2153006789":"","src.products.components.ProductVariantNavigation.2845381934":"Lägg till variant","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.3989383405":"","src.products.views.3989383405":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1591632382":"","src.products.views.1731766393":"","src.products.views.2880386427":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1217376589":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.3479705616":"","src.productTypes.components.ProductTypeListPage.1776073799":"","src.productTypes.components.ProductTypeListPage.3420445375":"","src.translations.components.TranslationsEntitiesListPage.3420445375":"","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.ProductTypeList.4080551769":"","src.productTypes.views.ProductTypeList.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRates.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2673544109":"","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.1947090060":"","src.shipping.views.ShippingZoneDetails.131963671":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"Nyckel","src.siteSettings.components.SiteSettingsKeys.2446088470":"Nyckel","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.1481503299":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"Rättigheter","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.797461521":"","src.staff.components.StaffListPage.2852350932":"","src.staff.components.StaffListPage.61043583":"","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"Användaren är aktiv","src.staff.views.1308770978":"","src.staff.views.8878988":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.2105464697":"","src.translations.components.TranslationsEntitiesListPage.2559018090":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file diff --git a/locale/sv.po b/locale/sv.po index ac4f72dad..a0e8107c2 100644 --- a/locale/sv.po +++ b/locale/sv.po @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"POT-Creation-Date: 2019-09-06T13:56:36.897Z\n" +"POT-Creation-Date: 2019-09-16T15:25:09.340Z\n" "Last-Translator: André Karlsson , 2019\n" "Language-Team: Swedish (https://www.transifex.com/mirumee/teams/34782/sv/)\n" "MIME-Version: 1.0\n" @@ -142,22 +142,6 @@ msgctxt "create new menu item, header" msgid "Add Item" msgstr "" -#. [menuCreateDialogHeader] - dialog header -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json -msgctxt "dialog header" -msgid "Add Menu" -msgstr "" - -#. [menuListPageAddMenu] - button -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json -msgctxt "button" -msgid "Add Menu" -msgstr "" - #. [src.siteSettings.components.SiteSettingsKeyDialog.1238948746] - dialog #. header #. defaultMessage is: @@ -167,14 +151,6 @@ msgctxt "dialog header" msgid "Add New Authorization Key" msgstr "" -#. [src.pages.components.PageDetailsPage.755314116] - page header -#. defaultMessage is: -#. Add Page -#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json -msgctxt "page header" -msgid "Add Page" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.2892088870] - dialog header #. defaultMessage is: #. Add Price Rate @@ -183,38 +159,6 @@ msgctxt "dialog header" msgid "Add Price Rate" msgstr "" -#. [src.orders.components.OrderProductAddDialog.2775402904] - dialog header -#. defaultMessage is: -#. Add Product -#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json -msgctxt "dialog header" -msgid "Add Product" -msgstr "" - -#. [src.products.components.ProductListPage.2775402904] - button -#. defaultMessage is: -#. Add Product -#: build/locale/src/products/components/ProductListPage/ProductListPage.json -msgctxt "button" -msgid "Add Product" -msgstr "" - -#. [src.discounts.components.SaleListPage.1742771332] - button -#. defaultMessage is: -#. Add Sale -#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json -msgctxt "button" -msgid "Add Sale" -msgstr "" - -#. [src.staff.components.StaffAddMemberDialog.3490059488] - dialog header -#. defaultMessage is: -#. Add Staff Member -#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json -msgctxt "dialog header" -msgid "Add Staff Member" -msgstr "" - #. [src.attributes.components.AttributeValueEditDialog.1841790893] - add #. attribute value #. defaultMessage is: @@ -224,14 +168,6 @@ msgctxt "add attribute value" msgid "Add Value" msgstr "" -#. [src.products.views.2178905289] - header -#. defaultMessage is: -#. Add Variant -#: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "header" -msgid "Add Variant" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.1397795758] - add weight #. based shipping method, dialog header #. defaultMessage is: @@ -249,14 +185,6 @@ msgctxt "button" msgid "Add address" msgstr "" -#. [src.attributes.components.AttributeListPage.350498821] - button -#. defaultMessage is: -#. Add attribute -#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json -msgctxt "button" -msgid "Add attribute" -msgstr "Lägg till attribut" - #. [src.siteSettings.components.SiteSettingsKeyDialog.50561933] - button #. defaultMessage is: #. Add authentication @@ -265,14 +193,6 @@ msgctxt "button" msgid "Add authentication" msgstr "" -#. [src.categories.components.CategoryListPage.228151782] - button -#. defaultMessage is: -#. Add category -#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json -msgctxt "button" -msgid "Add category" -msgstr "Lägg till kategori" - #. [src.collections.components.CollectionCreatePage.3958681866] - page header #. defaultMessage is: #. Add collection @@ -281,14 +201,6 @@ msgctxt "page header" msgid "Add collection" msgstr "Lägg till kollektion" -#. [src.collections.components.CollectionListPage.3958681866] - button -#. defaultMessage is: -#. Add collection -#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json -msgctxt "button" -msgid "Add collection" -msgstr "Lägg till kollektion" - #. [src.customers.components.CustomerCreatePage.1934221653] - page header #. defaultMessage is: #. Add customer @@ -321,14 +233,6 @@ msgctxt "button" msgid "Add key" msgstr "" -#. [menuItemsAddItem] - add new menu item -#. defaultMessage is: -#. Add new item -#: build/locale/src/navigation/components/MenuItems/MenuItems.json -msgctxt "add new menu item" -msgid "Add new item" -msgstr "" - #. [menuItemsPlaceholder] #. defaultMessage is: #. Add new menu item to begin creating menu @@ -363,14 +267,6 @@ msgctxt "button" msgid "Add or Edit Link" msgstr "" -#. [src.pages.components.PageListPage.1767905232] - button -#. defaultMessage is: -#. Add page -#: build/locale/src/pages/components/PageListPage/PageListPage.json -msgctxt "button" -msgid "Add page" -msgstr "Lägg till sida" - #. [src.categories.components.CategoryProducts.3554578821] - button #. defaultMessage is: #. Add product @@ -379,14 +275,6 @@ msgctxt "button" msgid "Add product" msgstr "Lägg till produkt" -#. [src.productTypes.components.ProductTypeListPage.889729490] - button -#. defaultMessage is: -#. Add product type -#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json -msgctxt "button" -msgid "Add product type" -msgstr "Lägg till produkttyp" - #. [src.orders.components.OrderDraftDetails.2528459381] - button #. defaultMessage is: #. Add products @@ -395,14 +283,6 @@ msgctxt "button" msgid "Add products" msgstr "" -#. [src.shipping.components.ShippingZoneRates.352297149] - button -#. defaultMessage is: -#. Add rate -#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json -msgctxt "button" -msgid "Add rate" -msgstr "" - #. [src.categories.components.CategoryCreatePage.2563994280] #. defaultMessage is: #. Add search engine title and description to make this category easier to @@ -464,30 +344,6 @@ msgctxt "button" msgid "Add shipping carrier" msgstr "" -#. [src.shipping.components.ShippingZonesList.2474410767] - button -#. defaultMessage is: -#. Add shipping zone -#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json -msgctxt "button" -msgid "Add shipping zone" -msgstr "Lägg till leveranszon" - -#. [src.staff.components.StaffListPage.802625341] - button -#. defaultMessage is: -#. Add staff member -#: build/locale/src/staff/components/StaffListPage/StaffListPage.json -msgctxt "button" -msgid "Add staff member" -msgstr "Lägg till anställd" - -#. [src.categories.components.CategoryList.435697837] - button -#. defaultMessage is: -#. Add subcategory -#: build/locale/src/categories/components/CategoryList/CategoryList.json -msgctxt "button" -msgid "Add subcategory" -msgstr "" - #. [src.attributes.components.AttributeProperties.673770329] - add attribute #. as column in product list table #. defaultMessage is: @@ -515,35 +371,14 @@ msgctxt "dialog header" msgid "Add tracking code" msgstr "" -#. [src.attributes.components.AttributeValues.254756045] - add attribute value -#. button -#. defaultMessage is: -#. Add value -#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json -msgctxt "add attribute value button" -msgid "Add value" -msgstr "" - #. [src.products.components.ProductVariantNavigation.2845381934] - button #. defaultMessage is: #. Add variant -#. [src.products.components.ProductVariants.2845381934] - button -#. defaultMessage is: -#. Add variant #: build/locale/src/products/components/ProductVariantNavigation/ProductVariantNavigation.json -#: build/locale/src/products/components/ProductVariants/ProductVariants.json msgctxt "button" msgid "Add variant" msgstr "Lägg till variant" -#. [src.discounts.components.VoucherListPage.1536809153] - button -#. defaultMessage is: -#. Add voucher -#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json -msgctxt "button" -msgid "Add voucher" -msgstr "Lägg till rabattkupong" - #. [src.attributes.views.AttributeDetails.634268988] - added new attribute #. value #. defaultMessage is: @@ -601,14 +436,6 @@ msgctxt "description" msgid "Address line 2" msgstr "" -#. [src.customers.components.CustomerAddress.1320082647] - addres card header -#. defaultMessage is: -#. Address {addressNumber} -#: build/locale/src/customers/components/CustomerAddress/CustomerAddress.json -msgctxt "addres card header" -msgid "Address {addressNumber}" -msgstr "" - #. [src.attributes.components.AttributeValues.1565474525] - attribute values #. list: slug column header #. defaultMessage is: @@ -658,6 +485,46 @@ msgctxt "tax rate" msgid "Agricultural supplies" msgstr "" +#. [src.attributes.components.AttributeListPage.2417065806] - tab name +#. defaultMessage is: +#. All Attributes +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "tab name" +msgid "All Attributes" +msgstr "" + +#. [src.categories.components.CategoryListPage.4294878092] - tab name +#. defaultMessage is: +#. All Categories +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "tab name" +msgid "All Categories" +msgstr "" + +#. [src.collections.components.CollectionListPage.1631917001] - tab name +#. defaultMessage is: +#. All Collections +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "tab name" +msgid "All Collections" +msgstr "" + +#. [src.customers.components.CustomerListPage.477293306] - tab name +#. defaultMessage is: +#. All Customers +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "tab name" +msgid "All Customers" +msgstr "" + +#. [src.orders.components.OrderDraftListPage.551325728] - tab name +#. defaultMessage is: +#. All Drafts +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "tab name" +msgid "All Drafts" +msgstr "" + #. [src.orders.components.OrderListPage.875489544] - tab name #. defaultMessage is: #. All Orders @@ -675,22 +542,54 @@ msgctxt "section header" msgid "All Photos" msgstr "" -#. [src.products.components.ProductListPage.821159718] - tab name +#. [src.productTypes.components.ProductTypeListPage.1776073799] - tab name +#. defaultMessage is: +#. All Product Types +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "tab name" +msgid "All Product Types" +msgstr "" + +#. [src.products.components.ProductListFilter.821159718] - tab name #. defaultMessage is: #. All Products -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "tab name" msgid "All Products" msgstr "" -#. [src.categories.components.CategoryList.3229914152] - section header +#. [src.discounts.components.SaleListPage.3907768880] - tab name +#. defaultMessage is: +#. All Sales +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "tab name" +msgid "All Sales" +msgstr "" + +#. [src.staff.components.StaffListPage.2852350932] - tab name +#. defaultMessage is: +#. All Staff Members +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "tab name" +msgid "All Staff Members" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.3229914152] - section header #. defaultMessage is: #. All Subcategories -#: build/locale/src/categories/components/CategoryList/CategoryList.json +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json msgctxt "section header" msgid "All Subcategories" msgstr "" +#. [src.discounts.components.VoucherListPage.1112241061] - tab name +#. defaultMessage is: +#. All Vouchers +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "tab name" +msgid "All Vouchers" +msgstr "" + #. [src.taxes.components.TaxConfiguration.142803418] #. defaultMessage is: #. All products prices are entered with tax included @@ -798,6 +697,14 @@ msgctxt "description" msgid "Are you sure you want to delete collection's image?" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.36681973] +#. defaultMessage is: +#. Are you sure you want to delete draft #{number}? +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "description" +msgid "Are you sure you want to delete draft #{number}?" +msgstr "" + #. [menuDetailsDeleteMenuContent] #. defaultMessage is: #. Are you sure you want to delete menu {menuName}? @@ -814,6 +721,14 @@ msgctxt "description" msgid "Are you sure you want to delete this address from users address book?" msgstr "" +#. [src.products.views.2880386427] +#. defaultMessage is: +#. Are you sure you want to delete this image? +#: build/locale/src/products/views/ProductImage.json +msgctxt "description" +msgid "Are you sure you want to delete this image?" +msgstr "" + #. [src.attributes.components.AttributeDeleteDialog.3738429348] - dialog #. content #. defaultMessage is: @@ -864,12 +779,7 @@ msgstr "" #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this attribute} #. other{{displayQuantity} categories}}? -#. [src.categories.views.844574071] -#. defaultMessage is: -#. Are you sure you want to delete {counter,plural,one{this attribute} -#. other{{displayQuantity} categories}}? #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this attribute} " @@ -887,22 +797,33 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.2497542455] +#. [src.categories.views.CategoryList.2144707585] +#. defaultMessage is: +#. Are you sure you want to delete {counter,plural,one{this category} +#. other{{displayQuantity} categories}}? +#: build/locale/src/categories/views/CategoryList/CategoryList.json +msgctxt "description" +msgid "" +"Are you sure you want to delete {counter,plural,one{this category} " +"other{{displayQuantity} categories}}?" +msgstr "" + +#. [src.collections.views.CollectionList.2497542455] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this collection} " "other{{displayQuantity} collections}}?" msgstr "" -#. [src.customers.views.409347866] +#. [src.customers.views.CustomerList.409347866] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this customer} #. other{{displayQuantity} customers}}? -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this customer} " @@ -920,11 +841,11 @@ msgid "" "other{{displayQuantity} menus}}?" msgstr "" -#. [src.orders.views.1389231130] - dialog content +#. [src.orders.views.OrderDraftList.1389231130] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this order draft} #. other{{displayQuantity} orderDrafts}}? -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this order draft} " @@ -942,11 +863,11 @@ msgid "" "other{{displayQuantity} pages}}?" msgstr "" -#. [src.productTypes.views.2294091098] - dialog content +#. [src.productTypes.views.ProductTypeList.2294091098] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this product type} #. other{{displayQuantity} product types}}? -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this product type} " @@ -964,11 +885,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.discounts.views.2516361175] - dialog content +#. [src.discounts.views.SaleList.2516361175] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this sale} #. other{{displayQuantity} sales}}? -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this sale} " @@ -997,17 +918,33 @@ msgid "" "other{{displayQuantity} variants}}?" msgstr "" -#. [src.discounts.views.1791926983] - dialog content +#. [src.discounts.views.VoucherList.1791926983] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this voucher} #. other{{displayQuantity} vouchers}}? -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this voucher} " "other{{displayQuantity} vouchers}}?" msgstr "" +#. [src.shipping.views.ShippingZoneDetails.131963671] - unassign country +#. defaultMessage is: +#. Are you sure you want to delete {countryName} from this shipping zone? +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country" +msgid "Are you sure you want to delete {countryName} from this shipping zone?" +msgstr "" + +#. [src.staff.views.8878988] +#. defaultMessage is: +#. Are you sure you want to delete {email} from staff members? +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "description" +msgid "Are you sure you want to delete {email} from staff members?" +msgstr "" + #. [src.customers.views.1927691511] - delete customer, dialog content #. defaultMessage is: #. Are you sure you want to delete {email}? @@ -1122,11 +1059,11 @@ msgctxt "description" msgid "Are you sure you want to mark this order as paid?" msgstr "" -#. [src.collections.views.1348793822] +#. [src.collections.views.CollectionList.1348793822] #. defaultMessage is: #. Are you sure you want to publish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to publish {counter,plural,one{this collection} " @@ -1155,30 +1092,6 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.orders.components.OrderDraftCancelDialog.3199827590] -#. defaultMessage is: -#. Are you sure you want to remove draft #{number}? -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "description" -msgid "Are you sure you want to remove draft #{number}?" -msgstr "" - -#. [src.products.views.672103788] -#. defaultMessage is: -#. Are you sure you want to remove this image? -#: build/locale/src/products/views/ProductImage.json -msgctxt "description" -msgid "Are you sure you want to remove this image?" -msgstr "" - -#. [src.shipping.views.ShippingZoneDetails.1790261672] - unassign country -#. defaultMessage is: -#. Are you sure you want to remove {countryName} from this shipping zone? -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country" -msgid "Are you sure you want to remove {countryName} from this shipping zone?" -msgstr "" - #. [src.staff.views.3945766678] #. defaultMessage is: #. Are you sure you want to remove {email} avatar? @@ -1187,14 +1100,6 @@ msgctxt "description" msgid "Are you sure you want to remove {email} avatar?" msgstr "" -#. [src.staff.views.2728048444] -#. defaultMessage is: -#. Are you sure you want to remove {email} from staff members? -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "description" -msgid "Are you sure you want to remove {email} from staff members?" -msgstr "" - #. [src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450] #. defaultMessage is: #. Are you sure you want to unassign {attributeName} from {productTypeName}? @@ -1275,11 +1180,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.3944356444] +#. [src.collections.views.CollectionList.3944356444] #. defaultMessage is: #. Are you sure you want to unpublish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to unpublish {counter,plural,one{this collection} " @@ -1440,6 +1345,15 @@ msgctxt "button" msgid "Assign products" msgstr "" +#. [src.attributes.components.AttributeValues.351422234] - assign attribute +#. value button +#. defaultMessage is: +#. Assign value +#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json +msgctxt "assign attribute value button" +msgid "Assign value" +msgstr "" + #. [src.attributes.components.AttributeDetails.3605174225] - attribute's slug #. short code label #. defaultMessage is: @@ -1518,6 +1432,14 @@ msgctxt "product attributes, section header" msgid "Attributes" msgstr "Attribut" +#. [src.configuration.2326418019] +#. defaultMessage is: +#. Attributes and Product Typess +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Attributes and Product Typess" +msgstr "" + #. [src.attributes.views.AttributeList.3218248395] - deleted multiple #. attributes #. defaultMessage is: @@ -2301,6 +2223,22 @@ msgctxt "description" msgid "Country area" msgstr "" +#. [menuCreateDialogHeader] - dialog header +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json +msgctxt "dialog header" +msgid "Create Menu" +msgstr "" + +#. [menuListPageAddMenu] - button +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json +msgctxt "button" +msgid "Create Menu" +msgstr "" + #. [src.attributes.components.AttributePage.2855501559] - page title #. defaultMessage is: #. Create New Attribute @@ -2325,6 +2263,30 @@ msgctxt "header" msgid "Create New Shipping Zone" msgstr "" +#. [src.pages.components.PageDetailsPage.1068617485] - page header +#. defaultMessage is: +#. Create Page +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page header" +msgid "Create Page" +msgstr "" + +#. [src.orders.components.OrderProductAddDialog.1542417144] - dialog header +#. defaultMessage is: +#. Create Product +#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json +msgctxt "dialog header" +msgid "Create Product" +msgstr "" + +#. [src.products.components.ProductListPage.1542417144] - button +#. defaultMessage is: +#. Create Product +#: build/locale/src/products/components/ProductListPage/ProductListPage.json +msgctxt "button" +msgid "Create Product" +msgstr "" + #. [src.products.views.1542417144] - window title #. defaultMessage is: #. Create Product @@ -2357,11 +2319,19 @@ msgctxt "page header" msgid "Create Sale" msgstr "" -#. [src.products.views.2362587265] - window title +#. [src.discounts.components.SaleListPage.3866518732] - button +#. defaultMessage is: +#. Create Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "button" +msgid "Create Sale" +msgstr "" + +#. [src.products.views.2362587265] - header #. defaultMessage is: #. Create Variant #: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "window title" +msgctxt "header" msgid "Create Variant" msgstr "" @@ -2373,6 +2343,22 @@ msgctxt "page header" msgid "Create Voucher" msgstr "" +#. [src.attributes.components.AttributeListPage.3824684885] - button +#. defaultMessage is: +#. Create attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "button" +msgid "Create attribute" +msgstr "" + +#. [src.categories.components.CategoryListPage.1140231710] - button +#. defaultMessage is: +#. Create category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "button" +msgid "Create category" +msgstr "" + #. [src.categories.views.1140231710] - window title #. defaultMessage is: #. Create category @@ -2381,6 +2367,14 @@ msgctxt "window title" msgid "Create category" msgstr "" +#. [src.collections.components.CollectionListPage.686910896] - button +#. defaultMessage is: +#. Create collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "button" +msgid "Create collection" +msgstr "" + #. [src.collections.views.686910896] - window title #. defaultMessage is: #. Create collection @@ -2397,6 +2391,14 @@ msgctxt "window title" msgid "Create customer" msgstr "" +#. [menuItemsAddItem] - add new menu item +#. defaultMessage is: +#. Create new item +#: build/locale/src/navigation/components/MenuItems/MenuItems.json +msgctxt "add new menu item" +msgid "Create new item" +msgstr "" + #. [src.orders.components.OrderDraftListPage.2826235371] - button #. defaultMessage is: #. Create order @@ -2409,6 +2411,14 @@ msgctxt "button" msgid "Create order" msgstr "Skapa order" +#. [src.pages.components.PageListPage.3785394515] - button +#. defaultMessage is: +#. Create page +#: build/locale/src/pages/components/PageListPage/PageListPage.json +msgctxt "button" +msgid "Create page" +msgstr "" + #. [src.pages.views.3785394515] - header #. defaultMessage is: #. Create page @@ -2420,11 +2430,55 @@ msgstr "" #. [src.shipping.components.ShippingZoneRateDialog.16061680] - button #. defaultMessage is: #. Create rate +#. [src.shipping.components.ShippingZoneRates.16061680] - button +#. defaultMessage is: +#. Create rate #: build/locale/src/shipping/components/ShippingZoneRateDialog/ShippingZoneRateDialog.json +#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json msgctxt "button" msgid "Create rate" msgstr "" +#. [src.shipping.components.ShippingZonesList.2673544109] - button +#. defaultMessage is: +#. Create shipping zone +#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json +msgctxt "button" +msgid "Create shipping zone" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.770296100] - button +#. defaultMessage is: +#. Create subcategory +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json +msgctxt "button" +msgid "Create subcategory" +msgstr "" + +#. [src.products.components.ProductVariants.3989383405] - button +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/components/ProductVariants/ProductVariants.json +msgctxt "button" +msgid "Create variant" +msgstr "" + +#. [src.products.views.3989383405] - window title +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/views/ProductVariantCreate.json +msgctxt "window title" +msgid "Create variant" +msgstr "" + +#. [src.discounts.components.VoucherListPage.614836274] - button +#. defaultMessage is: +#. Create voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "button" +msgid "Create voucher" +msgstr "" + #. [src.collections.views.1597339737] #. defaultMessage is: #. Created collection @@ -2471,7 +2525,11 @@ msgstr "" #. [src.components.FilterBar.2340527467] #. defaultMessage is: #. Custom Filter +#. [src.components.SearchBar.2340527467] +#. defaultMessage is: +#. Custom Filter #: build/locale/src/components/FilterBar/FilterBar.json +#: build/locale/src/components/SearchBar/SearchBar.json msgctxt "description" msgid "Custom Filter" msgstr "" @@ -2727,10 +2785,18 @@ msgctxt "dialog title" msgid "Delete Collection" msgstr "" -#. [src.orders.views.1161115149] - dialog header +#. [src.products.views.1731766393] - dialog header +#. defaultMessage is: +#. Delete Image +#: build/locale/src/products/views/ProductImage.json +msgctxt "dialog header" +msgid "Delete Image" +msgstr "" + +#. [src.orders.views.OrderDraftList.1161115149] - dialog header #. defaultMessage is: #. Delete Order Drafts -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog header" msgid "Delete Order Drafts" msgstr "" @@ -2768,10 +2834,10 @@ msgctxt "dialog header" msgid "Delete Product Type" msgstr "" -#. [src.productTypes.views.4080551769] - dialog header +#. [src.productTypes.views.ProductTypeList.4080551769] - dialog header #. defaultMessage is: #. Delete Product Types -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog header" msgid "Delete Product Types" msgstr "" @@ -2800,10 +2866,10 @@ msgctxt "dialog header" msgid "Delete Sale" msgstr "" -#. [src.discounts.views.2809303671] - dialog header +#. [src.discounts.views.SaleList.2809303671] - dialog header #. defaultMessage is: #. Delete Sales -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog header" msgid "Delete Sales" msgstr "" @@ -2817,9 +2883,13 @@ msgctxt "custom search delete, dialog header" msgid "Delete Search" msgstr "" +#. [src.components.Filter.2173195312] - button +#. defaultMessage is: +#. Delete Search #. [src.components.TableFilter.2173195312] - button #. defaultMessage is: #. Delete Search +#: build/locale/src/components/Filter/FilterSearch.json #: build/locale/src/components/TableFilter/FilterChips.json msgctxt "button" msgid "Delete Search" @@ -2886,10 +2956,10 @@ msgctxt "dialog header" msgid "Delete Voucher" msgstr "" -#. [src.discounts.views.367317371] - dialog header +#. [src.discounts.views.VoucherList.367317371] - dialog header #. defaultMessage is: #. Delete Vouchers -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog header" msgid "Delete Vouchers" msgstr "" @@ -2923,11 +2993,11 @@ msgstr "" #. [src.categories.views.712767046] - dialog title #. defaultMessage is: #. Delete categories -#. [src.categories.views.712767046] - dialog title +#. [src.categories.views.CategoryList.712767046] - dialog title #. defaultMessage is: #. Delete categories #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "dialog title" msgid "Delete categories" msgstr "" @@ -2944,10 +3014,10 @@ msgctxt "dialog title" msgid "Delete category" msgstr "" -#. [src.collections.views.3817188998] - dialog title +#. [src.collections.views.CollectionList.3817188998] - dialog title #. defaultMessage is: #. Delete collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Delete collections" msgstr "" @@ -2960,14 +3030,31 @@ msgctxt "dialog header" msgid "Delete customer" msgstr "" -#. [src.customers.views.1946482599] - dialog header +#. [src.customers.views.CustomerList.1946482599] - dialog header #. defaultMessage is: #. Delete customers -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "dialog header" msgid "Delete customers" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.632633254] - dialog header +#. defaultMessage is: +#. Delete draft order +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "dialog header" +msgid "Delete draft order" +msgstr "" + +#. [src.shipping.views.ShippingZoneDetails.1947090060] - unassign country, +#. dialog header +#. defaultMessage is: +#. Delete from shipping zone +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country, dialog header" +msgid "Delete from shipping zone" +msgstr "" + #. [src.collections.views.942133001] - dialog title #. defaultMessage is: #. Delete image @@ -3028,6 +3115,14 @@ msgctxt "description" msgid "Deleted collection" msgstr "Tagit bort kollektion" +#. [src.orders.views.OrderDraftList.1648805446] +#. defaultMessage is: +#. Deleted draft orders +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json +msgctxt "description" +msgid "Deleted draft orders" +msgstr "" + #. [menuListDeletedMenu] #. defaultMessage is: #. Deleted menu @@ -3627,14 +3722,6 @@ msgctxt "order history message" msgid "Fulfilled {quantity} items" msgstr "" -#. [src.orders.components.OrderListFilter.2943502192] - order -#. defaultMessage is: -#. Fulfillment Status -#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json -msgctxt "order" -msgid "Fulfillment Status" -msgstr "" - #. [src.orders.components.OrderHistory.3081292385] - order history message #. defaultMessage is: #. Fulfillment confirmation was sent to customer @@ -3793,12 +3880,12 @@ msgstr "" "Om det är tomt visar förhandsvisningen vad som kommer att vara " "autogenererat." -#. [src.attributes.components.AttributeProperties.2519239682] +#. [src.attributes.components.AttributeProperties.4048785456] #. defaultMessage is: -#. If enable this attribute can be used as a column in product table. +#. If enabled this attribute can be used as a column in product table. #: build/locale/src/attributes/components/AttributeProperties/AttributeProperties.json msgctxt "description" -msgid "If enable this attribute can be used as a column in product table." +msgid "If enabled this attribute can be used as a column in product table." msgstr "" #. [src.attributes.components.AttributeProperties.787251583] @@ -3904,6 +3991,22 @@ msgctxt "product variant stock" msgid "Inventory" msgstr "Lagerförteckning" +#. [src.staff.components.StaffAddMemberDialog.1481503299] - dialog header +#. defaultMessage is: +#. Invite Staff Member +#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json +msgctxt "dialog header" +msgid "Invite Staff Member" +msgstr "" + +#. [src.staff.components.StaffListPage.797461521] - button +#. defaultMessage is: +#. Invite staff member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "button" +msgid "Invite staff member" +msgstr "" + #. [src.productTypes.components.ProductTypeShipping.2143413921] - switch #. button #. defaultMessage is: @@ -4256,6 +4359,14 @@ msgctxt "voucher requirement" msgid "Minimum quantity of items" msgstr "" +#. [src.configuration.1233229030] +#. defaultMessage is: +#. Miscellaneous +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Miscellaneous" +msgstr "" + #. [src.attributes.components.AttributeDetails.3334509011] - product attribute #. type #. defaultMessage is: @@ -5088,6 +5199,14 @@ msgctxt "description" msgid "Order History" msgstr "" +#. [src.orders.components.OrderListFilter.2222765704] +#. defaultMessage is: +#. Order Status +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +msgctxt "description" +msgid "Order Status" +msgstr "" + #. [src.orders.components.OrderHistory.1230178536] - order history message #. defaultMessage is: #. Order address was updated @@ -5104,13 +5223,13 @@ msgctxt "order history message" msgid "Order confirmation was sent to customer" msgstr "" -#. [src.orders.views.1872939752] +#. [src.orders.views.OrderDraftList.1872939752] #. defaultMessage is: #. Order draft succesfully created #. [src.orders.views.OrderList.1872939752] #. defaultMessage is: #. Order draft succesfully created -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json #: build/locale/src/orders/views/OrderList/OrderList.json msgctxt "description" msgid "Order draft succesfully created" @@ -5775,6 +5894,14 @@ msgctxt "description" msgid "Product Name" msgstr "" +#. [src.configuration.3655543906] +#. defaultMessage is: +#. Product Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Product Settings" +msgstr "" + #. [src.discounts.components.DiscountProducts.4257289053] #. defaultMessage is: #. Product Type @@ -5933,12 +6060,12 @@ msgctxt "order history message" msgid "Products were added to draft order" msgstr "" -#. [src.orders.components.OrderHistory.2574162126] - order history message +#. [src.orders.components.OrderHistory.4067959693] - order history message #. defaultMessage is: -#. Products were removed from draft order +#. Products were deleted from draft order #: build/locale/src/orders/components/OrderHistory/OrderHistory.json msgctxt "order history message" -msgid "Products were removed from draft order" +msgid "Products were deleted from draft order" msgstr "" #. [src.properties] @@ -5965,10 +6092,10 @@ msgctxt "description" msgid "Provided email address does not exist in our database." msgstr "" -#. [src.collections.views.1547167026] - publish collections +#. [src.collections.views.CollectionList.1547167026] - publish collections #. defaultMessage is: #. Publish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "publish collections" msgid "Publish" msgstr "Publicera" @@ -6005,10 +6132,10 @@ msgctxt "dialog header" msgid "Publish Products" msgstr "" -#. [src.collections.views.2823425739] - dialog title +#. [src.collections.views.CollectionList.2823425739] - dialog title #. defaultMessage is: #. Publish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Publish collections" msgstr "" @@ -6182,6 +6309,18 @@ msgctxt "shipping method price" msgid "Rate Price" msgstr "" +#. [src.orders.components.OrderListFilter.2415661583] - order status +#. defaultMessage is: +#. Ready to Capture +#. [src.orders.views.OrderList.readyToCapture] - order status +#. defaultMessage is: +#. Ready to Capture +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +#: build/locale/src/orders/views/OrderList/filters.json +msgctxt "order status" +msgid "Ready to Capture" +msgstr "" + #. [src.customers.components.CustomerOrders.3878642352] - section header #. defaultMessage is: #. Recent orders @@ -6230,22 +6369,14 @@ msgctxt "switch button" msgid "Release all stock allocated to this order" msgstr "" -#. [src.auth.components.LoginPage.3182284913] - login -#. defaultMessage is: -#. Remember me -#: build/locale/src/auth/components/LoginPage/LoginPage.json -msgctxt "login" -msgid "Remember me" -msgstr "" - #. [src.categories.views.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. -#. [src.categories.views.3488150607] +#. [src.categories.views.CategoryList.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "description" msgid "Remember this will also delete all products assigned to this category." msgstr "" @@ -6258,39 +6389,6 @@ msgctxt "button" msgid "Remove" msgstr "Ta bort" -#. [src.products.views.490753666] - dialog header -#. defaultMessage is: -#. Remove Image -#: build/locale/src/products/views/ProductImage.json -msgctxt "dialog header" -msgid "Remove Image" -msgstr "" - -#. [src.orders.components.OrderDraftCancelDialog.500287069] - dialog header -#. defaultMessage is: -#. Remove draft order -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "dialog header" -msgid "Remove draft order" -msgstr "Ta bort orderförslag" - -#. [src.shipping.views.ShippingZoneDetails.254167659] - unassign country, -#. dialog header -#. defaultMessage is: -#. Remove from shipping zone -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country, dialog header" -msgid "Remove from shipping zone" -msgstr "" - -#. [src.orders.views.3880993240] -#. defaultMessage is: -#. Removed draft orders -#: build/locale/src/orders/views/OrderDraftList.json -msgctxt "description" -msgid "Removed draft orders" -msgstr "" - #. [src.pages.views.1457312643] #. defaultMessage is: #. Removed page @@ -6456,6 +6554,18 @@ msgctxt "button" msgid "Save" msgstr "Spara" +#. [src.components.Filter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#. [src.components.TableFilter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#: build/locale/src/components/Filter/FilterSearch.json +#: build/locale/src/components/TableFilter/FilterChips.json +msgctxt "button" +msgid "Save Custom Search" +msgstr "" + #. [src.components.SaveFilterTabDialog.1514415736] - save filter tab, header #. defaultMessage is: #. Save Custom Search @@ -6464,14 +6574,6 @@ msgctxt "save filter tab, header" msgid "Save Custom Search" msgstr "" -#. [src.components.TableFilter.1514415736] - button -#. defaultMessage is: -#. Save Custom Search -#: build/locale/src/components/TableFilter/FilterChips.json -msgctxt "button" -msgid "Save Custom Search" -msgstr "" - #. [src.products.components.ProductVariantCreatePage.2853608829] - button #. defaultMessage is: #. Save variant @@ -6488,6 +6590,14 @@ msgctxt "description" msgid "Saved changes" msgstr "" +#. [src.attributes.components.AttributeListPage.3916653510] +#. defaultMessage is: +#. Search Attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "description" +msgid "Search Attribute" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.902296540] #. defaultMessage is: #. Search Attributes @@ -6504,10 +6614,30 @@ msgctxt "description" msgid "Search Categories" msgstr "" +#. [src.categories.components.CategoryListPage.3841025483] +#. defaultMessage is: +#. Search Category +#. [src.translations.components.TranslationsEntitiesListPage.3841025483] +#. defaultMessage is: +#. Search Category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Category" +msgstr "" + +#. [src.collections.components.CollectionListPage.4057224233] +#. defaultMessage is: +#. Search Collection #. [src.components.AssignCollectionDialog.4057224233] #. defaultMessage is: #. Search Collection +#. [src.translations.components.TranslationsEntitiesListPage.4057224233] +#. defaultMessage is: +#. Search Collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json #: build/locale/src/components/AssignCollectionDialog/AssignCollectionDialog.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json msgctxt "description" msgid "Search Collection" msgstr "" @@ -6520,6 +6650,14 @@ msgctxt "description" msgid "Search Countries" msgstr "" +#. [src.customers.components.CustomerListPage.1643417013] +#. defaultMessage is: +#. Search Customer +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "description" +msgid "Search Customer" +msgstr "" + #. [src.orders.components.OrderCustomer.2433460203] #. defaultMessage is: #. Search Customers @@ -6528,6 +6666,14 @@ msgctxt "description" msgid "Search Customers" msgstr "" +#. [src.orders.components.OrderDraftListPage.77765281] +#. defaultMessage is: +#. Search Draft +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "description" +msgid "Search Draft" +msgstr "" + #. [src.translations.components.TranslationsCategoriesPage.1406947243] #. defaultMessage is: #. Search Engine Description @@ -6608,6 +6754,34 @@ msgctxt "description" msgid "Search Orders..." msgstr "" +#. [src.translations.components.TranslationsEntitiesListPage.2559018090] +#. defaultMessage is: +#. Search Page +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Page" +msgstr "" + +#. [src.translations.components.TranslationsEntitiesListPage.2105464697] +#. defaultMessage is: +#. Search Product +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product" +msgstr "" + +#. [src.productTypes.components.ProductTypeListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#. [src.translations.components.TranslationsEntitiesListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product Type" +msgstr "" + #. [src.components.AssignProductDialog.2850255786] #. defaultMessage is: #. Search Products @@ -6620,14 +6794,46 @@ msgctxt "description" msgid "Search Products" msgstr "" -#. [src.products.components.ProductListPage.3550330425] +#. [src.products.components.ProductListFilter.3550330425] #. defaultMessage is: #. Search Products... -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Search Products..." msgstr "" +#. [src.discounts.components.SaleListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#. [src.translations.components.TranslationsEntitiesListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Sale" +msgstr "" + +#. [src.staff.components.StaffListPage.61043583] +#. defaultMessage is: +#. Search Staff Member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "description" +msgid "Search Staff Member" +msgstr "" + +#. [src.discounts.components.VoucherListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#. [src.translations.components.TranslationsEntitiesListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Voucher" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.524117994] #. defaultMessage is: #. Search by attribute name @@ -6734,10 +6940,10 @@ msgctxt "description" msgid "Select all orders where:" msgstr "" -#. [src.products.components.ProductListPage.1421689426] +#. [src.products.components.ProductListFilter.1421689426] #. defaultMessage is: #. Select all products where: -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Select all products where:" msgstr "" @@ -6823,6 +7029,14 @@ msgctxt "description" msgid "Set plugin as Active" msgstr "" +#. [src.components.VisibilityCard.292404896] +#. defaultMessage is: +#. Set publication date +#: build/locale/src/components/VisibilityCard/VisibilityCard.json +msgctxt "description" +msgid "Set publication date" +msgstr "" + #. [src.discounts.shipment] - voucher discount #. defaultMessage is: #. Shipment @@ -7088,6 +7302,14 @@ msgctxt "staff section name" msgid "Staff Members" msgstr "" +#. [src.configuration.3140151600] +#. defaultMessage is: +#. Staff Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Staff Settings" +msgstr "" + #. [src.standard] - tax rate #. defaultMessage is: #. Standard @@ -8072,10 +8294,10 @@ msgctxt "payment status" msgid "Unpaid" msgstr "" -#. [src.collections.views.2237014112] - unpublish collections +#. [src.collections.views.CollectionList.2237014112] - unpublish collections #. defaultMessage is: #. Unpublish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "unpublish collections" msgid "Unpublish" msgstr "Avpublicera" @@ -8112,10 +8334,10 @@ msgctxt "dialog header" msgid "Unpublish Products" msgstr "" -#. [src.collections.views.2637364047] - dialog title +#. [src.collections.views.CollectionList.2637364047] - dialog title #. defaultMessage is: #. Unpublish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Unpublish collections" msgstr "" @@ -8615,6 +8837,22 @@ msgctxt "description" msgid "ZIP / Postal code" msgstr "" +#. [src.productTypes.components.ProductTypeListPage.3479705616] - button +#. defaultMessage is: +#. create product type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "button" +msgid "create product type" +msgstr "" + +#. [src.staff.views.1308770978] - dialog header +#. defaultMessage is: +#. delete Staff User +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "dialog header" +msgid "delete Staff User" +msgstr "" + #. [orderPaymentVATDoesNotApply] - vat not included in order price #. defaultMessage is: #. does not apply @@ -8688,19 +8926,35 @@ msgctxt "product status is set as" msgid "is set as" msgstr "" -#. [src.staff.views.2240444792] - dialog header -#. defaultMessage is: -#. remove Staff User -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "dialog header" -msgid "remove Staff User" -msgstr "" - -#. [src.components.VisibilityCard.1815688500] +#. [src.collections.components.CollectionCreatePage.1815688500] - collection #. defaultMessage is: #. since {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.1815688500] - collection +#. defaultMessage is: +#. since {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "since {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.1815688500] - page +#. defaultMessage is: +#. since {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "since {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#. [src.products.components.ProductUpdatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "since {date}" msgstr "" @@ -8728,11 +8982,35 @@ msgctxt "weight" msgid "to {value} {unit}" msgstr "" -#. [src.components.VisibilityCard.2001551496] +#. [src.collections.components.CollectionCreatePage.2001551496] - collection #. defaultMessage is: #. will be visible from {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.2001551496] - collection +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "will be visible from {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.2001551496] - page +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "will be visible from {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#. [src.products.components.ProductUpdatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "will be visible from {date}" msgstr "" diff --git a/locale/th.json b/locale/th.json index 6dad92f47..fa9eea039 100644 --- a/locale/th.json +++ b/locale/th.json @@ -1 +1 @@ -{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.350498821":"","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.2519239682":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"ชื่อ","src.categories.components.CategoryProducts.636461959":"ชื่อ","src.collections.components.CollectionProducts.636461959":"ชื่อ","src.products.components.ProductDetailsForm.636461959":"ชื่อ","src.collections.components.CollectionDetails.636461959":"ชื่อ","src.components.ProductList.636461959":"ชื่อ","src.discounts.components.SaleInfo.636461959":"ชื่อ","src.discounts.components.SaleList.636461959":"ชื่อ","src.discounts.components.SaleSummary.636461959":"ชื่อ","menuItemDialogNameLabel":"ชื่อ","src.products.components.ProductVariants.636461959":"ชื่อ","src.shipping.components.ShippingZoneRates.636461959":"ชื่อ","src.shipping.components.ShippingZonesList.636461959":"ชื่อ","src.staff.components.StaffList.636461959":"ชื่อ","src.translations.components.TranslationsEntitiesList.636461959":"ชื่อ","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.254756045":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.3182284913":"","src.auth.components.LoginPage.109182747":"ล็อกอิน","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"","src.categories.views.2004894945":"","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.3229914152":"","src.categories.components.CategoryList.435697837":"","src.categories.components.CategoryList.2159874182":"ประเภทสินค้าย่อย","src.categories.components.CategoryUpdatePage.2159874182":"ประเภทสินค้าย่อย","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.228151782":"เพิ่มประเภทสินค้า","src.categories.components.CategoryProducts.2968663655":"สินค้า","src.categories.components.CategoryUpdatePage.2968663655":"สินค้า","src.discounts.components.DiscountCategories.2968663655":"สินค้า","src.discounts.components.DiscountCollections.2968663655":"สินค้า","src.products":"สินค้า","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryProducts.3554578821":"","src.categories.components.CategoryProductsCard.3554578821":"","src.categories.components.CategoryProducts.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProducts.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.categories.components.CategoryProductsCard.4164156574":"","src.categories.views.1754466114":"","src.categories.views.1140231710":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.712767046":"","src.categories.views.299584400":"","src.categories.views.844574071":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.collections.components.CollectionCreatePage.3958681866":"","src.collections.components.CollectionListPage.3958681866":"","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"","src.availability":"","src.collections.components.CollectionList.3640454975":"","src.collections.components.CollectionProducts.3640454975":"","src.discounts.components.DiscountProducts.3640454975":"","src.components.ProductList.3640454975":"","src.products.components.ProductListPage.3640454975":"","src.pages.components.PageList.3640454975":"","src.products.views.ProductList.published":"","src.collections.components.CollectionList.2341910657":"","src.collections.components.CollectionProducts.2341910657":"","src.discounts.components.DiscountProducts.2341910657":"","src.components.ProductList.2341910657":"","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.686910896":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"","src.collections.views.2402899582":"","src.collections.views.2237014112":"","src.pages.views.2237014112":"","src.products.views.ProductList.2237014112":"","src.collections.views.1547167026":"","src.pages.views.1547167026":"","src.products.views.ProductList.1547167026":"","src.collections.views.2823425739":"","src.collections.views.1348793822":"","src.collections.views.2637364047":"","src.collections.views.3944356444":"","src.collections.views.3817188998":"","src.collections.views.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"ล็อกเอ๊าท์","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.4057224233":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"","src.components.ErrorMessageCard.2845142593":"","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.FilterBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"เพิ่ม","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.ProductList.1134347598":"ราคา","src.orders.components.OrderDraftDetailsProducts.1134347598":"ราคา","src.orders.components.OrderFulfillment.1134347598":"ราคา","src.products.components.ProductListPage.1134347598":"ราคา","src.products.components.ProductPricing.1134347598":"ราคา","src.orders.components.OrderUnfulfilledItems.1134347598":"ราคา","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"ราคา","src.shipping.components.ShippingZoneRates.1134347598":"ราคา","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"","src.pages.components.PageList.1459686496":"","src.products.components.ProductListFilter.1459686496":"","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"","src.products.views.ProductList.hidden":"","src.components.VisibilityCard.1815688500":"","src.components.VisibilityCard.2001551496":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","configurationMenuStaff":"","configurationMenuShipping":"","configurationMenuTaxes":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","src.customers.components.CustomerAddress.1320082647":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"ที่อยู่ส่งบิล","src.customers.components.CustomerAddresses.3517722732":"ที่อยู่จัดส่ง","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"ที่อยู่","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"","src.orders.components.OrderCustomerNote.1520756907":"","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"","src.customers.components.CustomerDetails.577013340":"","src.customers.components.CustomerCreatePage.1934221653":"","src.customers.components.CustomerListPage.1934221653":"","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerOrders.3878642352":"","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"วันที่","src.orders.components.OrderDraftList.4205493358":"วันที่","src.orders.components.OrderList.4205493358":"วันที่","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"สถานะ","src.orders.components.OrderListFilter.1756106276":"สถานะ","src.products.components.ProductListFilter.1756106276":"สถานะ","src.products.components.ProductVariants.1756106276":"สถานะ","src.customers.components.CustomerOrders.878013594":"รวมทั้งหมด","src.orders.components.OrderDraftDetailsProducts.878013594":"รวมทั้งหมด","src.orders.components.OrderDraftDetailsSummary.878013594":"รวมทั้งหมด","src.orders.components.OrderDraftList.878013594":"รวมทั้งหมด","src.orders.components.OrderFulfillment.878013594":"รวมทั้งหมด","src.orders.components.OrderUnfulfilledItems.878013594":"รวมทั้งหมด","src.orders.components.OrderList.878013594":"รวมทั้งหมด","src.orders.components.OrderPayment.878013594":"รวมทั้งหมด","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.1946482599":"","src.customers.views.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"","src.discounts.components.SaleSummary.1148029984":"","src.discounts.components.VoucherList.1148029984":"","src.discounts.components.VoucherSummary.1148029984":"","src.discounts.components.VoucherValue.1148029984":"","src.products.components.ProductAttributes.1148029984":"","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.1742771332":"","src.discounts.components.SalePricing.1099355007":"","src.products.components.ProductPricing.1099355007":"","src.products.components.ProductVariantPrice.1099355007":"","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"ประเทศ","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"","src.discounts.components.VoucherSummary.78726751":"","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.1536809153":"","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"","src.discounts.shipment":"","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.2809303671":"","src.discounts.views.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.367317371":"","src.discounts.views.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"ยกเลิก","src.orders.views.OrderList.3528672691":"ยกเลิก","src.confirm":"","src.delete":"","src.edit":"แก้ไข","src.manage":"","src.remove":"ลบ","src.save":"บันทึก","src.show":"","src.undo":"","src.attributes":"","src.products.components.ProductAttributes.4153345096":"","src.categories":"ประเภทสินค้า","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"คอลเล็กชั่น","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"การตั้งค่า","src.customers":"ลูกค้า","src.draftOrders":"","src.home":"หน้าแรก","src.navigation":"","src.orders":"คำสั่งซื้อ","src.pages":"","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"ลดราคา","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"ภาษี","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"ภาษี","src.taxes.components.CountryListPage.3955023266":"ภาษี","src.translations":"","src.vouchers":"","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"","src.partiallyPaid":"","src.partiallyRefunded":"","src.refunded":"","src.unpaid":"","src.cancelled":"","src.draft":"","src.fulfilled":"","src.orders.views.OrderList.fulfilled":"","src.orders.components.OrderListFilter.1712863026":"","src.partiallyFulfilled":"","src.unfulfilled":"","src.orders.views.OrderList.unfulfilled":"","src.orders.components.OrderListFilter.1751787272":"","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","src.1395232177":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"ลิ๊งค์","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"ยกเลิกคำสั่งซื้อ","src.orders.components.OrderDetailsPage.1854613983":"ยกเลิกคำสั่งซื้อ","src.orders.components.OrderDraftPage.1854613983":"ยกเลิกคำสั่งซื้อ","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"ลูกค้า","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"ลูกค้า","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"","src.orders.components.OrderCustomerEditDialog.1411666943":"แก้ไขรายละเอียดลูกค้า","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.500287069":"","src.orders.components.OrderDraftCancelDialog.3199827590":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"สินค้า","src.orders.components.OrderUnfulfilledItems.1895667608":"สินค้า","src.orders.components.OrderDraftDetailsProducts.2796503714":"จำนวน","src.orders.components.OrderFulfillment.2796503714":"จำนวน","src.orders.components.OrderFulfillmentDialog.2796503714":"จำนวน","src.orders.components.OrderUnfulfilledItems.2796503714":"จำนวน","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"","src.orders.components.OrderPayment.781550514":"","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"สร้างคำสั่งซื้อ","src.orders.components.OrderListPage.2826235371":"สร้างคำสั่งซื้อ","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"เพิ่มข้อมูลติดตามสถานะจัดส่งสินค้า","src.orders.components.OrderFulfillmentCancelDialog.732594284":"","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"รหัสสินค้า","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"รหัสติดตามสินค้า","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.2574162126":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"คำสั่งซื้อนี้ได้รับชำระเงินครบถ้วนแล้ว","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"การชำระเงิน","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2943502192":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"ตัวเลือกการจัดส่ง","src.productTypes.components.ProductTypeShipping.1325966144":"ตัวเลือกการจัดส่ง","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"ตัวเลือกการจัดส่ง","src.orders.components.OrderPayment.3768782744":"","src.orders.components.OrderPayment.2320183694":"","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"","src.orders.components.OrderPayment.2845258362":"คืนเงิน","src.orders.components.OrderPayment.2444197639":"","src.orders.components.OrderPayment.3500506678":"","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.2775402904":"","src.products.components.ProductListPage.2775402904":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.3880993240":"","src.orders.views.1161115149":"","src.orders.views.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.755314116":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"","src.pages.components.PageList.1124600214":"","src.pages.components.PageInfo.1116746286":"","src.translations.components.TranslationsPagesPage.1116746286":"","src.pages.components.PageList.3478065224":"","src.pages.components.PageSlug.3478065224":"","src.productTypes.components.ProductTypeAttributes.3478065224":"","src.pages.components.PageList.3767550649":"","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.1767905232":"","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.3785394515":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"","src.products.components.ProductVariantImages.3240888698":"","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"","src.products.components.ProductVariantStock.3841616483":"","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListPage.821159718":"","src.products.components.ProductListPage.1421689426":"","src.products.components.ProductListPage.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"","prodictStockInventoryLabel":"","src.products.components.ProductVariantStock.3490038570":"","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"","src.products.components.ProductVariants.2153006789":"","src.products.components.ProductVariantNavigation.2845381934":"","src.products.components.ProductVariants.2845381934":"","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1542417144":"","src.products.views.1591632382":"","src.products.views.490753666":"","src.products.views.672103788":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.1694086800":"","src.products.views.ProductList.224127438":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.products.views.2178905289":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1756957616":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.889729490":"","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.4080551769":"","src.productTypes.views.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.352297149":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2474410767":"เพิ่มโซนจัดส่ง","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.254167659":"","src.shipping.views.ShippingZoneDetails.1790261672":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"","src.siteSettings.components.SiteSettingsKeys.2446088470":"","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.3490059488":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.3247064221":"","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.802625341":"เพิ่มพนักงานร้าน","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"","src.staff.views.2240444792":"","src.staff.views.2728048444":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file +{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.3824684885":"","src.attributes.components.AttributeListPage.2417065806":"","src.attributes.components.AttributeListPage.3916653510":"","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.4048785456":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"ชื่อ","src.categories.components.CategoryProductList.636461959":"ชื่อ","src.components.ProductList.636461959":"ชื่อ","src.products.components.ProductList.636461959":"ชื่อ","src.collections.components.CollectionDetails.636461959":"ชื่อ","src.collections.components.CollectionProducts.636461959":"ชื่อ","src.products.components.ProductDetailsForm.636461959":"ชื่อ","src.discounts.components.SaleInfo.636461959":"ชื่อ","src.discounts.components.SaleList.636461959":"ชื่อ","src.discounts.components.SaleSummary.636461959":"ชื่อ","menuItemDialogNameLabel":"ชื่อ","src.plugins.components.PluginsList.636461959":"ชื่อ","src.products.components.ProductVariants.636461959":"ชื่อ","src.shipping.components.ShippingZoneRates.636461959":"ชื่อ","src.shipping.components.ShippingZonesList.636461959":"ชื่อ","src.staff.components.StaffList.636461959":"ชื่อ","src.translations.components.TranslationsEntitiesList.636461959":"ชื่อ","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.351422234":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.109182747":"ล็อกอิน","src.auth.components.LoginPage.4028609483":"","src.auth.components.NewPasswordPage.1915811227":"","src.auth.components.NewPasswordPage.1254879564":"","src.auth.components.NewPasswordPage.2799926859":"","src.auth.components.NewPasswordPage.4253911811":"","src.auth.components.NewPasswordPage.2342634351":"","src.auth.components.ResetPasswordPage.2370700732":"","src.auth.components.ResetPasswordPage.3663311080":"","src.auth.components.ResetPasswordSuccessPage.4066297200":"","src.auth.components.ResetPasswordSuccessPage.2245157344":"","src.auth.views.2388238158":"","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"","src.categories.views.2004894945":"","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.2159874182":"ประเภทสินค้าย่อย","src.categories.components.CategoryUpdatePage.2159874182":"ประเภทสินค้าย่อย","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.1140231710":"","src.categories.views.1140231710":"","src.categories.components.CategoryListPage.4294878092":"","src.categories.components.CategoryListPage.3841025483":"","src.translations.components.TranslationsEntitiesListPage.3841025483":"","src.categories.components.CategoryProductList.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductList.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProductList.3640454975":"","src.components.ProductList.3640454975":"","src.products.components.ProductList.3640454975":"","src.products.components.ProductListPage.3640454975":"","productStatusLabel":"","src.collections.components.CollectionList.3640454975":"","src.collections.components.CollectionProducts.3640454975":"","src.discounts.components.DiscountProducts.3640454975":"","src.pages.components.PageList.3640454975":"","src.products.views.ProductList.published":"","src.categories.components.CategoryProductList.1134347598":"ราคา","src.orders.components.OrderFulfillment.1134347598":"ราคา","src.products.components.ProductList.1134347598":"ราคา","src.products.components.ProductListPage.1134347598":"ราคา","src.products.components.ProductPricing.1134347598":"ราคา","src.components.ProductList.1134347598":"ราคา","src.orders.components.OrderDraftDetailsProducts.1134347598":"ราคา","src.orders.components.OrderUnfulfilledItems.1134347598":"ราคา","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"ราคา","src.shipping.components.ShippingZoneRates.1134347598":"ราคา","src.categories.components.CategoryProductList.2341910657":"","src.products.components.ProductList.2341910657":"","src.collections.components.CollectionList.2341910657":"","src.collections.components.CollectionProducts.2341910657":"","src.discounts.components.DiscountProducts.2341910657":"","src.components.ProductList.2341910657":"","src.categories.components.CategoryProductList.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.products.components.ProductList.1657559629":"","src.categories.components.CategoryProducts.4164156574":"","src.categories.components.CategoryProducts.3554578821":"","src.categories.components.CategoryUpdatePage.2968663655":"สินค้า","src.discounts.components.DiscountCategories.2968663655":"สินค้า","src.discounts.components.DiscountCollections.2968663655":"สินค้า","src.products":"สินค้า","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryUpdatePage.3229914152":"","src.categories.components.CategoryUpdatePage.770296100":"","src.categories.views.1754466114":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.CategoryList.3488150607":"","src.categories.views.712767046":"","src.categories.views.CategoryList.712767046":"","src.categories.views.299584400":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.categories.views.CategoryList.2144707585":"","src.collections.components.CollectionCreatePage.3958681866":"","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionCreatePage.2001551496":"","src.collections.components.CollectionDetailsPage.2001551496":"","src.pages.components.PageDetailsPage.2001551496":"","src.products.components.ProductCreatePage.2001551496":"","src.products.components.ProductUpdatePage.2001551496":"","src.collections.components.CollectionCreatePage.1815688500":"","src.collections.components.CollectionDetailsPage.1815688500":"","src.pages.components.PageDetailsPage.1815688500":"","src.products.components.ProductCreatePage.1815688500":"","src.products.components.ProductUpdatePage.1815688500":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"","src.availability":"","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionListPage.686910896":"","src.collections.views.686910896":"","src.collections.components.CollectionListPage.1631917001":"","src.collections.components.CollectionListPage.4057224233":"","src.components.AssignCollectionDialog.4057224233":"","src.translations.components.TranslationsEntitiesListPage.4057224233":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"","src.collections.views.2402899582":"","src.collections.views.CollectionList.2237014112":"","src.pages.views.2237014112":"","src.products.views.ProductList.2237014112":"","src.collections.views.CollectionList.1547167026":"","src.pages.views.1547167026":"","src.products.views.ProductList.1547167026":"","src.collections.views.CollectionList.2823425739":"","src.collections.views.CollectionList.1348793822":"","src.collections.views.CollectionList.2637364047":"","src.collections.views.CollectionList.3944356444":"","src.collections.views.CollectionList.3817188998":"","src.collections.views.CollectionList.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"ล็อกเอ๊าท์","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"","src.components.ErrorMessageCard.2845142593":"","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.Filter.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.Filter.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.FilterBar.2340527467":"","src.components.SearchBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"เพิ่ม","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"","src.pages.components.PageList.1459686496":"","src.products.components.ProductListFilter.1459686496":"","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"","src.products.views.ProductList.hidden":"","src.components.VisibilityCard.292404896":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","src.configuration.2326418019":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","src.configuration.3655543906":"","configurationMenuShipping":"","configurationMenuTaxes":"","src.configuration.3140151600":"","configurationMenuStaff":"","src.configuration.1233229030":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","configurationPluginsPages":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"ที่อยู่ส่งบิล","src.customers.components.CustomerAddresses.3517722732":"ที่อยู่จัดส่ง","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"ที่อยู่","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"","src.orders.components.OrderCustomerNote.1520756907":"","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"","src.customers.components.CustomerDetails.577013340":"","src.customers.components.CustomerCreatePage.1934221653":"","src.customers.components.CustomerListPage.1934221653":"","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerListPage.477293306":"","src.customers.components.CustomerListPage.1643417013":"","src.customers.components.CustomerOrders.3878642352":"","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"วันที่","src.orders.components.OrderDraftList.4205493358":"วันที่","src.orders.components.OrderList.4205493358":"วันที่","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"สถานะ","src.orders.components.OrderListFilter.1756106276":"สถานะ","src.plugins.components.PluginInfo.1756106276":"สถานะ","src.products.components.ProductListFilter.1756106276":"สถานะ","src.products.components.ProductVariants.1756106276":"สถานะ","src.customers.components.CustomerOrders.878013594":"รวมทั้งหมด","src.orders.components.OrderDraftDetailsProducts.878013594":"รวมทั้งหมด","src.orders.components.OrderDraftDetailsSummary.878013594":"รวมทั้งหมด","src.orders.components.OrderDraftList.878013594":"รวมทั้งหมด","src.orders.components.OrderFulfillment.878013594":"รวมทั้งหมด","src.orders.components.OrderUnfulfilledItems.878013594":"รวมทั้งหมด","src.orders.components.OrderList.878013594":"รวมทั้งหมด","src.orders.components.OrderPayment.878013594":"รวมทั้งหมด","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.CustomerList.1946482599":"","src.customers.views.CustomerList.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","src.discounts.components.SaleListPage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"","src.discounts.components.SaleSummary.1148029984":"","src.discounts.components.VoucherList.1148029984":"","src.discounts.components.VoucherSummary.1148029984":"","src.discounts.components.VoucherValue.1148029984":"","src.products.components.ProductAttributes.1148029984":"","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.3907768880":"","src.discounts.components.SaleListPage.1866913828":"","src.translations.components.TranslationsEntitiesListPage.1866913828":"","src.discounts.components.SalePricing.1099355007":"","src.products.components.ProductPricing.1099355007":"","src.products.components.ProductVariantPrice.1099355007":"","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"ประเทศ","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"","src.discounts.components.VoucherSummary.78726751":"","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.614836274":"","src.discounts.components.VoucherListPage.1112241061":"","src.discounts.components.VoucherListPage.1930485532":"","src.translations.components.TranslationsEntitiesListPage.1930485532":"","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"","src.discounts.shipment":"","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.SaleList.2809303671":"","src.discounts.views.SaleList.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.VoucherList.367317371":"","src.discounts.views.VoucherList.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.somethingWentWrong":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"ยกเลิก","src.orders.views.OrderList.3528672691":"ยกเลิก","src.confirm":"","src.delete":"","src.edit":"แก้ไข","src.manage":"","src.remove":"ลบ","src.save":"บันทึก","src.show":"","src.undo":"","src.attributes":"","src.products.components.ProductAttributes.4153345096":"","src.categories":"ประเภทสินค้า","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"คอลเล็กชั่น","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"การตั้งค่า","src.customers":"ลูกค้า","src.draftOrders":"","src.home":"หน้าแรก","src.navigation":"","src.orders":"คำสั่งซื้อ","src.pages":"","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.plugins":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"ลดราคา","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"ภาษี","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"ภาษี","src.taxes.components.CountryListPage.3955023266":"ภาษี","src.translations":"","src.vouchers":"","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"","src.partiallyPaid":"","src.partiallyRefunded":"","src.refunded":"","src.unpaid":"","src.cancelled":"","src.draft":"","src.fulfilled":"","src.orders.views.OrderList.fulfilled":"","src.orders.components.OrderListFilter.1712863026":"","src.partiallyFulfilled":"","src.unfulfilled":"","src.orders.views.OrderList.unfulfilled":"","src.orders.components.OrderListFilter.1751787272":"","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"ลิ๊งค์","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"ยกเลิกคำสั่งซื้อ","src.orders.components.OrderDetailsPage.1854613983":"ยกเลิกคำสั่งซื้อ","src.orders.components.OrderDraftPage.1854613983":"ยกเลิกคำสั่งซื้อ","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"ลูกค้า","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"ลูกค้า","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"","src.orders.components.OrderCustomerEditDialog.1411666943":"แก้ไขรายละเอียดลูกค้า","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.632633254":"","src.orders.components.OrderDraftCancelDialog.36681973":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"สินค้า","src.orders.components.OrderUnfulfilledItems.1895667608":"สินค้า","src.orders.components.OrderDraftDetailsProducts.2796503714":"จำนวน","src.orders.components.OrderFulfillment.2796503714":"จำนวน","src.orders.components.OrderFulfillmentDialog.2796503714":"จำนวน","src.orders.components.OrderUnfulfilledItems.2796503714":"จำนวน","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"","src.orders.components.OrderPayment.781550514":"","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"สร้างคำสั่งซื้อ","src.orders.components.OrderListPage.2826235371":"สร้างคำสั่งซื้อ","src.orders.components.OrderDraftListPage.551325728":"","src.orders.components.OrderDraftListPage.77765281":"","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"เพิ่มข้อมูลติดตามสถานะจัดส่งสินค้า","src.orders.components.OrderFulfillmentCancelDialog.732594284":"","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"รหัสสินค้า","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"รหัสติดตามสินค้า","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.4067959693":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"คำสั่งซื้อนี้ได้รับชำระเงินครบถ้วนแล้ว","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"การชำระเงิน","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2415661583":"","src.orders.views.OrderList.readyToCapture":"","src.orders.components.OrderListFilter.2222765704":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"ตัวเลือกการจัดส่ง","src.productTypes.components.ProductTypeShipping.1325966144":"ตัวเลือกการจัดส่ง","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"ตัวเลือกการจัดส่ง","src.orders.components.OrderPayment.3768782744":"","src.orders.components.OrderPayment.2320183694":"","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"","src.orders.components.OrderPayment.2845258362":"คืนเงิน","src.orders.components.OrderPayment.2444197639":"","src.orders.components.OrderPayment.3500506678":"","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.1542417144":"","src.products.components.ProductListPage.1542417144":"","src.products.views.1542417144":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.OrderDraftList.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.OrderDraftList.1648805446":"","src.orders.views.OrderDraftList.1161115149":"","src.orders.views.OrderDraftList.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.1068617485":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"","src.pages.components.PageList.1124600214":"","src.pages.components.PageInfo.1116746286":"","src.translations.components.TranslationsPagesPage.1116746286":"","src.pages.components.PageList.3478065224":"","src.pages.components.PageSlug.3478065224":"","src.productTypes.components.ProductTypeAttributes.3478065224":"","src.pages.components.PageList.3767550649":"","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.3785394515":"","src.pages.views.3785394515":"","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.plugins.components.PluginInfo.3425535100":"","src.plugins.components.PluginsDetailsPage.3425535100":"","src.plugins.components.PluginInfo.1049131348":"","src.plugins.components.PluginInfo.4013064767":"","src.plugins.components.PluginsDetailsPage.3352026836":"","src.plugins.components.PluginsDetailsPage.2277745418":"","src.plugins.components.PluginsDetailsPage.1970881031":"","src.plugins.components.PluginSettings.1970881031":"","src.plugins.components.PluginsDetailsPage.4241018152":"","src.plugins.components.PluginsList.3247064221":"","src.staff.components.StaffList.3247064221":"","src.plugins.components.PluginsList.4120604650":"","src.plugins.components.PluginsList.666641390":"","src.plugins.views.100549097":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"","src.products.components.ProductVariantImages.3240888698":"","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"","src.products.components.ProductVariantStock.3841616483":"","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListFilter.821159718":"","src.products.components.ProductListFilter.1421689426":"","src.products.components.ProductListFilter.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"","prodictStockInventoryLabel":"","src.products.components.ProductVariantStock.3490038570":"","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"","src.products.components.ProductVariants.2153006789":"","src.products.components.ProductVariantNavigation.2845381934":"","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.3989383405":"","src.products.views.3989383405":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1591632382":"","src.products.views.1731766393":"","src.products.views.2880386427":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1217376589":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.3479705616":"","src.productTypes.components.ProductTypeListPage.1776073799":"","src.productTypes.components.ProductTypeListPage.3420445375":"","src.translations.components.TranslationsEntitiesListPage.3420445375":"","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.ProductTypeList.4080551769":"","src.productTypes.views.ProductTypeList.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRates.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2673544109":"","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.1947090060":"","src.shipping.views.ShippingZoneDetails.131963671":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"","src.siteSettings.components.SiteSettingsKeys.2446088470":"","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.1481503299":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.797461521":"","src.staff.components.StaffListPage.2852350932":"","src.staff.components.StaffListPage.61043583":"","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"","src.staff.views.1308770978":"","src.staff.views.8878988":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.2105464697":"","src.translations.components.TranslationsEntitiesListPage.2559018090":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file diff --git a/locale/th.po b/locale/th.po index 3f37c0ff3..b2138ba2c 100644 --- a/locale/th.po +++ b/locale/th.po @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"POT-Creation-Date: 2019-09-06T13:56:36.897Z\n" +"POT-Creation-Date: 2019-09-16T15:25:09.340Z\n" "Last-Translator: Jakkrit S , 2019\n" "Language-Team: Thai (https://www.transifex.com/mirumee/teams/34782/th/)\n" "MIME-Version: 1.0\n" @@ -142,22 +142,6 @@ msgctxt "create new menu item, header" msgid "Add Item" msgstr "" -#. [menuCreateDialogHeader] - dialog header -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json -msgctxt "dialog header" -msgid "Add Menu" -msgstr "" - -#. [menuListPageAddMenu] - button -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json -msgctxt "button" -msgid "Add Menu" -msgstr "" - #. [src.siteSettings.components.SiteSettingsKeyDialog.1238948746] - dialog #. header #. defaultMessage is: @@ -167,14 +151,6 @@ msgctxt "dialog header" msgid "Add New Authorization Key" msgstr "" -#. [src.pages.components.PageDetailsPage.755314116] - page header -#. defaultMessage is: -#. Add Page -#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json -msgctxt "page header" -msgid "Add Page" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.2892088870] - dialog header #. defaultMessage is: #. Add Price Rate @@ -183,38 +159,6 @@ msgctxt "dialog header" msgid "Add Price Rate" msgstr "" -#. [src.orders.components.OrderProductAddDialog.2775402904] - dialog header -#. defaultMessage is: -#. Add Product -#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json -msgctxt "dialog header" -msgid "Add Product" -msgstr "" - -#. [src.products.components.ProductListPage.2775402904] - button -#. defaultMessage is: -#. Add Product -#: build/locale/src/products/components/ProductListPage/ProductListPage.json -msgctxt "button" -msgid "Add Product" -msgstr "" - -#. [src.discounts.components.SaleListPage.1742771332] - button -#. defaultMessage is: -#. Add Sale -#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json -msgctxt "button" -msgid "Add Sale" -msgstr "" - -#. [src.staff.components.StaffAddMemberDialog.3490059488] - dialog header -#. defaultMessage is: -#. Add Staff Member -#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json -msgctxt "dialog header" -msgid "Add Staff Member" -msgstr "" - #. [src.attributes.components.AttributeValueEditDialog.1841790893] - add #. attribute value #. defaultMessage is: @@ -224,14 +168,6 @@ msgctxt "add attribute value" msgid "Add Value" msgstr "" -#. [src.products.views.2178905289] - header -#. defaultMessage is: -#. Add Variant -#: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "header" -msgid "Add Variant" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.1397795758] - add weight #. based shipping method, dialog header #. defaultMessage is: @@ -249,14 +185,6 @@ msgctxt "button" msgid "Add address" msgstr "" -#. [src.attributes.components.AttributeListPage.350498821] - button -#. defaultMessage is: -#. Add attribute -#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json -msgctxt "button" -msgid "Add attribute" -msgstr "" - #. [src.siteSettings.components.SiteSettingsKeyDialog.50561933] - button #. defaultMessage is: #. Add authentication @@ -265,14 +193,6 @@ msgctxt "button" msgid "Add authentication" msgstr "" -#. [src.categories.components.CategoryListPage.228151782] - button -#. defaultMessage is: -#. Add category -#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json -msgctxt "button" -msgid "Add category" -msgstr "เพิ่มประเภทสินค้า" - #. [src.collections.components.CollectionCreatePage.3958681866] - page header #. defaultMessage is: #. Add collection @@ -281,14 +201,6 @@ msgctxt "page header" msgid "Add collection" msgstr "" -#. [src.collections.components.CollectionListPage.3958681866] - button -#. defaultMessage is: -#. Add collection -#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json -msgctxt "button" -msgid "Add collection" -msgstr "" - #. [src.customers.components.CustomerCreatePage.1934221653] - page header #. defaultMessage is: #. Add customer @@ -321,14 +233,6 @@ msgctxt "button" msgid "Add key" msgstr "" -#. [menuItemsAddItem] - add new menu item -#. defaultMessage is: -#. Add new item -#: build/locale/src/navigation/components/MenuItems/MenuItems.json -msgctxt "add new menu item" -msgid "Add new item" -msgstr "" - #. [menuItemsPlaceholder] #. defaultMessage is: #. Add new menu item to begin creating menu @@ -363,14 +267,6 @@ msgctxt "button" msgid "Add or Edit Link" msgstr "" -#. [src.pages.components.PageListPage.1767905232] - button -#. defaultMessage is: -#. Add page -#: build/locale/src/pages/components/PageListPage/PageListPage.json -msgctxt "button" -msgid "Add page" -msgstr "" - #. [src.categories.components.CategoryProducts.3554578821] - button #. defaultMessage is: #. Add product @@ -379,14 +275,6 @@ msgctxt "button" msgid "Add product" msgstr "" -#. [src.productTypes.components.ProductTypeListPage.889729490] - button -#. defaultMessage is: -#. Add product type -#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json -msgctxt "button" -msgid "Add product type" -msgstr "" - #. [src.orders.components.OrderDraftDetails.2528459381] - button #. defaultMessage is: #. Add products @@ -395,14 +283,6 @@ msgctxt "button" msgid "Add products" msgstr "" -#. [src.shipping.components.ShippingZoneRates.352297149] - button -#. defaultMessage is: -#. Add rate -#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json -msgctxt "button" -msgid "Add rate" -msgstr "" - #. [src.categories.components.CategoryCreatePage.2563994280] #. defaultMessage is: #. Add search engine title and description to make this category easier to @@ -464,30 +344,6 @@ msgctxt "button" msgid "Add shipping carrier" msgstr "" -#. [src.shipping.components.ShippingZonesList.2474410767] - button -#. defaultMessage is: -#. Add shipping zone -#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json -msgctxt "button" -msgid "Add shipping zone" -msgstr "เพิ่มโซนจัดส่ง" - -#. [src.staff.components.StaffListPage.802625341] - button -#. defaultMessage is: -#. Add staff member -#: build/locale/src/staff/components/StaffListPage/StaffListPage.json -msgctxt "button" -msgid "Add staff member" -msgstr "เพิ่มพนักงานร้าน" - -#. [src.categories.components.CategoryList.435697837] - button -#. defaultMessage is: -#. Add subcategory -#: build/locale/src/categories/components/CategoryList/CategoryList.json -msgctxt "button" -msgid "Add subcategory" -msgstr "" - #. [src.attributes.components.AttributeProperties.673770329] - add attribute #. as column in product list table #. defaultMessage is: @@ -515,35 +371,14 @@ msgctxt "dialog header" msgid "Add tracking code" msgstr "" -#. [src.attributes.components.AttributeValues.254756045] - add attribute value -#. button -#. defaultMessage is: -#. Add value -#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json -msgctxt "add attribute value button" -msgid "Add value" -msgstr "" - #. [src.products.components.ProductVariantNavigation.2845381934] - button #. defaultMessage is: #. Add variant -#. [src.products.components.ProductVariants.2845381934] - button -#. defaultMessage is: -#. Add variant #: build/locale/src/products/components/ProductVariantNavigation/ProductVariantNavigation.json -#: build/locale/src/products/components/ProductVariants/ProductVariants.json msgctxt "button" msgid "Add variant" msgstr "" -#. [src.discounts.components.VoucherListPage.1536809153] - button -#. defaultMessage is: -#. Add voucher -#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json -msgctxt "button" -msgid "Add voucher" -msgstr "" - #. [src.attributes.views.AttributeDetails.634268988] - added new attribute #. value #. defaultMessage is: @@ -601,14 +436,6 @@ msgctxt "description" msgid "Address line 2" msgstr "" -#. [src.customers.components.CustomerAddress.1320082647] - addres card header -#. defaultMessage is: -#. Address {addressNumber} -#: build/locale/src/customers/components/CustomerAddress/CustomerAddress.json -msgctxt "addres card header" -msgid "Address {addressNumber}" -msgstr "" - #. [src.attributes.components.AttributeValues.1565474525] - attribute values #. list: slug column header #. defaultMessage is: @@ -658,6 +485,46 @@ msgctxt "tax rate" msgid "Agricultural supplies" msgstr "" +#. [src.attributes.components.AttributeListPage.2417065806] - tab name +#. defaultMessage is: +#. All Attributes +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "tab name" +msgid "All Attributes" +msgstr "" + +#. [src.categories.components.CategoryListPage.4294878092] - tab name +#. defaultMessage is: +#. All Categories +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "tab name" +msgid "All Categories" +msgstr "" + +#. [src.collections.components.CollectionListPage.1631917001] - tab name +#. defaultMessage is: +#. All Collections +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "tab name" +msgid "All Collections" +msgstr "" + +#. [src.customers.components.CustomerListPage.477293306] - tab name +#. defaultMessage is: +#. All Customers +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "tab name" +msgid "All Customers" +msgstr "" + +#. [src.orders.components.OrderDraftListPage.551325728] - tab name +#. defaultMessage is: +#. All Drafts +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "tab name" +msgid "All Drafts" +msgstr "" + #. [src.orders.components.OrderListPage.875489544] - tab name #. defaultMessage is: #. All Orders @@ -675,22 +542,54 @@ msgctxt "section header" msgid "All Photos" msgstr "" -#. [src.products.components.ProductListPage.821159718] - tab name +#. [src.productTypes.components.ProductTypeListPage.1776073799] - tab name +#. defaultMessage is: +#. All Product Types +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "tab name" +msgid "All Product Types" +msgstr "" + +#. [src.products.components.ProductListFilter.821159718] - tab name #. defaultMessage is: #. All Products -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "tab name" msgid "All Products" msgstr "" -#. [src.categories.components.CategoryList.3229914152] - section header +#. [src.discounts.components.SaleListPage.3907768880] - tab name +#. defaultMessage is: +#. All Sales +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "tab name" +msgid "All Sales" +msgstr "" + +#. [src.staff.components.StaffListPage.2852350932] - tab name +#. defaultMessage is: +#. All Staff Members +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "tab name" +msgid "All Staff Members" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.3229914152] - section header #. defaultMessage is: #. All Subcategories -#: build/locale/src/categories/components/CategoryList/CategoryList.json +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json msgctxt "section header" msgid "All Subcategories" msgstr "" +#. [src.discounts.components.VoucherListPage.1112241061] - tab name +#. defaultMessage is: +#. All Vouchers +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "tab name" +msgid "All Vouchers" +msgstr "" + #. [src.taxes.components.TaxConfiguration.142803418] #. defaultMessage is: #. All products prices are entered with tax included @@ -798,6 +697,14 @@ msgctxt "description" msgid "Are you sure you want to delete collection's image?" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.36681973] +#. defaultMessage is: +#. Are you sure you want to delete draft #{number}? +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "description" +msgid "Are you sure you want to delete draft #{number}?" +msgstr "" + #. [menuDetailsDeleteMenuContent] #. defaultMessage is: #. Are you sure you want to delete menu {menuName}? @@ -814,6 +721,14 @@ msgctxt "description" msgid "Are you sure you want to delete this address from users address book?" msgstr "" +#. [src.products.views.2880386427] +#. defaultMessage is: +#. Are you sure you want to delete this image? +#: build/locale/src/products/views/ProductImage.json +msgctxt "description" +msgid "Are you sure you want to delete this image?" +msgstr "" + #. [src.attributes.components.AttributeDeleteDialog.3738429348] - dialog #. content #. defaultMessage is: @@ -864,12 +779,7 @@ msgstr "" #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this attribute} #. other{{displayQuantity} categories}}? -#. [src.categories.views.844574071] -#. defaultMessage is: -#. Are you sure you want to delete {counter,plural,one{this attribute} -#. other{{displayQuantity} categories}}? #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this attribute} " @@ -887,22 +797,33 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.2497542455] +#. [src.categories.views.CategoryList.2144707585] +#. defaultMessage is: +#. Are you sure you want to delete {counter,plural,one{this category} +#. other{{displayQuantity} categories}}? +#: build/locale/src/categories/views/CategoryList/CategoryList.json +msgctxt "description" +msgid "" +"Are you sure you want to delete {counter,plural,one{this category} " +"other{{displayQuantity} categories}}?" +msgstr "" + +#. [src.collections.views.CollectionList.2497542455] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this collection} " "other{{displayQuantity} collections}}?" msgstr "" -#. [src.customers.views.409347866] +#. [src.customers.views.CustomerList.409347866] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this customer} #. other{{displayQuantity} customers}}? -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this customer} " @@ -920,11 +841,11 @@ msgid "" "other{{displayQuantity} menus}}?" msgstr "" -#. [src.orders.views.1389231130] - dialog content +#. [src.orders.views.OrderDraftList.1389231130] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this order draft} #. other{{displayQuantity} orderDrafts}}? -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this order draft} " @@ -942,11 +863,11 @@ msgid "" "other{{displayQuantity} pages}}?" msgstr "" -#. [src.productTypes.views.2294091098] - dialog content +#. [src.productTypes.views.ProductTypeList.2294091098] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this product type} #. other{{displayQuantity} product types}}? -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this product type} " @@ -964,11 +885,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.discounts.views.2516361175] - dialog content +#. [src.discounts.views.SaleList.2516361175] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this sale} #. other{{displayQuantity} sales}}? -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this sale} " @@ -997,17 +918,33 @@ msgid "" "other{{displayQuantity} variants}}?" msgstr "" -#. [src.discounts.views.1791926983] - dialog content +#. [src.discounts.views.VoucherList.1791926983] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this voucher} #. other{{displayQuantity} vouchers}}? -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this voucher} " "other{{displayQuantity} vouchers}}?" msgstr "" +#. [src.shipping.views.ShippingZoneDetails.131963671] - unassign country +#. defaultMessage is: +#. Are you sure you want to delete {countryName} from this shipping zone? +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country" +msgid "Are you sure you want to delete {countryName} from this shipping zone?" +msgstr "" + +#. [src.staff.views.8878988] +#. defaultMessage is: +#. Are you sure you want to delete {email} from staff members? +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "description" +msgid "Are you sure you want to delete {email} from staff members?" +msgstr "" + #. [src.customers.views.1927691511] - delete customer, dialog content #. defaultMessage is: #. Are you sure you want to delete {email}? @@ -1122,11 +1059,11 @@ msgctxt "description" msgid "Are you sure you want to mark this order as paid?" msgstr "" -#. [src.collections.views.1348793822] +#. [src.collections.views.CollectionList.1348793822] #. defaultMessage is: #. Are you sure you want to publish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to publish {counter,plural,one{this collection} " @@ -1155,30 +1092,6 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.orders.components.OrderDraftCancelDialog.3199827590] -#. defaultMessage is: -#. Are you sure you want to remove draft #{number}? -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "description" -msgid "Are you sure you want to remove draft #{number}?" -msgstr "" - -#. [src.products.views.672103788] -#. defaultMessage is: -#. Are you sure you want to remove this image? -#: build/locale/src/products/views/ProductImage.json -msgctxt "description" -msgid "Are you sure you want to remove this image?" -msgstr "" - -#. [src.shipping.views.ShippingZoneDetails.1790261672] - unassign country -#. defaultMessage is: -#. Are you sure you want to remove {countryName} from this shipping zone? -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country" -msgid "Are you sure you want to remove {countryName} from this shipping zone?" -msgstr "" - #. [src.staff.views.3945766678] #. defaultMessage is: #. Are you sure you want to remove {email} avatar? @@ -1187,14 +1100,6 @@ msgctxt "description" msgid "Are you sure you want to remove {email} avatar?" msgstr "" -#. [src.staff.views.2728048444] -#. defaultMessage is: -#. Are you sure you want to remove {email} from staff members? -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "description" -msgid "Are you sure you want to remove {email} from staff members?" -msgstr "" - #. [src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450] #. defaultMessage is: #. Are you sure you want to unassign {attributeName} from {productTypeName}? @@ -1275,11 +1180,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.3944356444] +#. [src.collections.views.CollectionList.3944356444] #. defaultMessage is: #. Are you sure you want to unpublish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to unpublish {counter,plural,one{this collection} " @@ -1440,6 +1345,15 @@ msgctxt "button" msgid "Assign products" msgstr "" +#. [src.attributes.components.AttributeValues.351422234] - assign attribute +#. value button +#. defaultMessage is: +#. Assign value +#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json +msgctxt "assign attribute value button" +msgid "Assign value" +msgstr "" + #. [src.attributes.components.AttributeDetails.3605174225] - attribute's slug #. short code label #. defaultMessage is: @@ -1518,6 +1432,14 @@ msgctxt "product attributes, section header" msgid "Attributes" msgstr "" +#. [src.configuration.2326418019] +#. defaultMessage is: +#. Attributes and Product Typess +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Attributes and Product Typess" +msgstr "" + #. [src.attributes.views.AttributeList.3218248395] - deleted multiple #. attributes #. defaultMessage is: @@ -2301,6 +2223,22 @@ msgctxt "description" msgid "Country area" msgstr "" +#. [menuCreateDialogHeader] - dialog header +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json +msgctxt "dialog header" +msgid "Create Menu" +msgstr "" + +#. [menuListPageAddMenu] - button +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json +msgctxt "button" +msgid "Create Menu" +msgstr "" + #. [src.attributes.components.AttributePage.2855501559] - page title #. defaultMessage is: #. Create New Attribute @@ -2325,6 +2263,30 @@ msgctxt "header" msgid "Create New Shipping Zone" msgstr "" +#. [src.pages.components.PageDetailsPage.1068617485] - page header +#. defaultMessage is: +#. Create Page +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page header" +msgid "Create Page" +msgstr "" + +#. [src.orders.components.OrderProductAddDialog.1542417144] - dialog header +#. defaultMessage is: +#. Create Product +#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json +msgctxt "dialog header" +msgid "Create Product" +msgstr "" + +#. [src.products.components.ProductListPage.1542417144] - button +#. defaultMessage is: +#. Create Product +#: build/locale/src/products/components/ProductListPage/ProductListPage.json +msgctxt "button" +msgid "Create Product" +msgstr "" + #. [src.products.views.1542417144] - window title #. defaultMessage is: #. Create Product @@ -2357,11 +2319,19 @@ msgctxt "page header" msgid "Create Sale" msgstr "" -#. [src.products.views.2362587265] - window title +#. [src.discounts.components.SaleListPage.3866518732] - button +#. defaultMessage is: +#. Create Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "button" +msgid "Create Sale" +msgstr "" + +#. [src.products.views.2362587265] - header #. defaultMessage is: #. Create Variant #: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "window title" +msgctxt "header" msgid "Create Variant" msgstr "" @@ -2373,6 +2343,22 @@ msgctxt "page header" msgid "Create Voucher" msgstr "" +#. [src.attributes.components.AttributeListPage.3824684885] - button +#. defaultMessage is: +#. Create attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "button" +msgid "Create attribute" +msgstr "" + +#. [src.categories.components.CategoryListPage.1140231710] - button +#. defaultMessage is: +#. Create category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "button" +msgid "Create category" +msgstr "" + #. [src.categories.views.1140231710] - window title #. defaultMessage is: #. Create category @@ -2381,6 +2367,14 @@ msgctxt "window title" msgid "Create category" msgstr "" +#. [src.collections.components.CollectionListPage.686910896] - button +#. defaultMessage is: +#. Create collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "button" +msgid "Create collection" +msgstr "" + #. [src.collections.views.686910896] - window title #. defaultMessage is: #. Create collection @@ -2397,6 +2391,14 @@ msgctxt "window title" msgid "Create customer" msgstr "" +#. [menuItemsAddItem] - add new menu item +#. defaultMessage is: +#. Create new item +#: build/locale/src/navigation/components/MenuItems/MenuItems.json +msgctxt "add new menu item" +msgid "Create new item" +msgstr "" + #. [src.orders.components.OrderDraftListPage.2826235371] - button #. defaultMessage is: #. Create order @@ -2409,6 +2411,14 @@ msgctxt "button" msgid "Create order" msgstr "สร้างคำสั่งซื้อ" +#. [src.pages.components.PageListPage.3785394515] - button +#. defaultMessage is: +#. Create page +#: build/locale/src/pages/components/PageListPage/PageListPage.json +msgctxt "button" +msgid "Create page" +msgstr "" + #. [src.pages.views.3785394515] - header #. defaultMessage is: #. Create page @@ -2420,11 +2430,55 @@ msgstr "" #. [src.shipping.components.ShippingZoneRateDialog.16061680] - button #. defaultMessage is: #. Create rate +#. [src.shipping.components.ShippingZoneRates.16061680] - button +#. defaultMessage is: +#. Create rate #: build/locale/src/shipping/components/ShippingZoneRateDialog/ShippingZoneRateDialog.json +#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json msgctxt "button" msgid "Create rate" msgstr "" +#. [src.shipping.components.ShippingZonesList.2673544109] - button +#. defaultMessage is: +#. Create shipping zone +#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json +msgctxt "button" +msgid "Create shipping zone" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.770296100] - button +#. defaultMessage is: +#. Create subcategory +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json +msgctxt "button" +msgid "Create subcategory" +msgstr "" + +#. [src.products.components.ProductVariants.3989383405] - button +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/components/ProductVariants/ProductVariants.json +msgctxt "button" +msgid "Create variant" +msgstr "" + +#. [src.products.views.3989383405] - window title +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/views/ProductVariantCreate.json +msgctxt "window title" +msgid "Create variant" +msgstr "" + +#. [src.discounts.components.VoucherListPage.614836274] - button +#. defaultMessage is: +#. Create voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "button" +msgid "Create voucher" +msgstr "" + #. [src.collections.views.1597339737] #. defaultMessage is: #. Created collection @@ -2471,7 +2525,11 @@ msgstr "" #. [src.components.FilterBar.2340527467] #. defaultMessage is: #. Custom Filter +#. [src.components.SearchBar.2340527467] +#. defaultMessage is: +#. Custom Filter #: build/locale/src/components/FilterBar/FilterBar.json +#: build/locale/src/components/SearchBar/SearchBar.json msgctxt "description" msgid "Custom Filter" msgstr "" @@ -2727,10 +2785,18 @@ msgctxt "dialog title" msgid "Delete Collection" msgstr "" -#. [src.orders.views.1161115149] - dialog header +#. [src.products.views.1731766393] - dialog header +#. defaultMessage is: +#. Delete Image +#: build/locale/src/products/views/ProductImage.json +msgctxt "dialog header" +msgid "Delete Image" +msgstr "" + +#. [src.orders.views.OrderDraftList.1161115149] - dialog header #. defaultMessage is: #. Delete Order Drafts -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog header" msgid "Delete Order Drafts" msgstr "" @@ -2768,10 +2834,10 @@ msgctxt "dialog header" msgid "Delete Product Type" msgstr "" -#. [src.productTypes.views.4080551769] - dialog header +#. [src.productTypes.views.ProductTypeList.4080551769] - dialog header #. defaultMessage is: #. Delete Product Types -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog header" msgid "Delete Product Types" msgstr "" @@ -2800,10 +2866,10 @@ msgctxt "dialog header" msgid "Delete Sale" msgstr "" -#. [src.discounts.views.2809303671] - dialog header +#. [src.discounts.views.SaleList.2809303671] - dialog header #. defaultMessage is: #. Delete Sales -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog header" msgid "Delete Sales" msgstr "" @@ -2817,9 +2883,13 @@ msgctxt "custom search delete, dialog header" msgid "Delete Search" msgstr "" +#. [src.components.Filter.2173195312] - button +#. defaultMessage is: +#. Delete Search #. [src.components.TableFilter.2173195312] - button #. defaultMessage is: #. Delete Search +#: build/locale/src/components/Filter/FilterSearch.json #: build/locale/src/components/TableFilter/FilterChips.json msgctxt "button" msgid "Delete Search" @@ -2886,10 +2956,10 @@ msgctxt "dialog header" msgid "Delete Voucher" msgstr "" -#. [src.discounts.views.367317371] - dialog header +#. [src.discounts.views.VoucherList.367317371] - dialog header #. defaultMessage is: #. Delete Vouchers -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog header" msgid "Delete Vouchers" msgstr "" @@ -2923,11 +2993,11 @@ msgstr "" #. [src.categories.views.712767046] - dialog title #. defaultMessage is: #. Delete categories -#. [src.categories.views.712767046] - dialog title +#. [src.categories.views.CategoryList.712767046] - dialog title #. defaultMessage is: #. Delete categories #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "dialog title" msgid "Delete categories" msgstr "" @@ -2944,10 +3014,10 @@ msgctxt "dialog title" msgid "Delete category" msgstr "" -#. [src.collections.views.3817188998] - dialog title +#. [src.collections.views.CollectionList.3817188998] - dialog title #. defaultMessage is: #. Delete collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Delete collections" msgstr "" @@ -2960,14 +3030,31 @@ msgctxt "dialog header" msgid "Delete customer" msgstr "" -#. [src.customers.views.1946482599] - dialog header +#. [src.customers.views.CustomerList.1946482599] - dialog header #. defaultMessage is: #. Delete customers -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "dialog header" msgid "Delete customers" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.632633254] - dialog header +#. defaultMessage is: +#. Delete draft order +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "dialog header" +msgid "Delete draft order" +msgstr "" + +#. [src.shipping.views.ShippingZoneDetails.1947090060] - unassign country, +#. dialog header +#. defaultMessage is: +#. Delete from shipping zone +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country, dialog header" +msgid "Delete from shipping zone" +msgstr "" + #. [src.collections.views.942133001] - dialog title #. defaultMessage is: #. Delete image @@ -3028,6 +3115,14 @@ msgctxt "description" msgid "Deleted collection" msgstr "" +#. [src.orders.views.OrderDraftList.1648805446] +#. defaultMessage is: +#. Deleted draft orders +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json +msgctxt "description" +msgid "Deleted draft orders" +msgstr "" + #. [menuListDeletedMenu] #. defaultMessage is: #. Deleted menu @@ -3627,14 +3722,6 @@ msgctxt "order history message" msgid "Fulfilled {quantity} items" msgstr "" -#. [src.orders.components.OrderListFilter.2943502192] - order -#. defaultMessage is: -#. Fulfillment Status -#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json -msgctxt "order" -msgid "Fulfillment Status" -msgstr "" - #. [src.orders.components.OrderHistory.3081292385] - order history message #. defaultMessage is: #. Fulfillment confirmation was sent to customer @@ -3791,12 +3878,12 @@ msgctxt "description" msgid "If empty, the preview shows what will be autogenerated." msgstr "" -#. [src.attributes.components.AttributeProperties.2519239682] +#. [src.attributes.components.AttributeProperties.4048785456] #. defaultMessage is: -#. If enable this attribute can be used as a column in product table. +#. If enabled this attribute can be used as a column in product table. #: build/locale/src/attributes/components/AttributeProperties/AttributeProperties.json msgctxt "description" -msgid "If enable this attribute can be used as a column in product table." +msgid "If enabled this attribute can be used as a column in product table." msgstr "" #. [src.attributes.components.AttributeProperties.787251583] @@ -3902,6 +3989,22 @@ msgctxt "product variant stock" msgid "Inventory" msgstr "" +#. [src.staff.components.StaffAddMemberDialog.1481503299] - dialog header +#. defaultMessage is: +#. Invite Staff Member +#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json +msgctxt "dialog header" +msgid "Invite Staff Member" +msgstr "" + +#. [src.staff.components.StaffListPage.797461521] - button +#. defaultMessage is: +#. Invite staff member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "button" +msgid "Invite staff member" +msgstr "" + #. [src.productTypes.components.ProductTypeShipping.2143413921] - switch #. button #. defaultMessage is: @@ -4254,6 +4357,14 @@ msgctxt "voucher requirement" msgid "Minimum quantity of items" msgstr "" +#. [src.configuration.1233229030] +#. defaultMessage is: +#. Miscellaneous +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Miscellaneous" +msgstr "" + #. [src.attributes.components.AttributeDetails.3334509011] - product attribute #. type #. defaultMessage is: @@ -5086,6 +5197,14 @@ msgctxt "description" msgid "Order History" msgstr "" +#. [src.orders.components.OrderListFilter.2222765704] +#. defaultMessage is: +#. Order Status +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +msgctxt "description" +msgid "Order Status" +msgstr "" + #. [src.orders.components.OrderHistory.1230178536] - order history message #. defaultMessage is: #. Order address was updated @@ -5102,13 +5221,13 @@ msgctxt "order history message" msgid "Order confirmation was sent to customer" msgstr "" -#. [src.orders.views.1872939752] +#. [src.orders.views.OrderDraftList.1872939752] #. defaultMessage is: #. Order draft succesfully created #. [src.orders.views.OrderList.1872939752] #. defaultMessage is: #. Order draft succesfully created -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json #: build/locale/src/orders/views/OrderList/OrderList.json msgctxt "description" msgid "Order draft succesfully created" @@ -5773,6 +5892,14 @@ msgctxt "description" msgid "Product Name" msgstr "" +#. [src.configuration.3655543906] +#. defaultMessage is: +#. Product Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Product Settings" +msgstr "" + #. [src.discounts.components.DiscountProducts.4257289053] #. defaultMessage is: #. Product Type @@ -5931,12 +6058,12 @@ msgctxt "order history message" msgid "Products were added to draft order" msgstr "" -#. [src.orders.components.OrderHistory.2574162126] - order history message +#. [src.orders.components.OrderHistory.4067959693] - order history message #. defaultMessage is: -#. Products were removed from draft order +#. Products were deleted from draft order #: build/locale/src/orders/components/OrderHistory/OrderHistory.json msgctxt "order history message" -msgid "Products were removed from draft order" +msgid "Products were deleted from draft order" msgstr "" #. [src.properties] @@ -5963,10 +6090,10 @@ msgctxt "description" msgid "Provided email address does not exist in our database." msgstr "" -#. [src.collections.views.1547167026] - publish collections +#. [src.collections.views.CollectionList.1547167026] - publish collections #. defaultMessage is: #. Publish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "publish collections" msgid "Publish" msgstr "" @@ -6003,10 +6130,10 @@ msgctxt "dialog header" msgid "Publish Products" msgstr "" -#. [src.collections.views.2823425739] - dialog title +#. [src.collections.views.CollectionList.2823425739] - dialog title #. defaultMessage is: #. Publish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Publish collections" msgstr "" @@ -6180,6 +6307,18 @@ msgctxt "shipping method price" msgid "Rate Price" msgstr "" +#. [src.orders.components.OrderListFilter.2415661583] - order status +#. defaultMessage is: +#. Ready to Capture +#. [src.orders.views.OrderList.readyToCapture] - order status +#. defaultMessage is: +#. Ready to Capture +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +#: build/locale/src/orders/views/OrderList/filters.json +msgctxt "order status" +msgid "Ready to Capture" +msgstr "" + #. [src.customers.components.CustomerOrders.3878642352] - section header #. defaultMessage is: #. Recent orders @@ -6228,22 +6367,14 @@ msgctxt "switch button" msgid "Release all stock allocated to this order" msgstr "" -#. [src.auth.components.LoginPage.3182284913] - login -#. defaultMessage is: -#. Remember me -#: build/locale/src/auth/components/LoginPage/LoginPage.json -msgctxt "login" -msgid "Remember me" -msgstr "" - #. [src.categories.views.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. -#. [src.categories.views.3488150607] +#. [src.categories.views.CategoryList.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "description" msgid "Remember this will also delete all products assigned to this category." msgstr "" @@ -6256,39 +6387,6 @@ msgctxt "button" msgid "Remove" msgstr "ลบ" -#. [src.products.views.490753666] - dialog header -#. defaultMessage is: -#. Remove Image -#: build/locale/src/products/views/ProductImage.json -msgctxt "dialog header" -msgid "Remove Image" -msgstr "" - -#. [src.orders.components.OrderDraftCancelDialog.500287069] - dialog header -#. defaultMessage is: -#. Remove draft order -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "dialog header" -msgid "Remove draft order" -msgstr "" - -#. [src.shipping.views.ShippingZoneDetails.254167659] - unassign country, -#. dialog header -#. defaultMessage is: -#. Remove from shipping zone -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country, dialog header" -msgid "Remove from shipping zone" -msgstr "" - -#. [src.orders.views.3880993240] -#. defaultMessage is: -#. Removed draft orders -#: build/locale/src/orders/views/OrderDraftList.json -msgctxt "description" -msgid "Removed draft orders" -msgstr "" - #. [src.pages.views.1457312643] #. defaultMessage is: #. Removed page @@ -6454,6 +6552,18 @@ msgctxt "button" msgid "Save" msgstr "บันทึก" +#. [src.components.Filter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#. [src.components.TableFilter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#: build/locale/src/components/Filter/FilterSearch.json +#: build/locale/src/components/TableFilter/FilterChips.json +msgctxt "button" +msgid "Save Custom Search" +msgstr "" + #. [src.components.SaveFilterTabDialog.1514415736] - save filter tab, header #. defaultMessage is: #. Save Custom Search @@ -6462,14 +6572,6 @@ msgctxt "save filter tab, header" msgid "Save Custom Search" msgstr "" -#. [src.components.TableFilter.1514415736] - button -#. defaultMessage is: -#. Save Custom Search -#: build/locale/src/components/TableFilter/FilterChips.json -msgctxt "button" -msgid "Save Custom Search" -msgstr "" - #. [src.products.components.ProductVariantCreatePage.2853608829] - button #. defaultMessage is: #. Save variant @@ -6486,6 +6588,14 @@ msgctxt "description" msgid "Saved changes" msgstr "" +#. [src.attributes.components.AttributeListPage.3916653510] +#. defaultMessage is: +#. Search Attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "description" +msgid "Search Attribute" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.902296540] #. defaultMessage is: #. Search Attributes @@ -6502,10 +6612,30 @@ msgctxt "description" msgid "Search Categories" msgstr "" +#. [src.categories.components.CategoryListPage.3841025483] +#. defaultMessage is: +#. Search Category +#. [src.translations.components.TranslationsEntitiesListPage.3841025483] +#. defaultMessage is: +#. Search Category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Category" +msgstr "" + +#. [src.collections.components.CollectionListPage.4057224233] +#. defaultMessage is: +#. Search Collection #. [src.components.AssignCollectionDialog.4057224233] #. defaultMessage is: #. Search Collection +#. [src.translations.components.TranslationsEntitiesListPage.4057224233] +#. defaultMessage is: +#. Search Collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json #: build/locale/src/components/AssignCollectionDialog/AssignCollectionDialog.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json msgctxt "description" msgid "Search Collection" msgstr "" @@ -6518,6 +6648,14 @@ msgctxt "description" msgid "Search Countries" msgstr "" +#. [src.customers.components.CustomerListPage.1643417013] +#. defaultMessage is: +#. Search Customer +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "description" +msgid "Search Customer" +msgstr "" + #. [src.orders.components.OrderCustomer.2433460203] #. defaultMessage is: #. Search Customers @@ -6526,6 +6664,14 @@ msgctxt "description" msgid "Search Customers" msgstr "" +#. [src.orders.components.OrderDraftListPage.77765281] +#. defaultMessage is: +#. Search Draft +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "description" +msgid "Search Draft" +msgstr "" + #. [src.translations.components.TranslationsCategoriesPage.1406947243] #. defaultMessage is: #. Search Engine Description @@ -6606,6 +6752,34 @@ msgctxt "description" msgid "Search Orders..." msgstr "" +#. [src.translations.components.TranslationsEntitiesListPage.2559018090] +#. defaultMessage is: +#. Search Page +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Page" +msgstr "" + +#. [src.translations.components.TranslationsEntitiesListPage.2105464697] +#. defaultMessage is: +#. Search Product +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product" +msgstr "" + +#. [src.productTypes.components.ProductTypeListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#. [src.translations.components.TranslationsEntitiesListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product Type" +msgstr "" + #. [src.components.AssignProductDialog.2850255786] #. defaultMessage is: #. Search Products @@ -6618,14 +6792,46 @@ msgctxt "description" msgid "Search Products" msgstr "" -#. [src.products.components.ProductListPage.3550330425] +#. [src.products.components.ProductListFilter.3550330425] #. defaultMessage is: #. Search Products... -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Search Products..." msgstr "" +#. [src.discounts.components.SaleListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#. [src.translations.components.TranslationsEntitiesListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Sale" +msgstr "" + +#. [src.staff.components.StaffListPage.61043583] +#. defaultMessage is: +#. Search Staff Member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "description" +msgid "Search Staff Member" +msgstr "" + +#. [src.discounts.components.VoucherListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#. [src.translations.components.TranslationsEntitiesListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Voucher" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.524117994] #. defaultMessage is: #. Search by attribute name @@ -6732,10 +6938,10 @@ msgctxt "description" msgid "Select all orders where:" msgstr "" -#. [src.products.components.ProductListPage.1421689426] +#. [src.products.components.ProductListFilter.1421689426] #. defaultMessage is: #. Select all products where: -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Select all products where:" msgstr "" @@ -6821,6 +7027,14 @@ msgctxt "description" msgid "Set plugin as Active" msgstr "" +#. [src.components.VisibilityCard.292404896] +#. defaultMessage is: +#. Set publication date +#: build/locale/src/components/VisibilityCard/VisibilityCard.json +msgctxt "description" +msgid "Set publication date" +msgstr "" + #. [src.discounts.shipment] - voucher discount #. defaultMessage is: #. Shipment @@ -7086,6 +7300,14 @@ msgctxt "staff section name" msgid "Staff Members" msgstr "" +#. [src.configuration.3140151600] +#. defaultMessage is: +#. Staff Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Staff Settings" +msgstr "" + #. [src.standard] - tax rate #. defaultMessage is: #. Standard @@ -8070,10 +8292,10 @@ msgctxt "payment status" msgid "Unpaid" msgstr "" -#. [src.collections.views.2237014112] - unpublish collections +#. [src.collections.views.CollectionList.2237014112] - unpublish collections #. defaultMessage is: #. Unpublish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "unpublish collections" msgid "Unpublish" msgstr "" @@ -8110,10 +8332,10 @@ msgctxt "dialog header" msgid "Unpublish Products" msgstr "" -#. [src.collections.views.2637364047] - dialog title +#. [src.collections.views.CollectionList.2637364047] - dialog title #. defaultMessage is: #. Unpublish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Unpublish collections" msgstr "" @@ -8613,6 +8835,22 @@ msgctxt "description" msgid "ZIP / Postal code" msgstr "" +#. [src.productTypes.components.ProductTypeListPage.3479705616] - button +#. defaultMessage is: +#. create product type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "button" +msgid "create product type" +msgstr "" + +#. [src.staff.views.1308770978] - dialog header +#. defaultMessage is: +#. delete Staff User +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "dialog header" +msgid "delete Staff User" +msgstr "" + #. [orderPaymentVATDoesNotApply] - vat not included in order price #. defaultMessage is: #. does not apply @@ -8686,19 +8924,35 @@ msgctxt "product status is set as" msgid "is set as" msgstr "" -#. [src.staff.views.2240444792] - dialog header -#. defaultMessage is: -#. remove Staff User -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "dialog header" -msgid "remove Staff User" -msgstr "" - -#. [src.components.VisibilityCard.1815688500] +#. [src.collections.components.CollectionCreatePage.1815688500] - collection #. defaultMessage is: #. since {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.1815688500] - collection +#. defaultMessage is: +#. since {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "since {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.1815688500] - page +#. defaultMessage is: +#. since {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "since {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#. [src.products.components.ProductUpdatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "since {date}" msgstr "" @@ -8726,11 +8980,35 @@ msgctxt "weight" msgid "to {value} {unit}" msgstr "" -#. [src.components.VisibilityCard.2001551496] +#. [src.collections.components.CollectionCreatePage.2001551496] - collection #. defaultMessage is: #. will be visible from {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.2001551496] - collection +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "will be visible from {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.2001551496] - page +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "will be visible from {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#. [src.products.components.ProductUpdatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "will be visible from {date}" msgstr "" diff --git a/locale/tr.json b/locale/tr.json index 165b2bb72..b3156a385 100644 --- a/locale/tr.json +++ b/locale/tr.json @@ -1 +1 @@ -{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.350498821":"","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.2519239682":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"İsim","src.categories.components.CategoryProducts.636461959":"İsim","src.collections.components.CollectionProducts.636461959":"İsim","src.products.components.ProductDetailsForm.636461959":"İsim","src.collections.components.CollectionDetails.636461959":"İsim","src.components.ProductList.636461959":"İsim","src.discounts.components.SaleInfo.636461959":"İsim","src.discounts.components.SaleList.636461959":"İsim","src.discounts.components.SaleSummary.636461959":"İsim","menuItemDialogNameLabel":"İsim","src.products.components.ProductVariants.636461959":"İsim","src.shipping.components.ShippingZoneRates.636461959":"İsim","src.shipping.components.ShippingZonesList.636461959":"İsim","src.staff.components.StaffList.636461959":"İsim","src.translations.components.TranslationsEntitiesList.636461959":"İsim","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.254756045":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.3182284913":"","src.auth.components.LoginPage.109182747":"Giriş","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"","src.categories.views.2004894945":"","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.3229914152":"","src.categories.components.CategoryList.435697837":"","src.categories.components.CategoryList.2159874182":"Alt Kategoriler","src.categories.components.CategoryUpdatePage.2159874182":"Alt Kategoriler","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.228151782":"Kategori Ekle","src.categories.components.CategoryProducts.2968663655":"Ürünler","src.categories.components.CategoryUpdatePage.2968663655":"Ürünler","src.discounts.components.DiscountCategories.2968663655":"Ürünler","src.discounts.components.DiscountCollections.2968663655":"Ürünler","src.products":"Ürünler","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryProducts.3554578821":"Ürün ekle","src.categories.components.CategoryProductsCard.3554578821":"Ürün ekle","src.categories.components.CategoryProducts.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProducts.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.categories.components.CategoryProductsCard.4164156574":"","src.categories.views.1754466114":"","src.categories.views.1140231710":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.712767046":"","src.categories.views.299584400":"","src.categories.views.844574071":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.collections.components.CollectionCreatePage.3958681866":"Koleksiyon ekle","src.collections.components.CollectionListPage.3958681866":"Koleksiyon ekle","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"Uygunluk","src.availability":"","src.collections.components.CollectionList.3640454975":"Yayınlanan","src.collections.components.CollectionProducts.3640454975":"Yayınlanan","src.discounts.components.DiscountProducts.3640454975":"Yayınlanan","src.components.ProductList.3640454975":"Yayınlanan","src.products.components.ProductListPage.3640454975":"Yayınlanan","src.pages.components.PageList.3640454975":"Yayınlanan","src.products.views.ProductList.published":"Yayınlanan","src.collections.components.CollectionList.2341910657":"Yayınlanmayan","src.collections.components.CollectionProducts.2341910657":"Yayınlanmayan","src.discounts.components.DiscountProducts.2341910657":"Yayınlanmayan","src.components.ProductList.2341910657":"Yayınlanmayan","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.686910896":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"","src.collections.views.2402899582":"","src.collections.views.2237014112":"Yayından kaldır","src.pages.views.2237014112":"Yayından kaldır","src.products.views.ProductList.2237014112":"Yayından kaldır","src.collections.views.1547167026":"Yayınla","src.pages.views.1547167026":"Yayınla","src.products.views.ProductList.1547167026":"Yayınla","src.collections.views.2823425739":"","src.collections.views.1348793822":"","src.collections.views.2637364047":"","src.collections.views.3944356444":"","src.collections.views.3817188998":"","src.collections.views.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"Çıkış","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.4057224233":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"","src.components.ErrorMessageCard.2845142593":"","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.FilterBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"Ekle","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.ProductList.1134347598":"Ücret","src.orders.components.OrderDraftDetailsProducts.1134347598":"Ücret","src.orders.components.OrderFulfillment.1134347598":"Ücret","src.products.components.ProductListPage.1134347598":"Ücret","src.products.components.ProductPricing.1134347598":"Ücret","src.orders.components.OrderUnfulfilledItems.1134347598":"Ücret","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"Ücret","src.shipping.components.ShippingZoneRates.1134347598":"Ücret","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"Görünüm","src.pages.components.PageList.1459686496":"Görünüm","src.products.components.ProductListFilter.1459686496":"Görünüm","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"Gizlenmiş","src.products.views.ProductList.hidden":"Gizlenmiş","src.components.VisibilityCard.1815688500":"","src.components.VisibilityCard.2001551496":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","configurationMenuStaff":"","configurationMenuShipping":"","configurationMenuTaxes":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","src.customers.components.CustomerAddress.1320082647":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"Fatura adresi","src.customers.components.CustomerAddresses.3517722732":"Kargo adresi","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"Adres","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"Notlar","src.orders.components.OrderCustomerNote.1520756907":"Notlar","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"Not","src.customers.components.CustomerDetails.577013340":"Not","src.customers.components.CustomerCreatePage.1934221653":"Müşteri ekle","src.customers.components.CustomerListPage.1934221653":"Müşteri ekle","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerOrders.3878642352":"Son siparişler","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"Tarih","src.orders.components.OrderDraftList.4205493358":"Tarih","src.orders.components.OrderList.4205493358":"Tarih","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"Durum","src.orders.components.OrderListFilter.1756106276":"Durum","src.products.components.ProductListFilter.1756106276":"Durum","src.products.components.ProductVariants.1756106276":"Durum","src.customers.components.CustomerOrders.878013594":"Toplam","src.orders.components.OrderDraftDetailsProducts.878013594":"Toplam","src.orders.components.OrderDraftDetailsSummary.878013594":"Toplam","src.orders.components.OrderDraftList.878013594":"Toplam","src.orders.components.OrderFulfillment.878013594":"Toplam","src.orders.components.OrderUnfulfilledItems.878013594":"Toplam","src.orders.components.OrderList.878013594":"Toplam","src.orders.components.OrderPayment.878013594":"Toplam","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.1946482599":"","src.customers.views.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"Değer","src.discounts.components.SaleSummary.1148029984":"Değer","src.discounts.components.VoucherList.1148029984":"Değer","src.discounts.components.VoucherSummary.1148029984":"Değer","src.discounts.components.VoucherValue.1148029984":"Değer","src.products.components.ProductAttributes.1148029984":"Değer","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.1742771332":"","src.discounts.components.SalePricing.1099355007":"","src.products.components.ProductPricing.1099355007":"","src.products.components.ProductVariantPrice.1099355007":"","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"Ülkeler","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"Kod","src.discounts.components.VoucherSummary.78726751":"Kod","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.1536809153":"Kupon ekle","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"Özel ürünler","src.discounts.shipment":"Kargo yöntemi","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.2809303671":"","src.discounts.views.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.367317371":"","src.discounts.views.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"İptal et","src.orders.views.OrderList.3528672691":"İptal et","src.confirm":"","src.delete":"","src.edit":"Düzenle","src.manage":"","src.remove":"Kaldır","src.save":"Kaydet","src.show":"","src.undo":"","src.attributes":"Özellikler","src.products.components.ProductAttributes.4153345096":"Özellikler","src.categories":"Kategoriler","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"Koleksiyonlar","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"Konfigürasyon","src.customers":"Müşteriler","src.draftOrders":"","src.home":"Anasayfa","src.navigation":"Menü","src.orders":"Siparişler","src.pages":"Sayfalar","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"Satışlar","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"Vergiler","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"Vergiler","src.taxes.components.CountryListPage.3955023266":"Vergiler","src.translations":"","src.vouchers":"Kuponlar","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"","src.partiallyPaid":"","src.partiallyRefunded":"","src.refunded":"","src.unpaid":"","src.cancelled":"","src.draft":"Taslak:","src.fulfilled":"Tamamlanmış","src.orders.views.OrderList.fulfilled":"Tamamlanmış","src.orders.components.OrderListFilter.1712863026":"Tamamlanmış","src.partiallyFulfilled":"Kısmen tamamlanmış","src.unfulfilled":"Tamamlanmamış","src.orders.views.OrderList.unfulfilled":"Tamamlanmamış","src.orders.components.OrderListFilter.1751787272":"Tamamlanmamış","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","src.1395232177":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"Link","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"","src.orders.components.OrderDetailsPage.1854613983":"","src.orders.components.OrderDraftPage.1854613983":"","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"Müşteri","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"Müşteri","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"Kargo adresi ile aynı","src.orders.components.OrderCustomerEditDialog.1411666943":"Müşteri detaylarını düzenle","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.500287069":"Taslak siparişi kaldır","src.orders.components.OrderDraftCancelDialog.3199827590":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"Ürün","src.orders.components.OrderUnfulfilledItems.1895667608":"Ürün","src.orders.components.OrderDraftDetailsProducts.2796503714":"Adet","src.orders.components.OrderFulfillment.2796503714":"Adet","src.orders.components.OrderFulfillmentDialog.2796503714":"Adet","src.orders.components.OrderUnfulfilledItems.2796503714":"Adet","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"Ara toplam","src.orders.components.OrderPayment.781550514":"Ara toplam","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"Sipariş oluştur","src.orders.components.OrderListPage.2826235371":"Sipariş oluştur","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"Takip ekle","src.orders.components.OrderFulfillmentCancelDialog.732594284":"","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"Tamamlamayı iptal et","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"Barkod","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"Takip numarası","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.2574162126":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"Ödeme tamamlandı","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"Siparişiniz alındı","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"Ödeme","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2943502192":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"Kargo","src.productTypes.components.ProductTypeShipping.1325966144":"Kargo","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"Kargo","src.orders.components.OrderPayment.3768782744":"","src.orders.components.OrderPayment.2320183694":"","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"","src.orders.components.OrderPayment.2845258362":"Geri ödeme","src.orders.components.OrderPayment.2444197639":"","src.orders.components.OrderPayment.3500506678":"Ödendi olarak işaretle","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"Tutar","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.2775402904":"","src.products.components.ProductListPage.2775402904":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"Tamamla","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.3880993240":"","src.orders.views.1161115149":"","src.orders.views.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.755314116":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"Başlık","src.pages.components.PageList.1124600214":"Başlık","src.pages.components.PageInfo.1116746286":"İçerik","src.translations.components.TranslationsPagesPage.1116746286":"İçerik","src.pages.components.PageList.3478065224":"Jeton","src.pages.components.PageSlug.3478065224":"Jeton","src.productTypes.components.ProductTypeAttributes.3478065224":"Jeton","src.pages.components.PageList.3767550649":"","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.1767905232":"","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.3785394515":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"","src.products.components.ProductVariantImages.3240888698":"","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"","src.products.components.ProductVariantStock.3841616483":"","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListPage.821159718":"","src.products.components.ProductListPage.1421689426":"","src.products.components.ProductListPage.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"","prodictStockInventoryLabel":"","src.products.components.ProductVariantStock.3490038570":"","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"","src.products.components.ProductVariants.2153006789":"","src.products.components.ProductVariantNavigation.2845381934":"","src.products.components.ProductVariants.2845381934":"","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1542417144":"","src.products.views.1591632382":"","src.products.views.490753666":"","src.products.views.672103788":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.1694086800":"","src.products.views.ProductList.224127438":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.products.views.2178905289":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1756957616":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.889729490":"","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.4080551769":"","src.productTypes.views.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.352297149":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2474410767":"","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.254167659":"","src.shipping.views.ShippingZoneDetails.1790261672":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"Anahtar","src.siteSettings.components.SiteSettingsKeys.2446088470":"Anahtar","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.3490059488":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"İzinler","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.3247064221":"Aktif","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.802625341":"","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"Kullanıcı aktif","src.staff.views.2240444792":"","src.staff.views.2728048444":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file +{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"","src.attributes.components.AttributeDeleteDialog.3738429348":"Are you sure you want to delete?","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.3824684885":"","src.attributes.components.AttributeListPage.2417065806":"","src.attributes.components.AttributeListPage.3916653510":"","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.4048785456":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"İsim","src.categories.components.CategoryProductList.636461959":"İsim","src.components.ProductList.636461959":"İsim","src.products.components.ProductList.636461959":"İsim","src.collections.components.CollectionDetails.636461959":"İsim","src.collections.components.CollectionProducts.636461959":"İsim","src.products.components.ProductDetailsForm.636461959":"İsim","src.discounts.components.SaleInfo.636461959":"İsim","src.discounts.components.SaleList.636461959":"İsim","src.discounts.components.SaleSummary.636461959":"İsim","menuItemDialogNameLabel":"İsim","src.plugins.components.PluginsList.636461959":"İsim","src.products.components.ProductVariants.636461959":"İsim","src.shipping.components.ShippingZoneRates.636461959":"İsim","src.shipping.components.ShippingZonesList.636461959":"İsim","src.staff.components.StaffList.636461959":"İsim","src.translations.components.TranslationsEntitiesList.636461959":"İsim","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.351422234":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.109182747":"Giriş","src.auth.components.LoginPage.4028609483":"","src.auth.components.NewPasswordPage.1915811227":"","src.auth.components.NewPasswordPage.1254879564":"","src.auth.components.NewPasswordPage.2799926859":"","src.auth.components.NewPasswordPage.4253911811":"","src.auth.components.NewPasswordPage.2342634351":"","src.auth.components.ResetPasswordPage.2370700732":"","src.auth.components.ResetPasswordPage.3663311080":"","src.auth.components.ResetPasswordSuccessPage.4066297200":"","src.auth.components.ResetPasswordSuccessPage.2245157344":"","src.auth.views.2388238158":"","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"(İsteğe Bağlı)","src.collections.components.CollectionImage.3289097895":"(İsteğe Bağlı)","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"","src.categories.views.2004894945":"","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.2159874182":"Alt Kategoriler","src.categories.components.CategoryUpdatePage.2159874182":"Alt Kategoriler","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.1140231710":"","src.categories.views.1140231710":"","src.categories.components.CategoryListPage.4294878092":"","src.categories.components.CategoryListPage.3841025483":"","src.translations.components.TranslationsEntitiesListPage.3841025483":"","src.categories.components.CategoryProductList.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductList.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProductList.3640454975":"Yayınlanan","src.components.ProductList.3640454975":"Yayınlanan","src.products.components.ProductList.3640454975":"Yayınlanan","src.products.components.ProductListPage.3640454975":"Yayınlanan","productStatusLabel":"Yayınlanan","src.collections.components.CollectionList.3640454975":"Yayınlanan","src.collections.components.CollectionProducts.3640454975":"Yayınlanan","src.discounts.components.DiscountProducts.3640454975":"Yayınlanan","src.pages.components.PageList.3640454975":"Yayınlanan","src.products.views.ProductList.published":"Yayınlanan","src.categories.components.CategoryProductList.1134347598":"Ücret","src.orders.components.OrderFulfillment.1134347598":"Ücret","src.products.components.ProductList.1134347598":"Ücret","src.products.components.ProductListPage.1134347598":"Ücret","src.products.components.ProductPricing.1134347598":"Ücret","src.components.ProductList.1134347598":"Ücret","src.orders.components.OrderDraftDetailsProducts.1134347598":"Ücret","src.orders.components.OrderUnfulfilledItems.1134347598":"Ücret","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"Ücret","src.shipping.components.ShippingZoneRates.1134347598":"Ücret","src.categories.components.CategoryProductList.2341910657":"Yayınlanmayan","src.products.components.ProductList.2341910657":"Yayınlanmayan","src.collections.components.CollectionList.2341910657":"Yayınlanmayan","src.collections.components.CollectionProducts.2341910657":"Yayınlanmayan","src.discounts.components.DiscountProducts.2341910657":"Yayınlanmayan","src.components.ProductList.2341910657":"Yayınlanmayan","src.categories.components.CategoryProductList.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.products.components.ProductList.1657559629":"","src.categories.components.CategoryProducts.4164156574":"","src.categories.components.CategoryProducts.3554578821":"Ürün ekle","src.categories.components.CategoryUpdatePage.2968663655":"Ürünler","src.discounts.components.DiscountCategories.2968663655":"Ürünler","src.discounts.components.DiscountCollections.2968663655":"Ürünler","src.products":"Ürünler","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryUpdatePage.3229914152":"","src.categories.components.CategoryUpdatePage.770296100":"","src.categories.views.1754466114":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.CategoryList.3488150607":"","src.categories.views.712767046":"","src.categories.views.CategoryList.712767046":"","src.categories.views.299584400":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.categories.views.CategoryList.2144707585":"","src.collections.components.CollectionCreatePage.3958681866":"Koleksiyon ekle","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionCreatePage.2001551496":"","src.collections.components.CollectionDetailsPage.2001551496":"","src.pages.components.PageDetailsPage.2001551496":"","src.products.components.ProductCreatePage.2001551496":"","src.products.components.ProductUpdatePage.2001551496":"","src.collections.components.CollectionCreatePage.1815688500":"","src.collections.components.CollectionDetailsPage.1815688500":"","src.pages.components.PageDetailsPage.1815688500":"","src.products.components.ProductCreatePage.1815688500":"","src.products.components.ProductUpdatePage.1815688500":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"Uygunluk","src.availability":"","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionListPage.686910896":"","src.collections.views.686910896":"","src.collections.components.CollectionListPage.1631917001":"","src.collections.components.CollectionListPage.4057224233":"","src.components.AssignCollectionDialog.4057224233":"","src.translations.components.TranslationsEntitiesListPage.4057224233":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"","src.collections.views.2402899582":"","src.collections.views.CollectionList.2237014112":"Yayından kaldır","src.pages.views.2237014112":"Yayından kaldır","src.products.views.ProductList.2237014112":"Yayından kaldır","src.collections.views.CollectionList.1547167026":"Yayınla","src.pages.views.1547167026":"Yayınla","src.products.views.ProductList.1547167026":"Yayınla","src.collections.views.CollectionList.2823425739":"","src.collections.views.CollectionList.1348793822":"","src.collections.views.CollectionList.2637364047":"","src.collections.views.CollectionList.3944356444":"","src.collections.views.CollectionList.3817188998":"","src.collections.views.CollectionList.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"Çıkış","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"","src.components.ErrorMessageCard.2845142593":"","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.Filter.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.Filter.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.FilterBar.2340527467":"","src.components.SearchBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"Ekle","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"Görünüm","src.pages.components.PageList.1459686496":"Görünüm","src.products.components.ProductListFilter.1459686496":"Görünüm","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"Gizlenmiş","src.products.views.ProductList.hidden":"Gizlenmiş","src.components.VisibilityCard.292404896":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","src.configuration.2326418019":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","src.configuration.3655543906":"","configurationMenuShipping":"","configurationMenuTaxes":"","src.configuration.3140151600":"","configurationMenuStaff":"","src.configuration.1233229030":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","configurationPluginsPages":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"Fatura adresi","src.customers.components.CustomerAddresses.3517722732":"Kargo adresi","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"Adres","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"Notlar","src.orders.components.OrderCustomerNote.1520756907":"Notlar","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"Not","src.customers.components.CustomerDetails.577013340":"Not","src.customers.components.CustomerCreatePage.1934221653":"Müşteri ekle","src.customers.components.CustomerListPage.1934221653":"Müşteri ekle","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerListPage.477293306":"","src.customers.components.CustomerListPage.1643417013":"","src.customers.components.CustomerOrders.3878642352":"Son siparişler","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"Tarih","src.orders.components.OrderDraftList.4205493358":"Tarih","src.orders.components.OrderList.4205493358":"Tarih","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"Durum","src.orders.components.OrderListFilter.1756106276":"Durum","src.plugins.components.PluginInfo.1756106276":"Durum","src.products.components.ProductListFilter.1756106276":"Durum","src.products.components.ProductVariants.1756106276":"Durum","src.customers.components.CustomerOrders.878013594":"Toplam","src.orders.components.OrderDraftDetailsProducts.878013594":"Toplam","src.orders.components.OrderDraftDetailsSummary.878013594":"Toplam","src.orders.components.OrderDraftList.878013594":"Toplam","src.orders.components.OrderFulfillment.878013594":"Toplam","src.orders.components.OrderUnfulfilledItems.878013594":"Toplam","src.orders.components.OrderList.878013594":"Toplam","src.orders.components.OrderPayment.878013594":"Toplam","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.CustomerList.1946482599":"","src.customers.views.CustomerList.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","src.discounts.components.SaleListPage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"Değer","src.discounts.components.SaleSummary.1148029984":"Değer","src.discounts.components.VoucherList.1148029984":"Değer","src.discounts.components.VoucherSummary.1148029984":"Değer","src.discounts.components.VoucherValue.1148029984":"Değer","src.products.components.ProductAttributes.1148029984":"Değer","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.3907768880":"","src.discounts.components.SaleListPage.1866913828":"","src.translations.components.TranslationsEntitiesListPage.1866913828":"","src.discounts.components.SalePricing.1099355007":"","src.products.components.ProductPricing.1099355007":"","src.products.components.ProductVariantPrice.1099355007":"","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"Ülkeler","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"Kod","src.discounts.components.VoucherSummary.78726751":"Kod","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.614836274":"","src.discounts.components.VoucherListPage.1112241061":"","src.discounts.components.VoucherListPage.1930485532":"","src.translations.components.TranslationsEntitiesListPage.1930485532":"","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"Özel ürünler","src.discounts.shipment":"Kargo yöntemi","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.SaleList.2809303671":"","src.discounts.views.SaleList.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.VoucherList.367317371":"","src.discounts.views.VoucherList.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.somethingWentWrong":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"İptal et","src.orders.views.OrderList.3528672691":"İptal et","src.confirm":"","src.delete":"","src.edit":"Düzenle","src.manage":"","src.remove":"Kaldır","src.save":"Kaydet","src.show":"","src.undo":"","src.attributes":"Özellikler","src.products.components.ProductAttributes.4153345096":"Özellikler","src.categories":"Kategoriler","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"Koleksiyonlar","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"Konfigürasyon","src.customers":"Müşteriler","src.draftOrders":"","src.home":"Anasayfa","src.navigation":"Menü","src.orders":"Siparişler","src.pages":"Sayfalar","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.plugins":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"Satışlar","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"Vergiler","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"Vergiler","src.taxes.components.CountryListPage.3955023266":"Vergiler","src.translations":"","src.vouchers":"Kuponlar","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"","src.partiallyPaid":"","src.partiallyRefunded":"","src.refunded":"","src.unpaid":"","src.cancelled":"","src.draft":"Taslak:","src.fulfilled":"Tamamlanmış","src.orders.views.OrderList.fulfilled":"Tamamlanmış","src.orders.components.OrderListFilter.1712863026":"Tamamlanmış","src.partiallyFulfilled":"Kısmen tamamlanmış","src.unfulfilled":"Tamamlanmamış","src.orders.views.OrderList.unfulfilled":"Tamamlanmamış","src.orders.components.OrderListFilter.1751787272":"Tamamlanmamış","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"Link","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"","src.orders.components.OrderDetailsPage.1854613983":"","src.orders.components.OrderDraftPage.1854613983":"","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"Müşteri","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"Müşteri","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"Kargo adresi ile aynı","src.orders.components.OrderCustomerEditDialog.1411666943":"Müşteri detaylarını düzenle","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.632633254":"","src.orders.components.OrderDraftCancelDialog.36681973":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"Ürün","src.orders.components.OrderUnfulfilledItems.1895667608":"Ürün","src.orders.components.OrderDraftDetailsProducts.2796503714":"Adet","src.orders.components.OrderFulfillment.2796503714":"Adet","src.orders.components.OrderFulfillmentDialog.2796503714":"Adet","src.orders.components.OrderUnfulfilledItems.2796503714":"Adet","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"Ara toplam","src.orders.components.OrderPayment.781550514":"Ara toplam","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"Sipariş oluştur","src.orders.components.OrderListPage.2826235371":"Sipariş oluştur","src.orders.components.OrderDraftListPage.551325728":"","src.orders.components.OrderDraftListPage.77765281":"","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"Takip ekle","src.orders.components.OrderFulfillmentCancelDialog.732594284":"","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"Tamamlamayı iptal et","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"Barkod","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"Takip numarası","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.4067959693":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"Ödeme tamamlandı","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"Siparişiniz alındı","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"Ödeme","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2415661583":"","src.orders.views.OrderList.readyToCapture":"","src.orders.components.OrderListFilter.2222765704":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"Kargo","src.productTypes.components.ProductTypeShipping.1325966144":"Kargo","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"Kargo","src.orders.components.OrderPayment.3768782744":"","src.orders.components.OrderPayment.2320183694":"","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"","src.orders.components.OrderPayment.2845258362":"Geri ödeme","src.orders.components.OrderPayment.2444197639":"","src.orders.components.OrderPayment.3500506678":"Ödendi olarak işaretle","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"Tutar","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.1542417144":"","src.products.components.ProductListPage.1542417144":"","src.products.views.1542417144":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"Tamamla","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.OrderDraftList.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.OrderDraftList.1648805446":"","src.orders.views.OrderDraftList.1161115149":"","src.orders.views.OrderDraftList.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.1068617485":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"Başlık","src.pages.components.PageList.1124600214":"Başlık","src.pages.components.PageInfo.1116746286":"İçerik","src.translations.components.TranslationsPagesPage.1116746286":"İçerik","src.pages.components.PageList.3478065224":"Jeton","src.pages.components.PageSlug.3478065224":"Jeton","src.productTypes.components.ProductTypeAttributes.3478065224":"Jeton","src.pages.components.PageList.3767550649":"","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.3785394515":"","src.pages.views.3785394515":"","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.plugins.components.PluginInfo.3425535100":"","src.plugins.components.PluginsDetailsPage.3425535100":"","src.plugins.components.PluginInfo.1049131348":"","src.plugins.components.PluginInfo.4013064767":"","src.plugins.components.PluginsDetailsPage.3352026836":"","src.plugins.components.PluginsDetailsPage.2277745418":"","src.plugins.components.PluginsDetailsPage.1970881031":"","src.plugins.components.PluginSettings.1970881031":"","src.plugins.components.PluginsDetailsPage.4241018152":"","src.plugins.components.PluginsList.3247064221":"Aktif","src.staff.components.StaffList.3247064221":"Aktif","src.plugins.components.PluginsList.4120604650":"Aksiyon","src.plugins.components.PluginsList.666641390":"","src.plugins.views.100549097":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"","src.products.components.ProductVariantImages.3240888698":"","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"","src.products.components.ProductVariantStock.3841616483":"","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListFilter.821159718":"","src.products.components.ProductListFilter.1421689426":"","src.products.components.ProductListFilter.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"","prodictStockInventoryLabel":"","src.products.components.ProductVariantStock.3490038570":"","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"","src.products.components.ProductVariants.2153006789":"","src.products.components.ProductVariantNavigation.2845381934":"","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.3989383405":"","src.products.views.3989383405":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1591632382":"","src.products.views.1731766393":"","src.products.views.2880386427":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1217376589":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.3479705616":"","src.productTypes.components.ProductTypeListPage.1776073799":"","src.productTypes.components.ProductTypeListPage.3420445375":"","src.translations.components.TranslationsEntitiesListPage.3420445375":"","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.ProductTypeList.4080551769":"","src.productTypes.views.ProductTypeList.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRates.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2673544109":"","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.1947090060":"","src.shipping.views.ShippingZoneDetails.131963671":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"Anahtar","src.siteSettings.components.SiteSettingsKeys.2446088470":"Anahtar","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.1481503299":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"İzinler","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.797461521":"","src.staff.components.StaffListPage.2852350932":"","src.staff.components.StaffListPage.61043583":"","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"Kullanıcı aktif","src.staff.views.1308770978":"","src.staff.views.8878988":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.2105464697":"","src.translations.components.TranslationsEntitiesListPage.2559018090":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file diff --git a/locale/tr.po b/locale/tr.po index d52f750d3..412a53c1e 100644 --- a/locale/tr.po +++ b/locale/tr.po @@ -8,11 +8,12 @@ # Cihad GÜNDOĞDU , 2019 # Ömer Faruk Demirel , 2019 # Engin Öz , 2019 +# Oguzhan Inan , 2019 # msgid "" msgstr "" -"POT-Creation-Date: 2019-09-06T13:56:36.897Z\n" -"Last-Translator: Engin Öz , 2019\n" +"POT-Creation-Date: 2019-09-16T15:25:09.340Z\n" +"Last-Translator: Oguzhan Inan , 2019\n" "Language-Team: Turkish (https://www.transifex.com/mirumee/teams/34782/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,7 +33,7 @@ msgstr "" #: build/locale/src/collections/components/CollectionImage/CollectionImage.json msgctxt "field is optional" msgid "(Optional)" -msgstr "" +msgstr "(İsteğe Bağlı)" #. [src.products.components.ProductOrganization.2805838453] - field is #. optional @@ -74,7 +75,7 @@ msgstr "" #: build/locale/src/plugins/components/PluginsList/PluginsList.json msgctxt "user action bar" msgid "Action" -msgstr "" +msgstr "Aksiyon" #. [src.plugins.components.PluginsList.3247064221] - plugin status #. defaultMessage is: @@ -149,22 +150,6 @@ msgctxt "create new menu item, header" msgid "Add Item" msgstr "" -#. [menuCreateDialogHeader] - dialog header -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json -msgctxt "dialog header" -msgid "Add Menu" -msgstr "" - -#. [menuListPageAddMenu] - button -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json -msgctxt "button" -msgid "Add Menu" -msgstr "" - #. [src.siteSettings.components.SiteSettingsKeyDialog.1238948746] - dialog #. header #. defaultMessage is: @@ -174,14 +159,6 @@ msgctxt "dialog header" msgid "Add New Authorization Key" msgstr "" -#. [src.pages.components.PageDetailsPage.755314116] - page header -#. defaultMessage is: -#. Add Page -#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json -msgctxt "page header" -msgid "Add Page" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.2892088870] - dialog header #. defaultMessage is: #. Add Price Rate @@ -190,38 +167,6 @@ msgctxt "dialog header" msgid "Add Price Rate" msgstr "" -#. [src.orders.components.OrderProductAddDialog.2775402904] - dialog header -#. defaultMessage is: -#. Add Product -#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json -msgctxt "dialog header" -msgid "Add Product" -msgstr "" - -#. [src.products.components.ProductListPage.2775402904] - button -#. defaultMessage is: -#. Add Product -#: build/locale/src/products/components/ProductListPage/ProductListPage.json -msgctxt "button" -msgid "Add Product" -msgstr "" - -#. [src.discounts.components.SaleListPage.1742771332] - button -#. defaultMessage is: -#. Add Sale -#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json -msgctxt "button" -msgid "Add Sale" -msgstr "" - -#. [src.staff.components.StaffAddMemberDialog.3490059488] - dialog header -#. defaultMessage is: -#. Add Staff Member -#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json -msgctxt "dialog header" -msgid "Add Staff Member" -msgstr "" - #. [src.attributes.components.AttributeValueEditDialog.1841790893] - add #. attribute value #. defaultMessage is: @@ -231,14 +176,6 @@ msgctxt "add attribute value" msgid "Add Value" msgstr "" -#. [src.products.views.2178905289] - header -#. defaultMessage is: -#. Add Variant -#: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "header" -msgid "Add Variant" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.1397795758] - add weight #. based shipping method, dialog header #. defaultMessage is: @@ -256,14 +193,6 @@ msgctxt "button" msgid "Add address" msgstr "" -#. [src.attributes.components.AttributeListPage.350498821] - button -#. defaultMessage is: -#. Add attribute -#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json -msgctxt "button" -msgid "Add attribute" -msgstr "" - #. [src.siteSettings.components.SiteSettingsKeyDialog.50561933] - button #. defaultMessage is: #. Add authentication @@ -272,14 +201,6 @@ msgctxt "button" msgid "Add authentication" msgstr "" -#. [src.categories.components.CategoryListPage.228151782] - button -#. defaultMessage is: -#. Add category -#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json -msgctxt "button" -msgid "Add category" -msgstr "Kategori Ekle" - #. [src.collections.components.CollectionCreatePage.3958681866] - page header #. defaultMessage is: #. Add collection @@ -288,14 +209,6 @@ msgctxt "page header" msgid "Add collection" msgstr "Koleksiyon ekle" -#. [src.collections.components.CollectionListPage.3958681866] - button -#. defaultMessage is: -#. Add collection -#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json -msgctxt "button" -msgid "Add collection" -msgstr "Koleksiyon ekle" - #. [src.customers.components.CustomerCreatePage.1934221653] - page header #. defaultMessage is: #. Add customer @@ -328,14 +241,6 @@ msgctxt "button" msgid "Add key" msgstr "" -#. [menuItemsAddItem] - add new menu item -#. defaultMessage is: -#. Add new item -#: build/locale/src/navigation/components/MenuItems/MenuItems.json -msgctxt "add new menu item" -msgid "Add new item" -msgstr "" - #. [menuItemsPlaceholder] #. defaultMessage is: #. Add new menu item to begin creating menu @@ -370,14 +275,6 @@ msgctxt "button" msgid "Add or Edit Link" msgstr "" -#. [src.pages.components.PageListPage.1767905232] - button -#. defaultMessage is: -#. Add page -#: build/locale/src/pages/components/PageListPage/PageListPage.json -msgctxt "button" -msgid "Add page" -msgstr "" - #. [src.categories.components.CategoryProducts.3554578821] - button #. defaultMessage is: #. Add product @@ -386,14 +283,6 @@ msgctxt "button" msgid "Add product" msgstr "Ürün ekle" -#. [src.productTypes.components.ProductTypeListPage.889729490] - button -#. defaultMessage is: -#. Add product type -#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json -msgctxt "button" -msgid "Add product type" -msgstr "" - #. [src.orders.components.OrderDraftDetails.2528459381] - button #. defaultMessage is: #. Add products @@ -402,14 +291,6 @@ msgctxt "button" msgid "Add products" msgstr "" -#. [src.shipping.components.ShippingZoneRates.352297149] - button -#. defaultMessage is: -#. Add rate -#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json -msgctxt "button" -msgid "Add rate" -msgstr "" - #. [src.categories.components.CategoryCreatePage.2563994280] #. defaultMessage is: #. Add search engine title and description to make this category easier to @@ -471,30 +352,6 @@ msgctxt "button" msgid "Add shipping carrier" msgstr "" -#. [src.shipping.components.ShippingZonesList.2474410767] - button -#. defaultMessage is: -#. Add shipping zone -#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json -msgctxt "button" -msgid "Add shipping zone" -msgstr "" - -#. [src.staff.components.StaffListPage.802625341] - button -#. defaultMessage is: -#. Add staff member -#: build/locale/src/staff/components/StaffListPage/StaffListPage.json -msgctxt "button" -msgid "Add staff member" -msgstr "" - -#. [src.categories.components.CategoryList.435697837] - button -#. defaultMessage is: -#. Add subcategory -#: build/locale/src/categories/components/CategoryList/CategoryList.json -msgctxt "button" -msgid "Add subcategory" -msgstr "" - #. [src.attributes.components.AttributeProperties.673770329] - add attribute #. as column in product list table #. defaultMessage is: @@ -522,35 +379,14 @@ msgctxt "dialog header" msgid "Add tracking code" msgstr "" -#. [src.attributes.components.AttributeValues.254756045] - add attribute value -#. button -#. defaultMessage is: -#. Add value -#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json -msgctxt "add attribute value button" -msgid "Add value" -msgstr "" - #. [src.products.components.ProductVariantNavigation.2845381934] - button #. defaultMessage is: #. Add variant -#. [src.products.components.ProductVariants.2845381934] - button -#. defaultMessage is: -#. Add variant #: build/locale/src/products/components/ProductVariantNavigation/ProductVariantNavigation.json -#: build/locale/src/products/components/ProductVariants/ProductVariants.json msgctxt "button" msgid "Add variant" msgstr "" -#. [src.discounts.components.VoucherListPage.1536809153] - button -#. defaultMessage is: -#. Add voucher -#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json -msgctxt "button" -msgid "Add voucher" -msgstr "Kupon ekle" - #. [src.attributes.views.AttributeDetails.634268988] - added new attribute #. value #. defaultMessage is: @@ -608,14 +444,6 @@ msgctxt "description" msgid "Address line 2" msgstr "" -#. [src.customers.components.CustomerAddress.1320082647] - addres card header -#. defaultMessage is: -#. Address {addressNumber} -#: build/locale/src/customers/components/CustomerAddress/CustomerAddress.json -msgctxt "addres card header" -msgid "Address {addressNumber}" -msgstr "" - #. [src.attributes.components.AttributeValues.1565474525] - attribute values #. list: slug column header #. defaultMessage is: @@ -665,6 +493,46 @@ msgctxt "tax rate" msgid "Agricultural supplies" msgstr "" +#. [src.attributes.components.AttributeListPage.2417065806] - tab name +#. defaultMessage is: +#. All Attributes +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "tab name" +msgid "All Attributes" +msgstr "" + +#. [src.categories.components.CategoryListPage.4294878092] - tab name +#. defaultMessage is: +#. All Categories +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "tab name" +msgid "All Categories" +msgstr "" + +#. [src.collections.components.CollectionListPage.1631917001] - tab name +#. defaultMessage is: +#. All Collections +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "tab name" +msgid "All Collections" +msgstr "" + +#. [src.customers.components.CustomerListPage.477293306] - tab name +#. defaultMessage is: +#. All Customers +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "tab name" +msgid "All Customers" +msgstr "" + +#. [src.orders.components.OrderDraftListPage.551325728] - tab name +#. defaultMessage is: +#. All Drafts +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "tab name" +msgid "All Drafts" +msgstr "" + #. [src.orders.components.OrderListPage.875489544] - tab name #. defaultMessage is: #. All Orders @@ -682,22 +550,54 @@ msgctxt "section header" msgid "All Photos" msgstr "" -#. [src.products.components.ProductListPage.821159718] - tab name +#. [src.productTypes.components.ProductTypeListPage.1776073799] - tab name +#. defaultMessage is: +#. All Product Types +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "tab name" +msgid "All Product Types" +msgstr "" + +#. [src.products.components.ProductListFilter.821159718] - tab name #. defaultMessage is: #. All Products -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "tab name" msgid "All Products" msgstr "" -#. [src.categories.components.CategoryList.3229914152] - section header +#. [src.discounts.components.SaleListPage.3907768880] - tab name +#. defaultMessage is: +#. All Sales +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "tab name" +msgid "All Sales" +msgstr "" + +#. [src.staff.components.StaffListPage.2852350932] - tab name +#. defaultMessage is: +#. All Staff Members +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "tab name" +msgid "All Staff Members" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.3229914152] - section header #. defaultMessage is: #. All Subcategories -#: build/locale/src/categories/components/CategoryList/CategoryList.json +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json msgctxt "section header" msgid "All Subcategories" msgstr "" +#. [src.discounts.components.VoucherListPage.1112241061] - tab name +#. defaultMessage is: +#. All Vouchers +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "tab name" +msgid "All Vouchers" +msgstr "" + #. [src.taxes.components.TaxConfiguration.142803418] #. defaultMessage is: #. All products prices are entered with tax included @@ -805,6 +705,14 @@ msgctxt "description" msgid "Are you sure you want to delete collection's image?" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.36681973] +#. defaultMessage is: +#. Are you sure you want to delete draft #{number}? +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "description" +msgid "Are you sure you want to delete draft #{number}?" +msgstr "" + #. [menuDetailsDeleteMenuContent] #. defaultMessage is: #. Are you sure you want to delete menu {menuName}? @@ -821,6 +729,14 @@ msgctxt "description" msgid "Are you sure you want to delete this address from users address book?" msgstr "" +#. [src.products.views.2880386427] +#. defaultMessage is: +#. Are you sure you want to delete this image? +#: build/locale/src/products/views/ProductImage.json +msgctxt "description" +msgid "Are you sure you want to delete this image?" +msgstr "" + #. [src.attributes.components.AttributeDeleteDialog.3738429348] - dialog #. content #. defaultMessage is: @@ -828,7 +744,7 @@ msgstr "" #: build/locale/src/attributes/components/AttributeDeleteDialog/AttributeDeleteDialog.json msgctxt "dialog content" msgid "Are you sure you want to delete {attributeName}?" -msgstr "" +msgstr "Are you sure you want to delete?" #. [src.categories.components.CategoryDeleteDialog.847492725] - delete #. category @@ -871,12 +787,7 @@ msgstr "" #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this attribute} #. other{{displayQuantity} categories}}? -#. [src.categories.views.844574071] -#. defaultMessage is: -#. Are you sure you want to delete {counter,plural,one{this attribute} -#. other{{displayQuantity} categories}}? #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this attribute} " @@ -894,22 +805,33 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.2497542455] +#. [src.categories.views.CategoryList.2144707585] +#. defaultMessage is: +#. Are you sure you want to delete {counter,plural,one{this category} +#. other{{displayQuantity} categories}}? +#: build/locale/src/categories/views/CategoryList/CategoryList.json +msgctxt "description" +msgid "" +"Are you sure you want to delete {counter,plural,one{this category} " +"other{{displayQuantity} categories}}?" +msgstr "" + +#. [src.collections.views.CollectionList.2497542455] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this collection} " "other{{displayQuantity} collections}}?" msgstr "" -#. [src.customers.views.409347866] +#. [src.customers.views.CustomerList.409347866] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this customer} #. other{{displayQuantity} customers}}? -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this customer} " @@ -927,11 +849,11 @@ msgid "" "other{{displayQuantity} menus}}?" msgstr "" -#. [src.orders.views.1389231130] - dialog content +#. [src.orders.views.OrderDraftList.1389231130] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this order draft} #. other{{displayQuantity} orderDrafts}}? -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this order draft} " @@ -949,11 +871,11 @@ msgid "" "other{{displayQuantity} pages}}?" msgstr "" -#. [src.productTypes.views.2294091098] - dialog content +#. [src.productTypes.views.ProductTypeList.2294091098] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this product type} #. other{{displayQuantity} product types}}? -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this product type} " @@ -971,11 +893,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.discounts.views.2516361175] - dialog content +#. [src.discounts.views.SaleList.2516361175] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this sale} #. other{{displayQuantity} sales}}? -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this sale} " @@ -1004,17 +926,33 @@ msgid "" "other{{displayQuantity} variants}}?" msgstr "" -#. [src.discounts.views.1791926983] - dialog content +#. [src.discounts.views.VoucherList.1791926983] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this voucher} #. other{{displayQuantity} vouchers}}? -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this voucher} " "other{{displayQuantity} vouchers}}?" msgstr "" +#. [src.shipping.views.ShippingZoneDetails.131963671] - unassign country +#. defaultMessage is: +#. Are you sure you want to delete {countryName} from this shipping zone? +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country" +msgid "Are you sure you want to delete {countryName} from this shipping zone?" +msgstr "" + +#. [src.staff.views.8878988] +#. defaultMessage is: +#. Are you sure you want to delete {email} from staff members? +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "description" +msgid "Are you sure you want to delete {email} from staff members?" +msgstr "" + #. [src.customers.views.1927691511] - delete customer, dialog content #. defaultMessage is: #. Are you sure you want to delete {email}? @@ -1129,11 +1067,11 @@ msgctxt "description" msgid "Are you sure you want to mark this order as paid?" msgstr "" -#. [src.collections.views.1348793822] +#. [src.collections.views.CollectionList.1348793822] #. defaultMessage is: #. Are you sure you want to publish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to publish {counter,plural,one{this collection} " @@ -1162,30 +1100,6 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.orders.components.OrderDraftCancelDialog.3199827590] -#. defaultMessage is: -#. Are you sure you want to remove draft #{number}? -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "description" -msgid "Are you sure you want to remove draft #{number}?" -msgstr "" - -#. [src.products.views.672103788] -#. defaultMessage is: -#. Are you sure you want to remove this image? -#: build/locale/src/products/views/ProductImage.json -msgctxt "description" -msgid "Are you sure you want to remove this image?" -msgstr "" - -#. [src.shipping.views.ShippingZoneDetails.1790261672] - unassign country -#. defaultMessage is: -#. Are you sure you want to remove {countryName} from this shipping zone? -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country" -msgid "Are you sure you want to remove {countryName} from this shipping zone?" -msgstr "" - #. [src.staff.views.3945766678] #. defaultMessage is: #. Are you sure you want to remove {email} avatar? @@ -1194,14 +1108,6 @@ msgctxt "description" msgid "Are you sure you want to remove {email} avatar?" msgstr "" -#. [src.staff.views.2728048444] -#. defaultMessage is: -#. Are you sure you want to remove {email} from staff members? -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "description" -msgid "Are you sure you want to remove {email} from staff members?" -msgstr "" - #. [src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450] #. defaultMessage is: #. Are you sure you want to unassign {attributeName} from {productTypeName}? @@ -1282,11 +1188,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.3944356444] +#. [src.collections.views.CollectionList.3944356444] #. defaultMessage is: #. Are you sure you want to unpublish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to unpublish {counter,plural,one{this collection} " @@ -1447,6 +1353,15 @@ msgctxt "button" msgid "Assign products" msgstr "" +#. [src.attributes.components.AttributeValues.351422234] - assign attribute +#. value button +#. defaultMessage is: +#. Assign value +#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json +msgctxt "assign attribute value button" +msgid "Assign value" +msgstr "" + #. [src.attributes.components.AttributeDetails.3605174225] - attribute's slug #. short code label #. defaultMessage is: @@ -1525,6 +1440,14 @@ msgctxt "product attributes, section header" msgid "Attributes" msgstr "Özellikler" +#. [src.configuration.2326418019] +#. defaultMessage is: +#. Attributes and Product Typess +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Attributes and Product Typess" +msgstr "" + #. [src.attributes.views.AttributeList.3218248395] - deleted multiple #. attributes #. defaultMessage is: @@ -2308,6 +2231,22 @@ msgctxt "description" msgid "Country area" msgstr "" +#. [menuCreateDialogHeader] - dialog header +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json +msgctxt "dialog header" +msgid "Create Menu" +msgstr "" + +#. [menuListPageAddMenu] - button +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json +msgctxt "button" +msgid "Create Menu" +msgstr "" + #. [src.attributes.components.AttributePage.2855501559] - page title #. defaultMessage is: #. Create New Attribute @@ -2332,6 +2271,30 @@ msgctxt "header" msgid "Create New Shipping Zone" msgstr "" +#. [src.pages.components.PageDetailsPage.1068617485] - page header +#. defaultMessage is: +#. Create Page +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page header" +msgid "Create Page" +msgstr "" + +#. [src.orders.components.OrderProductAddDialog.1542417144] - dialog header +#. defaultMessage is: +#. Create Product +#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json +msgctxt "dialog header" +msgid "Create Product" +msgstr "" + +#. [src.products.components.ProductListPage.1542417144] - button +#. defaultMessage is: +#. Create Product +#: build/locale/src/products/components/ProductListPage/ProductListPage.json +msgctxt "button" +msgid "Create Product" +msgstr "" + #. [src.products.views.1542417144] - window title #. defaultMessage is: #. Create Product @@ -2364,11 +2327,19 @@ msgctxt "page header" msgid "Create Sale" msgstr "" -#. [src.products.views.2362587265] - window title +#. [src.discounts.components.SaleListPage.3866518732] - button +#. defaultMessage is: +#. Create Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "button" +msgid "Create Sale" +msgstr "" + +#. [src.products.views.2362587265] - header #. defaultMessage is: #. Create Variant #: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "window title" +msgctxt "header" msgid "Create Variant" msgstr "" @@ -2380,6 +2351,22 @@ msgctxt "page header" msgid "Create Voucher" msgstr "" +#. [src.attributes.components.AttributeListPage.3824684885] - button +#. defaultMessage is: +#. Create attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "button" +msgid "Create attribute" +msgstr "" + +#. [src.categories.components.CategoryListPage.1140231710] - button +#. defaultMessage is: +#. Create category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "button" +msgid "Create category" +msgstr "" + #. [src.categories.views.1140231710] - window title #. defaultMessage is: #. Create category @@ -2388,6 +2375,14 @@ msgctxt "window title" msgid "Create category" msgstr "" +#. [src.collections.components.CollectionListPage.686910896] - button +#. defaultMessage is: +#. Create collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "button" +msgid "Create collection" +msgstr "" + #. [src.collections.views.686910896] - window title #. defaultMessage is: #. Create collection @@ -2404,6 +2399,14 @@ msgctxt "window title" msgid "Create customer" msgstr "" +#. [menuItemsAddItem] - add new menu item +#. defaultMessage is: +#. Create new item +#: build/locale/src/navigation/components/MenuItems/MenuItems.json +msgctxt "add new menu item" +msgid "Create new item" +msgstr "" + #. [src.orders.components.OrderDraftListPage.2826235371] - button #. defaultMessage is: #. Create order @@ -2416,6 +2419,14 @@ msgctxt "button" msgid "Create order" msgstr "Sipariş oluştur" +#. [src.pages.components.PageListPage.3785394515] - button +#. defaultMessage is: +#. Create page +#: build/locale/src/pages/components/PageListPage/PageListPage.json +msgctxt "button" +msgid "Create page" +msgstr "" + #. [src.pages.views.3785394515] - header #. defaultMessage is: #. Create page @@ -2427,11 +2438,55 @@ msgstr "" #. [src.shipping.components.ShippingZoneRateDialog.16061680] - button #. defaultMessage is: #. Create rate +#. [src.shipping.components.ShippingZoneRates.16061680] - button +#. defaultMessage is: +#. Create rate #: build/locale/src/shipping/components/ShippingZoneRateDialog/ShippingZoneRateDialog.json +#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json msgctxt "button" msgid "Create rate" msgstr "" +#. [src.shipping.components.ShippingZonesList.2673544109] - button +#. defaultMessage is: +#. Create shipping zone +#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json +msgctxt "button" +msgid "Create shipping zone" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.770296100] - button +#. defaultMessage is: +#. Create subcategory +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json +msgctxt "button" +msgid "Create subcategory" +msgstr "" + +#. [src.products.components.ProductVariants.3989383405] - button +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/components/ProductVariants/ProductVariants.json +msgctxt "button" +msgid "Create variant" +msgstr "" + +#. [src.products.views.3989383405] - window title +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/views/ProductVariantCreate.json +msgctxt "window title" +msgid "Create variant" +msgstr "" + +#. [src.discounts.components.VoucherListPage.614836274] - button +#. defaultMessage is: +#. Create voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "button" +msgid "Create voucher" +msgstr "" + #. [src.collections.views.1597339737] #. defaultMessage is: #. Created collection @@ -2478,7 +2533,11 @@ msgstr "" #. [src.components.FilterBar.2340527467] #. defaultMessage is: #. Custom Filter +#. [src.components.SearchBar.2340527467] +#. defaultMessage is: +#. Custom Filter #: build/locale/src/components/FilterBar/FilterBar.json +#: build/locale/src/components/SearchBar/SearchBar.json msgctxt "description" msgid "Custom Filter" msgstr "" @@ -2734,10 +2793,18 @@ msgctxt "dialog title" msgid "Delete Collection" msgstr "" -#. [src.orders.views.1161115149] - dialog header +#. [src.products.views.1731766393] - dialog header +#. defaultMessage is: +#. Delete Image +#: build/locale/src/products/views/ProductImage.json +msgctxt "dialog header" +msgid "Delete Image" +msgstr "" + +#. [src.orders.views.OrderDraftList.1161115149] - dialog header #. defaultMessage is: #. Delete Order Drafts -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog header" msgid "Delete Order Drafts" msgstr "" @@ -2775,10 +2842,10 @@ msgctxt "dialog header" msgid "Delete Product Type" msgstr "" -#. [src.productTypes.views.4080551769] - dialog header +#. [src.productTypes.views.ProductTypeList.4080551769] - dialog header #. defaultMessage is: #. Delete Product Types -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog header" msgid "Delete Product Types" msgstr "" @@ -2807,10 +2874,10 @@ msgctxt "dialog header" msgid "Delete Sale" msgstr "" -#. [src.discounts.views.2809303671] - dialog header +#. [src.discounts.views.SaleList.2809303671] - dialog header #. defaultMessage is: #. Delete Sales -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog header" msgid "Delete Sales" msgstr "" @@ -2824,9 +2891,13 @@ msgctxt "custom search delete, dialog header" msgid "Delete Search" msgstr "" +#. [src.components.Filter.2173195312] - button +#. defaultMessage is: +#. Delete Search #. [src.components.TableFilter.2173195312] - button #. defaultMessage is: #. Delete Search +#: build/locale/src/components/Filter/FilterSearch.json #: build/locale/src/components/TableFilter/FilterChips.json msgctxt "button" msgid "Delete Search" @@ -2893,10 +2964,10 @@ msgctxt "dialog header" msgid "Delete Voucher" msgstr "" -#. [src.discounts.views.367317371] - dialog header +#. [src.discounts.views.VoucherList.367317371] - dialog header #. defaultMessage is: #. Delete Vouchers -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog header" msgid "Delete Vouchers" msgstr "" @@ -2930,11 +3001,11 @@ msgstr "" #. [src.categories.views.712767046] - dialog title #. defaultMessage is: #. Delete categories -#. [src.categories.views.712767046] - dialog title +#. [src.categories.views.CategoryList.712767046] - dialog title #. defaultMessage is: #. Delete categories #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "dialog title" msgid "Delete categories" msgstr "" @@ -2951,10 +3022,10 @@ msgctxt "dialog title" msgid "Delete category" msgstr "" -#. [src.collections.views.3817188998] - dialog title +#. [src.collections.views.CollectionList.3817188998] - dialog title #. defaultMessage is: #. Delete collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Delete collections" msgstr "" @@ -2967,14 +3038,31 @@ msgctxt "dialog header" msgid "Delete customer" msgstr "" -#. [src.customers.views.1946482599] - dialog header +#. [src.customers.views.CustomerList.1946482599] - dialog header #. defaultMessage is: #. Delete customers -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "dialog header" msgid "Delete customers" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.632633254] - dialog header +#. defaultMessage is: +#. Delete draft order +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "dialog header" +msgid "Delete draft order" +msgstr "" + +#. [src.shipping.views.ShippingZoneDetails.1947090060] - unassign country, +#. dialog header +#. defaultMessage is: +#. Delete from shipping zone +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country, dialog header" +msgid "Delete from shipping zone" +msgstr "" + #. [src.collections.views.942133001] - dialog title #. defaultMessage is: #. Delete image @@ -3035,6 +3123,14 @@ msgctxt "description" msgid "Deleted collection" msgstr "Koleksiyon silindi" +#. [src.orders.views.OrderDraftList.1648805446] +#. defaultMessage is: +#. Deleted draft orders +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json +msgctxt "description" +msgid "Deleted draft orders" +msgstr "" + #. [menuListDeletedMenu] #. defaultMessage is: #. Deleted menu @@ -3634,14 +3730,6 @@ msgctxt "order history message" msgid "Fulfilled {quantity} items" msgstr "" -#. [src.orders.components.OrderListFilter.2943502192] - order -#. defaultMessage is: -#. Fulfillment Status -#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json -msgctxt "order" -msgid "Fulfillment Status" -msgstr "" - #. [src.orders.components.OrderHistory.3081292385] - order history message #. defaultMessage is: #. Fulfillment confirmation was sent to customer @@ -3798,12 +3886,12 @@ msgctxt "description" msgid "If empty, the preview shows what will be autogenerated." msgstr "Eğer boşsa, önizleme otomatik üretileni göstersin." -#. [src.attributes.components.AttributeProperties.2519239682] +#. [src.attributes.components.AttributeProperties.4048785456] #. defaultMessage is: -#. If enable this attribute can be used as a column in product table. +#. If enabled this attribute can be used as a column in product table. #: build/locale/src/attributes/components/AttributeProperties/AttributeProperties.json msgctxt "description" -msgid "If enable this attribute can be used as a column in product table." +msgid "If enabled this attribute can be used as a column in product table." msgstr "" #. [src.attributes.components.AttributeProperties.787251583] @@ -3909,6 +3997,22 @@ msgctxt "product variant stock" msgid "Inventory" msgstr "" +#. [src.staff.components.StaffAddMemberDialog.1481503299] - dialog header +#. defaultMessage is: +#. Invite Staff Member +#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json +msgctxt "dialog header" +msgid "Invite Staff Member" +msgstr "" + +#. [src.staff.components.StaffListPage.797461521] - button +#. defaultMessage is: +#. Invite staff member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "button" +msgid "Invite staff member" +msgstr "" + #. [src.productTypes.components.ProductTypeShipping.2143413921] - switch #. button #. defaultMessage is: @@ -4261,6 +4365,14 @@ msgctxt "voucher requirement" msgid "Minimum quantity of items" msgstr "" +#. [src.configuration.1233229030] +#. defaultMessage is: +#. Miscellaneous +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Miscellaneous" +msgstr "" + #. [src.attributes.components.AttributeDetails.3334509011] - product attribute #. type #. defaultMessage is: @@ -5093,6 +5205,14 @@ msgctxt "description" msgid "Order History" msgstr "" +#. [src.orders.components.OrderListFilter.2222765704] +#. defaultMessage is: +#. Order Status +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +msgctxt "description" +msgid "Order Status" +msgstr "" + #. [src.orders.components.OrderHistory.1230178536] - order history message #. defaultMessage is: #. Order address was updated @@ -5109,13 +5229,13 @@ msgctxt "order history message" msgid "Order confirmation was sent to customer" msgstr "" -#. [src.orders.views.1872939752] +#. [src.orders.views.OrderDraftList.1872939752] #. defaultMessage is: #. Order draft succesfully created #. [src.orders.views.OrderList.1872939752] #. defaultMessage is: #. Order draft succesfully created -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json #: build/locale/src/orders/views/OrderList/OrderList.json msgctxt "description" msgid "Order draft succesfully created" @@ -5780,6 +5900,14 @@ msgctxt "description" msgid "Product Name" msgstr "" +#. [src.configuration.3655543906] +#. defaultMessage is: +#. Product Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Product Settings" +msgstr "" + #. [src.discounts.components.DiscountProducts.4257289053] #. defaultMessage is: #. Product Type @@ -5938,12 +6066,12 @@ msgctxt "order history message" msgid "Products were added to draft order" msgstr "" -#. [src.orders.components.OrderHistory.2574162126] - order history message +#. [src.orders.components.OrderHistory.4067959693] - order history message #. defaultMessage is: -#. Products were removed from draft order +#. Products were deleted from draft order #: build/locale/src/orders/components/OrderHistory/OrderHistory.json msgctxt "order history message" -msgid "Products were removed from draft order" +msgid "Products were deleted from draft order" msgstr "" #. [src.properties] @@ -5970,10 +6098,10 @@ msgctxt "description" msgid "Provided email address does not exist in our database." msgstr "" -#. [src.collections.views.1547167026] - publish collections +#. [src.collections.views.CollectionList.1547167026] - publish collections #. defaultMessage is: #. Publish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "publish collections" msgid "Publish" msgstr "Yayınla" @@ -6010,10 +6138,10 @@ msgctxt "dialog header" msgid "Publish Products" msgstr "" -#. [src.collections.views.2823425739] - dialog title +#. [src.collections.views.CollectionList.2823425739] - dialog title #. defaultMessage is: #. Publish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Publish collections" msgstr "" @@ -6187,6 +6315,18 @@ msgctxt "shipping method price" msgid "Rate Price" msgstr "" +#. [src.orders.components.OrderListFilter.2415661583] - order status +#. defaultMessage is: +#. Ready to Capture +#. [src.orders.views.OrderList.readyToCapture] - order status +#. defaultMessage is: +#. Ready to Capture +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +#: build/locale/src/orders/views/OrderList/filters.json +msgctxt "order status" +msgid "Ready to Capture" +msgstr "" + #. [src.customers.components.CustomerOrders.3878642352] - section header #. defaultMessage is: #. Recent orders @@ -6235,22 +6375,14 @@ msgctxt "switch button" msgid "Release all stock allocated to this order" msgstr "" -#. [src.auth.components.LoginPage.3182284913] - login -#. defaultMessage is: -#. Remember me -#: build/locale/src/auth/components/LoginPage/LoginPage.json -msgctxt "login" -msgid "Remember me" -msgstr "" - #. [src.categories.views.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. -#. [src.categories.views.3488150607] +#. [src.categories.views.CategoryList.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "description" msgid "Remember this will also delete all products assigned to this category." msgstr "" @@ -6263,39 +6395,6 @@ msgctxt "button" msgid "Remove" msgstr "Kaldır" -#. [src.products.views.490753666] - dialog header -#. defaultMessage is: -#. Remove Image -#: build/locale/src/products/views/ProductImage.json -msgctxt "dialog header" -msgid "Remove Image" -msgstr "" - -#. [src.orders.components.OrderDraftCancelDialog.500287069] - dialog header -#. defaultMessage is: -#. Remove draft order -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "dialog header" -msgid "Remove draft order" -msgstr "Taslak siparişi kaldır" - -#. [src.shipping.views.ShippingZoneDetails.254167659] - unassign country, -#. dialog header -#. defaultMessage is: -#. Remove from shipping zone -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country, dialog header" -msgid "Remove from shipping zone" -msgstr "" - -#. [src.orders.views.3880993240] -#. defaultMessage is: -#. Removed draft orders -#: build/locale/src/orders/views/OrderDraftList.json -msgctxt "description" -msgid "Removed draft orders" -msgstr "" - #. [src.pages.views.1457312643] #. defaultMessage is: #. Removed page @@ -6461,6 +6560,18 @@ msgctxt "button" msgid "Save" msgstr "Kaydet" +#. [src.components.Filter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#. [src.components.TableFilter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#: build/locale/src/components/Filter/FilterSearch.json +#: build/locale/src/components/TableFilter/FilterChips.json +msgctxt "button" +msgid "Save Custom Search" +msgstr "" + #. [src.components.SaveFilterTabDialog.1514415736] - save filter tab, header #. defaultMessage is: #. Save Custom Search @@ -6469,14 +6580,6 @@ msgctxt "save filter tab, header" msgid "Save Custom Search" msgstr "" -#. [src.components.TableFilter.1514415736] - button -#. defaultMessage is: -#. Save Custom Search -#: build/locale/src/components/TableFilter/FilterChips.json -msgctxt "button" -msgid "Save Custom Search" -msgstr "" - #. [src.products.components.ProductVariantCreatePage.2853608829] - button #. defaultMessage is: #. Save variant @@ -6493,6 +6596,14 @@ msgctxt "description" msgid "Saved changes" msgstr "" +#. [src.attributes.components.AttributeListPage.3916653510] +#. defaultMessage is: +#. Search Attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "description" +msgid "Search Attribute" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.902296540] #. defaultMessage is: #. Search Attributes @@ -6509,10 +6620,30 @@ msgctxt "description" msgid "Search Categories" msgstr "" +#. [src.categories.components.CategoryListPage.3841025483] +#. defaultMessage is: +#. Search Category +#. [src.translations.components.TranslationsEntitiesListPage.3841025483] +#. defaultMessage is: +#. Search Category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Category" +msgstr "" + +#. [src.collections.components.CollectionListPage.4057224233] +#. defaultMessage is: +#. Search Collection #. [src.components.AssignCollectionDialog.4057224233] #. defaultMessage is: #. Search Collection +#. [src.translations.components.TranslationsEntitiesListPage.4057224233] +#. defaultMessage is: +#. Search Collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json #: build/locale/src/components/AssignCollectionDialog/AssignCollectionDialog.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json msgctxt "description" msgid "Search Collection" msgstr "" @@ -6525,6 +6656,14 @@ msgctxt "description" msgid "Search Countries" msgstr "" +#. [src.customers.components.CustomerListPage.1643417013] +#. defaultMessage is: +#. Search Customer +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "description" +msgid "Search Customer" +msgstr "" + #. [src.orders.components.OrderCustomer.2433460203] #. defaultMessage is: #. Search Customers @@ -6533,6 +6672,14 @@ msgctxt "description" msgid "Search Customers" msgstr "" +#. [src.orders.components.OrderDraftListPage.77765281] +#. defaultMessage is: +#. Search Draft +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "description" +msgid "Search Draft" +msgstr "" + #. [src.translations.components.TranslationsCategoriesPage.1406947243] #. defaultMessage is: #. Search Engine Description @@ -6613,6 +6760,34 @@ msgctxt "description" msgid "Search Orders..." msgstr "" +#. [src.translations.components.TranslationsEntitiesListPage.2559018090] +#. defaultMessage is: +#. Search Page +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Page" +msgstr "" + +#. [src.translations.components.TranslationsEntitiesListPage.2105464697] +#. defaultMessage is: +#. Search Product +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product" +msgstr "" + +#. [src.productTypes.components.ProductTypeListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#. [src.translations.components.TranslationsEntitiesListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product Type" +msgstr "" + #. [src.components.AssignProductDialog.2850255786] #. defaultMessage is: #. Search Products @@ -6625,14 +6800,46 @@ msgctxt "description" msgid "Search Products" msgstr "" -#. [src.products.components.ProductListPage.3550330425] +#. [src.products.components.ProductListFilter.3550330425] #. defaultMessage is: #. Search Products... -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Search Products..." msgstr "" +#. [src.discounts.components.SaleListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#. [src.translations.components.TranslationsEntitiesListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Sale" +msgstr "" + +#. [src.staff.components.StaffListPage.61043583] +#. defaultMessage is: +#. Search Staff Member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "description" +msgid "Search Staff Member" +msgstr "" + +#. [src.discounts.components.VoucherListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#. [src.translations.components.TranslationsEntitiesListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Voucher" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.524117994] #. defaultMessage is: #. Search by attribute name @@ -6739,10 +6946,10 @@ msgctxt "description" msgid "Select all orders where:" msgstr "" -#. [src.products.components.ProductListPage.1421689426] +#. [src.products.components.ProductListFilter.1421689426] #. defaultMessage is: #. Select all products where: -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Select all products where:" msgstr "" @@ -6828,6 +7035,14 @@ msgctxt "description" msgid "Set plugin as Active" msgstr "" +#. [src.components.VisibilityCard.292404896] +#. defaultMessage is: +#. Set publication date +#: build/locale/src/components/VisibilityCard/VisibilityCard.json +msgctxt "description" +msgid "Set publication date" +msgstr "" + #. [src.discounts.shipment] - voucher discount #. defaultMessage is: #. Shipment @@ -7093,6 +7308,14 @@ msgctxt "staff section name" msgid "Staff Members" msgstr "" +#. [src.configuration.3140151600] +#. defaultMessage is: +#. Staff Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Staff Settings" +msgstr "" + #. [src.standard] - tax rate #. defaultMessage is: #. Standard @@ -8077,10 +8300,10 @@ msgctxt "payment status" msgid "Unpaid" msgstr "" -#. [src.collections.views.2237014112] - unpublish collections +#. [src.collections.views.CollectionList.2237014112] - unpublish collections #. defaultMessage is: #. Unpublish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "unpublish collections" msgid "Unpublish" msgstr "Yayından kaldır" @@ -8117,10 +8340,10 @@ msgctxt "dialog header" msgid "Unpublish Products" msgstr "" -#. [src.collections.views.2637364047] - dialog title +#. [src.collections.views.CollectionList.2637364047] - dialog title #. defaultMessage is: #. Unpublish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Unpublish collections" msgstr "" @@ -8620,6 +8843,22 @@ msgctxt "description" msgid "ZIP / Postal code" msgstr "" +#. [src.productTypes.components.ProductTypeListPage.3479705616] - button +#. defaultMessage is: +#. create product type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "button" +msgid "create product type" +msgstr "" + +#. [src.staff.views.1308770978] - dialog header +#. defaultMessage is: +#. delete Staff User +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "dialog header" +msgid "delete Staff User" +msgstr "" + #. [orderPaymentVATDoesNotApply] - vat not included in order price #. defaultMessage is: #. does not apply @@ -8693,19 +8932,35 @@ msgctxt "product status is set as" msgid "is set as" msgstr "" -#. [src.staff.views.2240444792] - dialog header -#. defaultMessage is: -#. remove Staff User -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "dialog header" -msgid "remove Staff User" -msgstr "" - -#. [src.components.VisibilityCard.1815688500] +#. [src.collections.components.CollectionCreatePage.1815688500] - collection #. defaultMessage is: #. since {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.1815688500] - collection +#. defaultMessage is: +#. since {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "since {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.1815688500] - page +#. defaultMessage is: +#. since {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "since {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#. [src.products.components.ProductUpdatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "since {date}" msgstr "" @@ -8733,11 +8988,35 @@ msgctxt "weight" msgid "to {value} {unit}" msgstr "" -#. [src.components.VisibilityCard.2001551496] +#. [src.collections.components.CollectionCreatePage.2001551496] - collection #. defaultMessage is: #. will be visible from {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.2001551496] - collection +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "will be visible from {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.2001551496] - page +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "will be visible from {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#. [src.products.components.ProductUpdatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "will be visible from {date}" msgstr "" diff --git a/locale/uk.json b/locale/uk.json index 437ea4f83..788255fe5 100644 --- a/locale/uk.json +++ b/locale/uk.json @@ -1 +1 @@ -{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"Видалити властивість","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.350498821":"Додати властивість","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.2519239682":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"Назва","src.categories.components.CategoryProducts.636461959":"Назва","src.collections.components.CollectionProducts.636461959":"Назва","src.products.components.ProductDetailsForm.636461959":"Назва","src.collections.components.CollectionDetails.636461959":"Назва","src.components.ProductList.636461959":"Назва","src.discounts.components.SaleInfo.636461959":"Назва","src.discounts.components.SaleList.636461959":"Назва","src.discounts.components.SaleSummary.636461959":"Назва","menuItemDialogNameLabel":"Назва","src.products.components.ProductVariants.636461959":"Назва","src.shipping.components.ShippingZoneRates.636461959":"Назва","src.shipping.components.ShippingZonesList.636461959":"Назва","src.staff.components.StaffList.636461959":"Назва","src.translations.components.TranslationsEntitiesList.636461959":"Назва","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.254756045":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.3182284913":"","src.auth.components.LoginPage.109182747":"Вхід","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"Видалити категорію","src.categories.views.2004894945":"Видалити категорію","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.3229914152":"","src.categories.components.CategoryList.435697837":"","src.categories.components.CategoryList.2159874182":"Підкатегорії","src.categories.components.CategoryUpdatePage.2159874182":"Підкатегорії","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.228151782":"Додати категорію","src.categories.components.CategoryProducts.2968663655":"Продукти","src.categories.components.CategoryUpdatePage.2968663655":"Продукти","src.discounts.components.DiscountCategories.2968663655":"Продукти","src.discounts.components.DiscountCollections.2968663655":"Продукти","src.products":"Продукти","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryProducts.3554578821":"Додати продукт","src.categories.components.CategoryProductsCard.3554578821":"Додати продукт","src.categories.components.CategoryProducts.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProducts.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.categories.components.CategoryProductsCard.4164156574":"","src.categories.views.1754466114":"","src.categories.views.1140231710":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.712767046":"","src.categories.views.299584400":"","src.categories.views.844574071":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.collections.components.CollectionCreatePage.3958681866":"","src.collections.components.CollectionListPage.3958681866":"","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"","src.availability":"","src.collections.components.CollectionList.3640454975":"Опубліковано","src.collections.components.CollectionProducts.3640454975":"Опубліковано","src.discounts.components.DiscountProducts.3640454975":"Опубліковано","src.components.ProductList.3640454975":"Опубліковано","src.products.components.ProductListPage.3640454975":"Опубліковано","src.pages.components.PageList.3640454975":"Опубліковано","src.products.views.ProductList.published":"Опубліковано","src.collections.components.CollectionList.2341910657":"Неопубліковано","src.collections.components.CollectionProducts.2341910657":"Неопубліковано","src.discounts.components.DiscountProducts.2341910657":"Неопубліковано","src.components.ProductList.2341910657":"Неопубліковано","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.686910896":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"Видалити зображення","src.collections.views.2402899582":"","src.collections.views.2237014112":"Сховати","src.pages.views.2237014112":"Сховати","src.products.views.ProductList.2237014112":"Сховати","src.collections.views.1547167026":"Опублікувати","src.pages.views.1547167026":"Опублікувати","src.products.views.ProductList.1547167026":"Опублікувати","src.collections.views.2823425739":"","src.collections.views.1348793822":"","src.collections.views.2637364047":"","src.collections.views.3944356444":"","src.collections.views.3817188998":"","src.collections.views.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"Вийти","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.4057224233":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"Помилка","src.components.ErrorMessageCard.2845142593":"Помилка","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.FilterBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"Додати","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.ProductList.1134347598":"Ціна","src.orders.components.OrderDraftDetailsProducts.1134347598":"Ціна","src.orders.components.OrderFulfillment.1134347598":"Ціна","src.products.components.ProductListPage.1134347598":"Ціна","src.products.components.ProductPricing.1134347598":"Ціна","src.orders.components.OrderUnfulfilledItems.1134347598":"Ціна","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"Ціна","src.shipping.components.ShippingZoneRates.1134347598":"Ціна","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"","src.pages.components.PageList.1459686496":"","src.products.components.ProductListFilter.1459686496":"","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"","src.products.views.ProductList.hidden":"","src.components.VisibilityCard.1815688500":"","src.components.VisibilityCard.2001551496":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","configurationMenuStaff":"","configurationMenuShipping":"","configurationMenuTaxes":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","src.customers.components.CustomerAddress.1320082647":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"Адреса оплати","src.customers.components.CustomerAddresses.3517722732":"Адреса доставки ","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"Адреса","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"Помітка","src.orders.components.OrderCustomerNote.1520756907":"Помітка","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"Помітка","src.customers.components.CustomerDetails.577013340":"Помітка","src.customers.components.CustomerCreatePage.1934221653":"Додати покупця","src.customers.components.CustomerListPage.1934221653":"Додати покупця","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerOrders.3878642352":"Нещодавні замовлення","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"Дата","src.orders.components.OrderDraftList.4205493358":"Дата","src.orders.components.OrderList.4205493358":"Дата","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"Статус","src.orders.components.OrderListFilter.1756106276":"Статус","src.products.components.ProductListFilter.1756106276":"Статус","src.products.components.ProductVariants.1756106276":"Статус","src.customers.components.CustomerOrders.878013594":"Разом","src.orders.components.OrderDraftDetailsProducts.878013594":"Разом","src.orders.components.OrderDraftDetailsSummary.878013594":"Разом","src.orders.components.OrderDraftList.878013594":"Разом","src.orders.components.OrderFulfillment.878013594":"Разом","src.orders.components.OrderUnfulfilledItems.878013594":"Разом","src.orders.components.OrderList.878013594":"Разом","src.orders.components.OrderPayment.878013594":"Разом","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"Видалити Адресу","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.1946482599":"","src.customers.views.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"Значення","src.discounts.components.SaleSummary.1148029984":"Значення","src.discounts.components.VoucherList.1148029984":"Значення","src.discounts.components.VoucherSummary.1148029984":"Значення","src.discounts.components.VoucherValue.1148029984":"Значення","src.products.components.ProductAttributes.1148029984":"Значення","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.1742771332":"","src.discounts.components.SalePricing.1099355007":"","src.products.components.ProductPricing.1099355007":"","src.products.components.ProductVariantPrice.1099355007":"","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"Країни","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"код","src.discounts.components.VoucherSummary.78726751":"код","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.1536809153":"Додати ваучер","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"","src.discounts.shipment":"Відправлення ","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.2809303671":"","src.discounts.views.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.367317371":"","src.discounts.views.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"Відмінити","src.orders.views.OrderList.3528672691":"Відмінити","src.confirm":"","src.delete":"Видалити","src.edit":"Редагувати","src.manage":"","src.remove":"Видалити","src.save":"Зберегти","src.show":"","src.undo":"","src.attributes":"Атрибути","src.products.components.ProductAttributes.4153345096":"Атрибути","src.categories":"Категорії","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"Колекції","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"Конфігурація","src.customers":"Покупці","src.draftOrders":"","src.home":"Дім ","src.navigation":"","src.orders":"Замовлення","src.pages":"","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"Розпродажі ","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"","src.taxes.components.CountryListPage.3955023266":"","src.translations":"","src.vouchers":"Ваучери","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"Повністю оплачено","src.partiallyPaid":"","src.partiallyRefunded":"","src.refunded":"","src.unpaid":"","src.cancelled":"Відмінено","src.draft":"Чернетка","src.fulfilled":"","src.orders.views.OrderList.fulfilled":"","src.orders.components.OrderListFilter.1712863026":"","src.partiallyFulfilled":"","src.unfulfilled":"","src.orders.views.OrderList.unfulfilled":"","src.orders.components.OrderListFilter.1751787272":"","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","src.1395232177":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"Посилання","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"Відмінити замовлення","src.orders.components.OrderDetailsPage.1854613983":"Відмінити замовлення","src.orders.components.OrderDraftPage.1854613983":"Відмінити замовлення","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"Покупець ","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"Покупець ","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"","src.orders.components.OrderCustomerEditDialog.1411666943":"","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.500287069":"","src.orders.components.OrderDraftCancelDialog.3199827590":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"Товар","src.orders.components.OrderUnfulfilledItems.1895667608":"Товар","src.orders.components.OrderDraftDetailsProducts.2796503714":"Кількість","src.orders.components.OrderFulfillment.2796503714":"Кількість","src.orders.components.OrderFulfillmentDialog.2796503714":"Кількість","src.orders.components.OrderUnfulfilledItems.2796503714":"Кількість","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"Загалом","src.orders.components.OrderPayment.781550514":"Загалом","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"","src.orders.components.OrderListPage.2826235371":"","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"Відмінити доставку","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"","src.orders.components.OrderFulfillmentCancelDialog.732594284":"","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"SKU","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"Номер відслідковування","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.2574162126":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"Замовлення розміщено","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"Платіж","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2943502192":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"Всі покупки","src.productTypes.components.ProductTypeShipping.1325966144":"Всі покупки","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"Всі покупки","src.orders.components.OrderPayment.3768782744":"Попередньо авторизована оплата","src.orders.components.OrderPayment.2320183694":"Зарахований обсяг","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"Зарахувати","src.orders.components.OrderPayment.2845258362":"Відшкодування","src.orders.components.OrderPayment.2444197639":"","src.orders.components.OrderPayment.3500506678":"","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"Обсяг","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.2775402904":"","src.products.components.ProductListPage.2775402904":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.3880993240":"","src.orders.views.1161115149":"","src.orders.views.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.755314116":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"Назва","src.pages.components.PageList.1124600214":"Назва","src.pages.components.PageInfo.1116746286":"Вміст","src.translations.components.TranslationsPagesPage.1116746286":"Вміст","src.pages.components.PageList.3478065224":"","src.pages.components.PageSlug.3478065224":"","src.productTypes.components.ProductTypeAttributes.3478065224":"","src.pages.components.PageList.3767550649":"","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.1767905232":"","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.3785394515":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"Значення","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"Зображення","src.products.components.ProductVariantImages.3240888698":"Зображення","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"Склад","src.products.components.ProductVariantStock.3841616483":"Склад","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListPage.821159718":"","src.products.components.ProductListPage.1421689426":"","src.products.components.ProductListPage.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"","prodictStockInventoryLabel":"","src.products.components.ProductVariantStock.3490038570":"","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"Видалити варіант","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"Варіанти","src.products.components.ProductVariants.2153006789":"Варіанти","src.products.components.ProductVariantNavigation.2845381934":"Додати варіант","src.products.components.ProductVariants.2845381934":"Додати варіант","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1542417144":"","src.products.views.1591632382":"","src.products.views.490753666":"","src.products.views.672103788":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.1694086800":"","src.products.views.ProductList.224127438":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.products.views.2178905289":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1756957616":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.889729490":"Додати тип продукта","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.4080551769":"","src.productTypes.views.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.352297149":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2474410767":"","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.254167659":"","src.shipping.views.ShippingZoneDetails.1790261672":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"Ключ","src.siteSettings.components.SiteSettingsKeys.2446088470":"Ключ","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.3490059488":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"Дозволи","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.3247064221":"Активний","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.802625341":"","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"Активний","src.staff.views.2240444792":"","src.staff.views.2728048444":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file +{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"Видалити властивість","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.3824684885":"","src.attributes.components.AttributeListPage.2417065806":"","src.attributes.components.AttributeListPage.3916653510":"","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.4048785456":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"Додати значення","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"Назва","src.categories.components.CategoryProductList.636461959":"Назва","src.components.ProductList.636461959":"Назва","src.products.components.ProductList.636461959":"Назва","src.collections.components.CollectionDetails.636461959":"Назва","src.collections.components.CollectionProducts.636461959":"Назва","src.products.components.ProductDetailsForm.636461959":"Назва","src.discounts.components.SaleInfo.636461959":"Назва","src.discounts.components.SaleList.636461959":"Назва","src.discounts.components.SaleSummary.636461959":"Назва","menuItemDialogNameLabel":"Назва","src.plugins.components.PluginsList.636461959":"Назва","src.products.components.ProductVariants.636461959":"Назва","src.shipping.components.ShippingZoneRates.636461959":"Назва","src.shipping.components.ShippingZonesList.636461959":"Назва","src.staff.components.StaffList.636461959":"Назва","src.translations.components.TranslationsEntitiesList.636461959":"Назва","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.351422234":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.109182747":"Вхід","src.auth.components.LoginPage.4028609483":"","src.auth.components.NewPasswordPage.1915811227":"","src.auth.components.NewPasswordPage.1254879564":"","src.auth.components.NewPasswordPage.2799926859":"","src.auth.components.NewPasswordPage.4253911811":"","src.auth.components.NewPasswordPage.2342634351":"","src.auth.components.ResetPasswordPage.2370700732":"","src.auth.components.ResetPasswordPage.3663311080":"","src.auth.components.ResetPasswordSuccessPage.4066297200":"","src.auth.components.ResetPasswordSuccessPage.2245157344":"","src.auth.views.2388238158":"","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"Видалити категорію","src.categories.views.2004894945":"Видалити категорію","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.2159874182":"Підкатегорії","src.categories.components.CategoryUpdatePage.2159874182":"Підкатегорії","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.1140231710":"","src.categories.views.1140231710":"","src.categories.components.CategoryListPage.4294878092":"","src.categories.components.CategoryListPage.3841025483":"","src.translations.components.TranslationsEntitiesListPage.3841025483":"","src.categories.components.CategoryProductList.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductList.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProductList.3640454975":"Опубліковано","src.components.ProductList.3640454975":"Опубліковано","src.products.components.ProductList.3640454975":"Опубліковано","src.products.components.ProductListPage.3640454975":"Опубліковано","productStatusLabel":"Опубліковано","src.collections.components.CollectionList.3640454975":"Опубліковано","src.collections.components.CollectionProducts.3640454975":"Опубліковано","src.discounts.components.DiscountProducts.3640454975":"Опубліковано","src.pages.components.PageList.3640454975":"Опубліковано","src.products.views.ProductList.published":"Опубліковано","src.categories.components.CategoryProductList.1134347598":"Ціна","src.orders.components.OrderFulfillment.1134347598":"Ціна","src.products.components.ProductList.1134347598":"Ціна","src.products.components.ProductListPage.1134347598":"Ціна","src.products.components.ProductPricing.1134347598":"Ціна","src.components.ProductList.1134347598":"Ціна","src.orders.components.OrderDraftDetailsProducts.1134347598":"Ціна","src.orders.components.OrderUnfulfilledItems.1134347598":"Ціна","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"Ціна","src.shipping.components.ShippingZoneRates.1134347598":"Ціна","src.categories.components.CategoryProductList.2341910657":"Неопубліковано","src.products.components.ProductList.2341910657":"Неопубліковано","src.collections.components.CollectionList.2341910657":"Неопубліковано","src.collections.components.CollectionProducts.2341910657":"Неопубліковано","src.discounts.components.DiscountProducts.2341910657":"Неопубліковано","src.components.ProductList.2341910657":"Неопубліковано","src.categories.components.CategoryProductList.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.products.components.ProductList.1657559629":"","src.categories.components.CategoryProducts.4164156574":"","src.categories.components.CategoryProducts.3554578821":"Додати продукт","src.categories.components.CategoryUpdatePage.2968663655":"Продукти","src.discounts.components.DiscountCategories.2968663655":"Продукти","src.discounts.components.DiscountCollections.2968663655":"Продукти","src.products":"Продукти","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryUpdatePage.3229914152":"","src.categories.components.CategoryUpdatePage.770296100":"","src.categories.views.1754466114":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.CategoryList.3488150607":"","src.categories.views.712767046":"","src.categories.views.CategoryList.712767046":"","src.categories.views.299584400":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.categories.views.CategoryList.2144707585":"","src.collections.components.CollectionCreatePage.3958681866":"Додати колекцію","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionCreatePage.2001551496":"","src.collections.components.CollectionDetailsPage.2001551496":"","src.pages.components.PageDetailsPage.2001551496":"","src.products.components.ProductCreatePage.2001551496":"","src.products.components.ProductUpdatePage.2001551496":"","src.collections.components.CollectionCreatePage.1815688500":"","src.collections.components.CollectionDetailsPage.1815688500":"","src.pages.components.PageDetailsPage.1815688500":"","src.products.components.ProductCreatePage.1815688500":"","src.products.components.ProductUpdatePage.1815688500":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"","src.availability":"","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionListPage.686910896":"","src.collections.views.686910896":"","src.collections.components.CollectionListPage.1631917001":"","src.collections.components.CollectionListPage.4057224233":"","src.components.AssignCollectionDialog.4057224233":"","src.translations.components.TranslationsEntitiesListPage.4057224233":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"Видалити зображення","src.collections.views.2402899582":"","src.collections.views.CollectionList.2237014112":"Сховати","src.pages.views.2237014112":"Сховати","src.products.views.ProductList.2237014112":"Сховати","src.collections.views.CollectionList.1547167026":"Опублікувати","src.pages.views.1547167026":"Опублікувати","src.products.views.ProductList.1547167026":"Опублікувати","src.collections.views.CollectionList.2823425739":"","src.collections.views.CollectionList.1348793822":"","src.collections.views.CollectionList.2637364047":"","src.collections.views.CollectionList.3944356444":"","src.collections.views.CollectionList.3817188998":"","src.collections.views.CollectionList.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"Вийти","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"Помилка","src.components.ErrorMessageCard.2845142593":"Помилка","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.Filter.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"Додати фільтр","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"Додати фільтр","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.Filter.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.FilterBar.2340527467":"","src.components.SearchBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"Додати","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"Додати посилання на зображення","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"","src.pages.components.PageList.1459686496":"","src.products.components.ProductListFilter.1459686496":"","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"","src.products.views.ProductList.hidden":"","src.components.VisibilityCard.292404896":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","src.configuration.2326418019":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","src.configuration.3655543906":"","configurationMenuShipping":"","configurationMenuTaxes":"","src.configuration.3140151600":"","configurationMenuStaff":"","src.configuration.1233229030":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","configurationPluginsPages":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"Добавити адресу","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"Адреса оплати","src.customers.components.CustomerAddresses.3517722732":"Адреса доставки ","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"Адреса","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"Додати адресу","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"Помітка","src.orders.components.OrderCustomerNote.1520756907":"Помітка","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"Помітка","src.customers.components.CustomerDetails.577013340":"Помітка","src.customers.components.CustomerCreatePage.1934221653":"Додати покупця","src.customers.components.CustomerListPage.1934221653":"Додати покупця","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerListPage.477293306":"","src.customers.components.CustomerListPage.1643417013":"","src.customers.components.CustomerOrders.3878642352":"Нещодавні замовлення","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"Дата","src.orders.components.OrderDraftList.4205493358":"Дата","src.orders.components.OrderList.4205493358":"Дата","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"Статус","src.orders.components.OrderListFilter.1756106276":"Статус","src.plugins.components.PluginInfo.1756106276":"Статус","src.products.components.ProductListFilter.1756106276":"Статус","src.products.components.ProductVariants.1756106276":"Статус","src.customers.components.CustomerOrders.878013594":"Разом","src.orders.components.OrderDraftDetailsProducts.878013594":"Разом","src.orders.components.OrderDraftDetailsSummary.878013594":"Разом","src.orders.components.OrderDraftList.878013594":"Разом","src.orders.components.OrderFulfillment.878013594":"Разом","src.orders.components.OrderUnfulfilledItems.878013594":"Разом","src.orders.components.OrderList.878013594":"Разом","src.orders.components.OrderPayment.878013594":"Разом","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"Видалити Адресу","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.CustomerList.1946482599":"","src.customers.views.CustomerList.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","src.discounts.components.SaleListPage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"Значення","src.discounts.components.SaleSummary.1148029984":"Значення","src.discounts.components.VoucherList.1148029984":"Значення","src.discounts.components.VoucherSummary.1148029984":"Значення","src.discounts.components.VoucherValue.1148029984":"Значення","src.products.components.ProductAttributes.1148029984":"Значення","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.3907768880":"","src.discounts.components.SaleListPage.1866913828":"","src.translations.components.TranslationsEntitiesListPage.1866913828":"","src.discounts.components.SalePricing.1099355007":"","src.products.components.ProductPricing.1099355007":"","src.products.components.ProductVariantPrice.1099355007":"","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"Країни","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"код","src.discounts.components.VoucherSummary.78726751":"код","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.614836274":"","src.discounts.components.VoucherListPage.1112241061":"","src.discounts.components.VoucherListPage.1930485532":"","src.translations.components.TranslationsEntitiesListPage.1930485532":"","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"","src.discounts.shipment":"Відправлення ","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.SaleList.2809303671":"","src.discounts.views.SaleList.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.VoucherList.367317371":"","src.discounts.views.VoucherList.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"Активність","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.somethingWentWrong":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"Відмінити","src.orders.views.OrderList.3528672691":"Відмінити","src.confirm":"","src.delete":"Видалити","src.edit":"Редагувати","src.manage":"","src.remove":"Видалити","src.save":"Зберегти","src.show":"","src.undo":"","src.attributes":"Атрибути","src.products.components.ProductAttributes.4153345096":"Атрибути","src.categories":"Категорії","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"Колекції","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"Конфігурація","src.customers":"Покупці","src.draftOrders":"","src.home":"Дім ","src.navigation":"","src.orders":"Замовлення","src.pages":"","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.plugins":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"Розпродажі ","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"","src.taxes.components.CountryListPage.3955023266":"","src.translations":"","src.vouchers":"Ваучери","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"Повністю оплачено","src.partiallyPaid":"","src.partiallyRefunded":"","src.refunded":"","src.unpaid":"","src.cancelled":"Відмінено","src.draft":"Чернетка","src.fulfilled":"","src.orders.views.OrderList.fulfilled":"","src.orders.components.OrderListFilter.1712863026":"","src.partiallyFulfilled":"","src.unfulfilled":"","src.orders.views.OrderList.unfulfilled":"","src.orders.components.OrderListFilter.1751787272":"","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"Додати пункт меню","menuItemDialogLinkLabel":"Посилання","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"Відмінити замовлення","src.orders.components.OrderDetailsPage.1854613983":"Відмінити замовлення","src.orders.components.OrderDraftPage.1854613983":"Відмінити замовлення","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"Покупець ","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"Покупець ","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"","src.orders.components.OrderCustomerEditDialog.1411666943":"","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.632633254":"","src.orders.components.OrderDraftCancelDialog.36681973":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"Товар","src.orders.components.OrderUnfulfilledItems.1895667608":"Товар","src.orders.components.OrderDraftDetailsProducts.2796503714":"Кількість","src.orders.components.OrderFulfillment.2796503714":"Кількість","src.orders.components.OrderFulfillmentDialog.2796503714":"Кількість","src.orders.components.OrderUnfulfilledItems.2796503714":"Кількість","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"Загалом","src.orders.components.OrderPayment.781550514":"Загалом","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"","src.orders.components.OrderListPage.2826235371":"","src.orders.components.OrderDraftListPage.551325728":"","src.orders.components.OrderDraftListPage.77765281":"","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"Відмінити доставку","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"","src.orders.components.OrderFulfillmentCancelDialog.732594284":"","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"SKU","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"Номер відслідковування","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.4067959693":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"Замовлення розміщено","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"Платіж","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2415661583":"","src.orders.views.OrderList.readyToCapture":"","src.orders.components.OrderListFilter.2222765704":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"Всі покупки","src.productTypes.components.ProductTypeShipping.1325966144":"Всі покупки","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"Всі покупки","src.orders.components.OrderPayment.3768782744":"Попередньо авторизована оплата","src.orders.components.OrderPayment.2320183694":"Зарахований обсяг","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"Зарахувати","src.orders.components.OrderPayment.2845258362":"Відшкодування","src.orders.components.OrderPayment.2444197639":"","src.orders.components.OrderPayment.3500506678":"","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"Обсяг","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.1542417144":"","src.products.components.ProductListPage.1542417144":"","src.products.views.1542417144":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.OrderDraftList.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.OrderDraftList.1648805446":"","src.orders.views.OrderDraftList.1161115149":"","src.orders.views.OrderDraftList.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.1068617485":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"Назва","src.pages.components.PageList.1124600214":"Назва","src.pages.components.PageInfo.1116746286":"Вміст","src.translations.components.TranslationsPagesPage.1116746286":"Вміст","src.pages.components.PageList.3478065224":"","src.pages.components.PageSlug.3478065224":"","src.productTypes.components.ProductTypeAttributes.3478065224":"","src.pages.components.PageList.3767550649":"","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.3785394515":"","src.pages.views.3785394515":"","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.plugins.components.PluginInfo.3425535100":"","src.plugins.components.PluginsDetailsPage.3425535100":"","src.plugins.components.PluginInfo.1049131348":"","src.plugins.components.PluginInfo.4013064767":"","src.plugins.components.PluginsDetailsPage.3352026836":"","src.plugins.components.PluginsDetailsPage.2277745418":"","src.plugins.components.PluginsDetailsPage.1970881031":"","src.plugins.components.PluginSettings.1970881031":"","src.plugins.components.PluginsDetailsPage.4241018152":"","src.plugins.components.PluginsList.3247064221":"Активний","src.staff.components.StaffList.3247064221":"Активний","src.plugins.components.PluginsList.4120604650":"","src.plugins.components.PluginsList.666641390":"","src.plugins.views.100549097":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"Значення","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"Зображення","src.products.components.ProductVariantImages.3240888698":"Зображення","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"Склад","src.products.components.ProductVariantStock.3841616483":"Склад","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListFilter.821159718":"","src.products.components.ProductListFilter.1421689426":"","src.products.components.ProductListFilter.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"","prodictStockInventoryLabel":"","src.products.components.ProductVariantStock.3490038570":"","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"Видалити варіант","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"Варіанти","src.products.components.ProductVariants.2153006789":"Варіанти","src.products.components.ProductVariantNavigation.2845381934":"Додати варіант","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.3989383405":"","src.products.views.3989383405":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1591632382":"","src.products.views.1731766393":"","src.products.views.2880386427":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1217376589":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.3479705616":"","src.productTypes.components.ProductTypeListPage.1776073799":"","src.productTypes.components.ProductTypeListPage.3420445375":"","src.translations.components.TranslationsEntitiesListPage.3420445375":"","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.ProductTypeList.4080551769":"","src.productTypes.views.ProductTypeList.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRates.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2673544109":"","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.1947090060":"","src.shipping.views.ShippingZoneDetails.131963671":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"Додати новий авторизаціний ключ","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"Ключ","src.siteSettings.components.SiteSettingsKeys.2446088470":"Ключ","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.1481503299":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"Дозволи","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.797461521":"","src.staff.components.StaffListPage.2852350932":"","src.staff.components.StaffListPage.61043583":"","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"Активний","src.staff.views.1308770978":"","src.staff.views.8878988":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.2105464697":"","src.translations.components.TranslationsEntitiesListPage.2559018090":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file diff --git a/locale/uk.po b/locale/uk.po index 87f78ad69..e5dfdba28 100644 --- a/locale/uk.po +++ b/locale/uk.po @@ -11,7 +11,7 @@ # msgid "" msgstr "" -"POT-Creation-Date: 2019-09-06T13:56:36.897Z\n" +"POT-Creation-Date: 2019-09-16T15:25:09.340Z\n" "Last-Translator: Roman Starenkyi , 2019\n" "Language-Team: Ukrainian (https://www.transifex.com/mirumee/teams/34782/uk/)\n" "MIME-Version: 1.0\n" @@ -149,22 +149,6 @@ msgctxt "create new menu item, header" msgid "Add Item" msgstr "Додати пункт меню" -#. [menuCreateDialogHeader] - dialog header -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json -msgctxt "dialog header" -msgid "Add Menu" -msgstr "Додати меню" - -#. [menuListPageAddMenu] - button -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json -msgctxt "button" -msgid "Add Menu" -msgstr "Додати меню" - #. [src.siteSettings.components.SiteSettingsKeyDialog.1238948746] - dialog #. header #. defaultMessage is: @@ -174,14 +158,6 @@ msgctxt "dialog header" msgid "Add New Authorization Key" msgstr "Додати новий авторизаціний ключ" -#. [src.pages.components.PageDetailsPage.755314116] - page header -#. defaultMessage is: -#. Add Page -#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json -msgctxt "page header" -msgid "Add Page" -msgstr "Додати сторінку" - #. [src.shipping.components.ShippingZoneRateDialog.2892088870] - dialog header #. defaultMessage is: #. Add Price Rate @@ -190,38 +166,6 @@ msgctxt "dialog header" msgid "Add Price Rate" msgstr "" -#. [src.orders.components.OrderProductAddDialog.2775402904] - dialog header -#. defaultMessage is: -#. Add Product -#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json -msgctxt "dialog header" -msgid "Add Product" -msgstr "Додати продукт" - -#. [src.products.components.ProductListPage.2775402904] - button -#. defaultMessage is: -#. Add Product -#: build/locale/src/products/components/ProductListPage/ProductListPage.json -msgctxt "button" -msgid "Add Product" -msgstr "Додати продукт" - -#. [src.discounts.components.SaleListPage.1742771332] - button -#. defaultMessage is: -#. Add Sale -#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json -msgctxt "button" -msgid "Add Sale" -msgstr "Додати розпродаж" - -#. [src.staff.components.StaffAddMemberDialog.3490059488] - dialog header -#. defaultMessage is: -#. Add Staff Member -#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json -msgctxt "dialog header" -msgid "Add Staff Member" -msgstr "Додати члена команди" - #. [src.attributes.components.AttributeValueEditDialog.1841790893] - add #. attribute value #. defaultMessage is: @@ -231,14 +175,6 @@ msgctxt "add attribute value" msgid "Add Value" msgstr "Додати значення" -#. [src.products.views.2178905289] - header -#. defaultMessage is: -#. Add Variant -#: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "header" -msgid "Add Variant" -msgstr "Додати опцію" - #. [src.shipping.components.ShippingZoneRateDialog.1397795758] - add weight #. based shipping method, dialog header #. defaultMessage is: @@ -256,14 +192,6 @@ msgctxt "button" msgid "Add address" msgstr "Додати адресу" -#. [src.attributes.components.AttributeListPage.350498821] - button -#. defaultMessage is: -#. Add attribute -#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json -msgctxt "button" -msgid "Add attribute" -msgstr "Додати властивість" - #. [src.siteSettings.components.SiteSettingsKeyDialog.50561933] - button #. defaultMessage is: #. Add authentication @@ -272,14 +200,6 @@ msgctxt "button" msgid "Add authentication" msgstr "" -#. [src.categories.components.CategoryListPage.228151782] - button -#. defaultMessage is: -#. Add category -#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json -msgctxt "button" -msgid "Add category" -msgstr "Додати категорію" - #. [src.collections.components.CollectionCreatePage.3958681866] - page header #. defaultMessage is: #. Add collection @@ -288,14 +208,6 @@ msgctxt "page header" msgid "Add collection" msgstr "Додати колекцію" -#. [src.collections.components.CollectionListPage.3958681866] - button -#. defaultMessage is: -#. Add collection -#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json -msgctxt "button" -msgid "Add collection" -msgstr "Додати колекцію" - #. [src.customers.components.CustomerCreatePage.1934221653] - page header #. defaultMessage is: #. Add customer @@ -328,14 +240,6 @@ msgctxt "button" msgid "Add key" msgstr "" -#. [menuItemsAddItem] - add new menu item -#. defaultMessage is: -#. Add new item -#: build/locale/src/navigation/components/MenuItems/MenuItems.json -msgctxt "add new menu item" -msgid "Add new item" -msgstr "Додати пункт меню" - #. [menuItemsPlaceholder] #. defaultMessage is: #. Add new menu item to begin creating menu @@ -370,14 +274,6 @@ msgctxt "button" msgid "Add or Edit Link" msgstr "" -#. [src.pages.components.PageListPage.1767905232] - button -#. defaultMessage is: -#. Add page -#: build/locale/src/pages/components/PageListPage/PageListPage.json -msgctxt "button" -msgid "Add page" -msgstr "" - #. [src.categories.components.CategoryProducts.3554578821] - button #. defaultMessage is: #. Add product @@ -386,14 +282,6 @@ msgctxt "button" msgid "Add product" msgstr "Додати продукт" -#. [src.productTypes.components.ProductTypeListPage.889729490] - button -#. defaultMessage is: -#. Add product type -#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json -msgctxt "button" -msgid "Add product type" -msgstr "Додати тип продукта" - #. [src.orders.components.OrderDraftDetails.2528459381] - button #. defaultMessage is: #. Add products @@ -402,14 +290,6 @@ msgctxt "button" msgid "Add products" msgstr "" -#. [src.shipping.components.ShippingZoneRates.352297149] - button -#. defaultMessage is: -#. Add rate -#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json -msgctxt "button" -msgid "Add rate" -msgstr "" - #. [src.categories.components.CategoryCreatePage.2563994280] #. defaultMessage is: #. Add search engine title and description to make this category easier to @@ -471,30 +351,6 @@ msgctxt "button" msgid "Add shipping carrier" msgstr "" -#. [src.shipping.components.ShippingZonesList.2474410767] - button -#. defaultMessage is: -#. Add shipping zone -#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json -msgctxt "button" -msgid "Add shipping zone" -msgstr "" - -#. [src.staff.components.StaffListPage.802625341] - button -#. defaultMessage is: -#. Add staff member -#: build/locale/src/staff/components/StaffListPage/StaffListPage.json -msgctxt "button" -msgid "Add staff member" -msgstr "" - -#. [src.categories.components.CategoryList.435697837] - button -#. defaultMessage is: -#. Add subcategory -#: build/locale/src/categories/components/CategoryList/CategoryList.json -msgctxt "button" -msgid "Add subcategory" -msgstr "" - #. [src.attributes.components.AttributeProperties.673770329] - add attribute #. as column in product list table #. defaultMessage is: @@ -522,35 +378,14 @@ msgctxt "dialog header" msgid "Add tracking code" msgstr "" -#. [src.attributes.components.AttributeValues.254756045] - add attribute value -#. button -#. defaultMessage is: -#. Add value -#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json -msgctxt "add attribute value button" -msgid "Add value" -msgstr "" - #. [src.products.components.ProductVariantNavigation.2845381934] - button #. defaultMessage is: #. Add variant -#. [src.products.components.ProductVariants.2845381934] - button -#. defaultMessage is: -#. Add variant #: build/locale/src/products/components/ProductVariantNavigation/ProductVariantNavigation.json -#: build/locale/src/products/components/ProductVariants/ProductVariants.json msgctxt "button" msgid "Add variant" msgstr "Додати варіант" -#. [src.discounts.components.VoucherListPage.1536809153] - button -#. defaultMessage is: -#. Add voucher -#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json -msgctxt "button" -msgid "Add voucher" -msgstr "Додати ваучер" - #. [src.attributes.views.AttributeDetails.634268988] - added new attribute #. value #. defaultMessage is: @@ -608,14 +443,6 @@ msgctxt "description" msgid "Address line 2" msgstr "" -#. [src.customers.components.CustomerAddress.1320082647] - addres card header -#. defaultMessage is: -#. Address {addressNumber} -#: build/locale/src/customers/components/CustomerAddress/CustomerAddress.json -msgctxt "addres card header" -msgid "Address {addressNumber}" -msgstr "" - #. [src.attributes.components.AttributeValues.1565474525] - attribute values #. list: slug column header #. defaultMessage is: @@ -665,6 +492,46 @@ msgctxt "tax rate" msgid "Agricultural supplies" msgstr "" +#. [src.attributes.components.AttributeListPage.2417065806] - tab name +#. defaultMessage is: +#. All Attributes +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "tab name" +msgid "All Attributes" +msgstr "" + +#. [src.categories.components.CategoryListPage.4294878092] - tab name +#. defaultMessage is: +#. All Categories +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "tab name" +msgid "All Categories" +msgstr "" + +#. [src.collections.components.CollectionListPage.1631917001] - tab name +#. defaultMessage is: +#. All Collections +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "tab name" +msgid "All Collections" +msgstr "" + +#. [src.customers.components.CustomerListPage.477293306] - tab name +#. defaultMessage is: +#. All Customers +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "tab name" +msgid "All Customers" +msgstr "" + +#. [src.orders.components.OrderDraftListPage.551325728] - tab name +#. defaultMessage is: +#. All Drafts +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "tab name" +msgid "All Drafts" +msgstr "" + #. [src.orders.components.OrderListPage.875489544] - tab name #. defaultMessage is: #. All Orders @@ -682,22 +549,54 @@ msgctxt "section header" msgid "All Photos" msgstr "" -#. [src.products.components.ProductListPage.821159718] - tab name +#. [src.productTypes.components.ProductTypeListPage.1776073799] - tab name +#. defaultMessage is: +#. All Product Types +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "tab name" +msgid "All Product Types" +msgstr "" + +#. [src.products.components.ProductListFilter.821159718] - tab name #. defaultMessage is: #. All Products -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "tab name" msgid "All Products" msgstr "" -#. [src.categories.components.CategoryList.3229914152] - section header +#. [src.discounts.components.SaleListPage.3907768880] - tab name +#. defaultMessage is: +#. All Sales +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "tab name" +msgid "All Sales" +msgstr "" + +#. [src.staff.components.StaffListPage.2852350932] - tab name +#. defaultMessage is: +#. All Staff Members +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "tab name" +msgid "All Staff Members" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.3229914152] - section header #. defaultMessage is: #. All Subcategories -#: build/locale/src/categories/components/CategoryList/CategoryList.json +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json msgctxt "section header" msgid "All Subcategories" msgstr "" +#. [src.discounts.components.VoucherListPage.1112241061] - tab name +#. defaultMessage is: +#. All Vouchers +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "tab name" +msgid "All Vouchers" +msgstr "" + #. [src.taxes.components.TaxConfiguration.142803418] #. defaultMessage is: #. All products prices are entered with tax included @@ -805,6 +704,14 @@ msgctxt "description" msgid "Are you sure you want to delete collection's image?" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.36681973] +#. defaultMessage is: +#. Are you sure you want to delete draft #{number}? +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "description" +msgid "Are you sure you want to delete draft #{number}?" +msgstr "" + #. [menuDetailsDeleteMenuContent] #. defaultMessage is: #. Are you sure you want to delete menu {menuName}? @@ -821,6 +728,14 @@ msgctxt "description" msgid "Are you sure you want to delete this address from users address book?" msgstr "" +#. [src.products.views.2880386427] +#. defaultMessage is: +#. Are you sure you want to delete this image? +#: build/locale/src/products/views/ProductImage.json +msgctxt "description" +msgid "Are you sure you want to delete this image?" +msgstr "" + #. [src.attributes.components.AttributeDeleteDialog.3738429348] - dialog #. content #. defaultMessage is: @@ -871,12 +786,7 @@ msgstr "" #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this attribute} #. other{{displayQuantity} categories}}? -#. [src.categories.views.844574071] -#. defaultMessage is: -#. Are you sure you want to delete {counter,plural,one{this attribute} -#. other{{displayQuantity} categories}}? #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this attribute} " @@ -894,22 +804,33 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.2497542455] +#. [src.categories.views.CategoryList.2144707585] +#. defaultMessage is: +#. Are you sure you want to delete {counter,plural,one{this category} +#. other{{displayQuantity} categories}}? +#: build/locale/src/categories/views/CategoryList/CategoryList.json +msgctxt "description" +msgid "" +"Are you sure you want to delete {counter,plural,one{this category} " +"other{{displayQuantity} categories}}?" +msgstr "" + +#. [src.collections.views.CollectionList.2497542455] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this collection} " "other{{displayQuantity} collections}}?" msgstr "" -#. [src.customers.views.409347866] +#. [src.customers.views.CustomerList.409347866] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this customer} #. other{{displayQuantity} customers}}? -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this customer} " @@ -927,11 +848,11 @@ msgid "" "other{{displayQuantity} menus}}?" msgstr "" -#. [src.orders.views.1389231130] - dialog content +#. [src.orders.views.OrderDraftList.1389231130] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this order draft} #. other{{displayQuantity} orderDrafts}}? -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this order draft} " @@ -949,11 +870,11 @@ msgid "" "other{{displayQuantity} pages}}?" msgstr "" -#. [src.productTypes.views.2294091098] - dialog content +#. [src.productTypes.views.ProductTypeList.2294091098] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this product type} #. other{{displayQuantity} product types}}? -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this product type} " @@ -971,11 +892,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.discounts.views.2516361175] - dialog content +#. [src.discounts.views.SaleList.2516361175] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this sale} #. other{{displayQuantity} sales}}? -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this sale} " @@ -1004,17 +925,33 @@ msgid "" "other{{displayQuantity} variants}}?" msgstr "" -#. [src.discounts.views.1791926983] - dialog content +#. [src.discounts.views.VoucherList.1791926983] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this voucher} #. other{{displayQuantity} vouchers}}? -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this voucher} " "other{{displayQuantity} vouchers}}?" msgstr "" +#. [src.shipping.views.ShippingZoneDetails.131963671] - unassign country +#. defaultMessage is: +#. Are you sure you want to delete {countryName} from this shipping zone? +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country" +msgid "Are you sure you want to delete {countryName} from this shipping zone?" +msgstr "" + +#. [src.staff.views.8878988] +#. defaultMessage is: +#. Are you sure you want to delete {email} from staff members? +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "description" +msgid "Are you sure you want to delete {email} from staff members?" +msgstr "" + #. [src.customers.views.1927691511] - delete customer, dialog content #. defaultMessage is: #. Are you sure you want to delete {email}? @@ -1129,11 +1066,11 @@ msgctxt "description" msgid "Are you sure you want to mark this order as paid?" msgstr "" -#. [src.collections.views.1348793822] +#. [src.collections.views.CollectionList.1348793822] #. defaultMessage is: #. Are you sure you want to publish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to publish {counter,plural,one{this collection} " @@ -1162,30 +1099,6 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.orders.components.OrderDraftCancelDialog.3199827590] -#. defaultMessage is: -#. Are you sure you want to remove draft #{number}? -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "description" -msgid "Are you sure you want to remove draft #{number}?" -msgstr "" - -#. [src.products.views.672103788] -#. defaultMessage is: -#. Are you sure you want to remove this image? -#: build/locale/src/products/views/ProductImage.json -msgctxt "description" -msgid "Are you sure you want to remove this image?" -msgstr "" - -#. [src.shipping.views.ShippingZoneDetails.1790261672] - unassign country -#. defaultMessage is: -#. Are you sure you want to remove {countryName} from this shipping zone? -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country" -msgid "Are you sure you want to remove {countryName} from this shipping zone?" -msgstr "" - #. [src.staff.views.3945766678] #. defaultMessage is: #. Are you sure you want to remove {email} avatar? @@ -1194,14 +1107,6 @@ msgctxt "description" msgid "Are you sure you want to remove {email} avatar?" msgstr "" -#. [src.staff.views.2728048444] -#. defaultMessage is: -#. Are you sure you want to remove {email} from staff members? -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "description" -msgid "Are you sure you want to remove {email} from staff members?" -msgstr "" - #. [src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450] #. defaultMessage is: #. Are you sure you want to unassign {attributeName} from {productTypeName}? @@ -1282,11 +1187,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.3944356444] +#. [src.collections.views.CollectionList.3944356444] #. defaultMessage is: #. Are you sure you want to unpublish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to unpublish {counter,plural,one{this collection} " @@ -1447,6 +1352,15 @@ msgctxt "button" msgid "Assign products" msgstr "" +#. [src.attributes.components.AttributeValues.351422234] - assign attribute +#. value button +#. defaultMessage is: +#. Assign value +#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json +msgctxt "assign attribute value button" +msgid "Assign value" +msgstr "" + #. [src.attributes.components.AttributeDetails.3605174225] - attribute's slug #. short code label #. defaultMessage is: @@ -1525,6 +1439,14 @@ msgctxt "product attributes, section header" msgid "Attributes" msgstr "Атрибути" +#. [src.configuration.2326418019] +#. defaultMessage is: +#. Attributes and Product Typess +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Attributes and Product Typess" +msgstr "" + #. [src.attributes.views.AttributeList.3218248395] - deleted multiple #. attributes #. defaultMessage is: @@ -2308,6 +2230,22 @@ msgctxt "description" msgid "Country area" msgstr "" +#. [menuCreateDialogHeader] - dialog header +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json +msgctxt "dialog header" +msgid "Create Menu" +msgstr "" + +#. [menuListPageAddMenu] - button +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json +msgctxt "button" +msgid "Create Menu" +msgstr "" + #. [src.attributes.components.AttributePage.2855501559] - page title #. defaultMessage is: #. Create New Attribute @@ -2332,6 +2270,30 @@ msgctxt "header" msgid "Create New Shipping Zone" msgstr "" +#. [src.pages.components.PageDetailsPage.1068617485] - page header +#. defaultMessage is: +#. Create Page +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page header" +msgid "Create Page" +msgstr "" + +#. [src.orders.components.OrderProductAddDialog.1542417144] - dialog header +#. defaultMessage is: +#. Create Product +#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json +msgctxt "dialog header" +msgid "Create Product" +msgstr "" + +#. [src.products.components.ProductListPage.1542417144] - button +#. defaultMessage is: +#. Create Product +#: build/locale/src/products/components/ProductListPage/ProductListPage.json +msgctxt "button" +msgid "Create Product" +msgstr "" + #. [src.products.views.1542417144] - window title #. defaultMessage is: #. Create Product @@ -2364,11 +2326,19 @@ msgctxt "page header" msgid "Create Sale" msgstr "" -#. [src.products.views.2362587265] - window title +#. [src.discounts.components.SaleListPage.3866518732] - button +#. defaultMessage is: +#. Create Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "button" +msgid "Create Sale" +msgstr "" + +#. [src.products.views.2362587265] - header #. defaultMessage is: #. Create Variant #: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "window title" +msgctxt "header" msgid "Create Variant" msgstr "" @@ -2380,6 +2350,22 @@ msgctxt "page header" msgid "Create Voucher" msgstr "" +#. [src.attributes.components.AttributeListPage.3824684885] - button +#. defaultMessage is: +#. Create attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "button" +msgid "Create attribute" +msgstr "" + +#. [src.categories.components.CategoryListPage.1140231710] - button +#. defaultMessage is: +#. Create category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "button" +msgid "Create category" +msgstr "" + #. [src.categories.views.1140231710] - window title #. defaultMessage is: #. Create category @@ -2388,6 +2374,14 @@ msgctxt "window title" msgid "Create category" msgstr "" +#. [src.collections.components.CollectionListPage.686910896] - button +#. defaultMessage is: +#. Create collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "button" +msgid "Create collection" +msgstr "" + #. [src.collections.views.686910896] - window title #. defaultMessage is: #. Create collection @@ -2404,6 +2398,14 @@ msgctxt "window title" msgid "Create customer" msgstr "" +#. [menuItemsAddItem] - add new menu item +#. defaultMessage is: +#. Create new item +#: build/locale/src/navigation/components/MenuItems/MenuItems.json +msgctxt "add new menu item" +msgid "Create new item" +msgstr "" + #. [src.orders.components.OrderDraftListPage.2826235371] - button #. defaultMessage is: #. Create order @@ -2416,6 +2418,14 @@ msgctxt "button" msgid "Create order" msgstr "" +#. [src.pages.components.PageListPage.3785394515] - button +#. defaultMessage is: +#. Create page +#: build/locale/src/pages/components/PageListPage/PageListPage.json +msgctxt "button" +msgid "Create page" +msgstr "" + #. [src.pages.views.3785394515] - header #. defaultMessage is: #. Create page @@ -2427,11 +2437,55 @@ msgstr "" #. [src.shipping.components.ShippingZoneRateDialog.16061680] - button #. defaultMessage is: #. Create rate +#. [src.shipping.components.ShippingZoneRates.16061680] - button +#. defaultMessage is: +#. Create rate #: build/locale/src/shipping/components/ShippingZoneRateDialog/ShippingZoneRateDialog.json +#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json msgctxt "button" msgid "Create rate" msgstr "" +#. [src.shipping.components.ShippingZonesList.2673544109] - button +#. defaultMessage is: +#. Create shipping zone +#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json +msgctxt "button" +msgid "Create shipping zone" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.770296100] - button +#. defaultMessage is: +#. Create subcategory +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json +msgctxt "button" +msgid "Create subcategory" +msgstr "" + +#. [src.products.components.ProductVariants.3989383405] - button +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/components/ProductVariants/ProductVariants.json +msgctxt "button" +msgid "Create variant" +msgstr "" + +#. [src.products.views.3989383405] - window title +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/views/ProductVariantCreate.json +msgctxt "window title" +msgid "Create variant" +msgstr "" + +#. [src.discounts.components.VoucherListPage.614836274] - button +#. defaultMessage is: +#. Create voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "button" +msgid "Create voucher" +msgstr "" + #. [src.collections.views.1597339737] #. defaultMessage is: #. Created collection @@ -2478,7 +2532,11 @@ msgstr "" #. [src.components.FilterBar.2340527467] #. defaultMessage is: #. Custom Filter +#. [src.components.SearchBar.2340527467] +#. defaultMessage is: +#. Custom Filter #: build/locale/src/components/FilterBar/FilterBar.json +#: build/locale/src/components/SearchBar/SearchBar.json msgctxt "description" msgid "Custom Filter" msgstr "" @@ -2734,10 +2792,18 @@ msgctxt "dialog title" msgid "Delete Collection" msgstr "" -#. [src.orders.views.1161115149] - dialog header +#. [src.products.views.1731766393] - dialog header +#. defaultMessage is: +#. Delete Image +#: build/locale/src/products/views/ProductImage.json +msgctxt "dialog header" +msgid "Delete Image" +msgstr "" + +#. [src.orders.views.OrderDraftList.1161115149] - dialog header #. defaultMessage is: #. Delete Order Drafts -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog header" msgid "Delete Order Drafts" msgstr "" @@ -2775,10 +2841,10 @@ msgctxt "dialog header" msgid "Delete Product Type" msgstr "" -#. [src.productTypes.views.4080551769] - dialog header +#. [src.productTypes.views.ProductTypeList.4080551769] - dialog header #. defaultMessage is: #. Delete Product Types -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog header" msgid "Delete Product Types" msgstr "" @@ -2807,10 +2873,10 @@ msgctxt "dialog header" msgid "Delete Sale" msgstr "" -#. [src.discounts.views.2809303671] - dialog header +#. [src.discounts.views.SaleList.2809303671] - dialog header #. defaultMessage is: #. Delete Sales -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog header" msgid "Delete Sales" msgstr "" @@ -2824,9 +2890,13 @@ msgctxt "custom search delete, dialog header" msgid "Delete Search" msgstr "" +#. [src.components.Filter.2173195312] - button +#. defaultMessage is: +#. Delete Search #. [src.components.TableFilter.2173195312] - button #. defaultMessage is: #. Delete Search +#: build/locale/src/components/Filter/FilterSearch.json #: build/locale/src/components/TableFilter/FilterChips.json msgctxt "button" msgid "Delete Search" @@ -2893,10 +2963,10 @@ msgctxt "dialog header" msgid "Delete Voucher" msgstr "" -#. [src.discounts.views.367317371] - dialog header +#. [src.discounts.views.VoucherList.367317371] - dialog header #. defaultMessage is: #. Delete Vouchers -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog header" msgid "Delete Vouchers" msgstr "" @@ -2930,11 +3000,11 @@ msgstr "" #. [src.categories.views.712767046] - dialog title #. defaultMessage is: #. Delete categories -#. [src.categories.views.712767046] - dialog title +#. [src.categories.views.CategoryList.712767046] - dialog title #. defaultMessage is: #. Delete categories #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "dialog title" msgid "Delete categories" msgstr "" @@ -2951,10 +3021,10 @@ msgctxt "dialog title" msgid "Delete category" msgstr "Видалити категорію" -#. [src.collections.views.3817188998] - dialog title +#. [src.collections.views.CollectionList.3817188998] - dialog title #. defaultMessage is: #. Delete collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Delete collections" msgstr "" @@ -2967,14 +3037,31 @@ msgctxt "dialog header" msgid "Delete customer" msgstr "" -#. [src.customers.views.1946482599] - dialog header +#. [src.customers.views.CustomerList.1946482599] - dialog header #. defaultMessage is: #. Delete customers -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "dialog header" msgid "Delete customers" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.632633254] - dialog header +#. defaultMessage is: +#. Delete draft order +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "dialog header" +msgid "Delete draft order" +msgstr "" + +#. [src.shipping.views.ShippingZoneDetails.1947090060] - unassign country, +#. dialog header +#. defaultMessage is: +#. Delete from shipping zone +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country, dialog header" +msgid "Delete from shipping zone" +msgstr "" + #. [src.collections.views.942133001] - dialog title #. defaultMessage is: #. Delete image @@ -3035,6 +3122,14 @@ msgctxt "description" msgid "Deleted collection" msgstr "Видалити колекцію" +#. [src.orders.views.OrderDraftList.1648805446] +#. defaultMessage is: +#. Deleted draft orders +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json +msgctxt "description" +msgid "Deleted draft orders" +msgstr "" + #. [menuListDeletedMenu] #. defaultMessage is: #. Deleted menu @@ -3634,14 +3729,6 @@ msgctxt "order history message" msgid "Fulfilled {quantity} items" msgstr "" -#. [src.orders.components.OrderListFilter.2943502192] - order -#. defaultMessage is: -#. Fulfillment Status -#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json -msgctxt "order" -msgid "Fulfillment Status" -msgstr "" - #. [src.orders.components.OrderHistory.3081292385] - order history message #. defaultMessage is: #. Fulfillment confirmation was sent to customer @@ -3798,12 +3885,12 @@ msgctxt "description" msgid "If empty, the preview shows what will be autogenerated." msgstr "" -#. [src.attributes.components.AttributeProperties.2519239682] +#. [src.attributes.components.AttributeProperties.4048785456] #. defaultMessage is: -#. If enable this attribute can be used as a column in product table. +#. If enabled this attribute can be used as a column in product table. #: build/locale/src/attributes/components/AttributeProperties/AttributeProperties.json msgctxt "description" -msgid "If enable this attribute can be used as a column in product table." +msgid "If enabled this attribute can be used as a column in product table." msgstr "" #. [src.attributes.components.AttributeProperties.787251583] @@ -3909,6 +3996,22 @@ msgctxt "product variant stock" msgid "Inventory" msgstr "" +#. [src.staff.components.StaffAddMemberDialog.1481503299] - dialog header +#. defaultMessage is: +#. Invite Staff Member +#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json +msgctxt "dialog header" +msgid "Invite Staff Member" +msgstr "" + +#. [src.staff.components.StaffListPage.797461521] - button +#. defaultMessage is: +#. Invite staff member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "button" +msgid "Invite staff member" +msgstr "" + #. [src.productTypes.components.ProductTypeShipping.2143413921] - switch #. button #. defaultMessage is: @@ -4261,6 +4364,14 @@ msgctxt "voucher requirement" msgid "Minimum quantity of items" msgstr "" +#. [src.configuration.1233229030] +#. defaultMessage is: +#. Miscellaneous +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Miscellaneous" +msgstr "" + #. [src.attributes.components.AttributeDetails.3334509011] - product attribute #. type #. defaultMessage is: @@ -5093,6 +5204,14 @@ msgctxt "description" msgid "Order History" msgstr "" +#. [src.orders.components.OrderListFilter.2222765704] +#. defaultMessage is: +#. Order Status +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +msgctxt "description" +msgid "Order Status" +msgstr "" + #. [src.orders.components.OrderHistory.1230178536] - order history message #. defaultMessage is: #. Order address was updated @@ -5109,13 +5228,13 @@ msgctxt "order history message" msgid "Order confirmation was sent to customer" msgstr "" -#. [src.orders.views.1872939752] +#. [src.orders.views.OrderDraftList.1872939752] #. defaultMessage is: #. Order draft succesfully created #. [src.orders.views.OrderList.1872939752] #. defaultMessage is: #. Order draft succesfully created -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json #: build/locale/src/orders/views/OrderList/OrderList.json msgctxt "description" msgid "Order draft succesfully created" @@ -5780,6 +5899,14 @@ msgctxt "description" msgid "Product Name" msgstr "" +#. [src.configuration.3655543906] +#. defaultMessage is: +#. Product Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Product Settings" +msgstr "" + #. [src.discounts.components.DiscountProducts.4257289053] #. defaultMessage is: #. Product Type @@ -5938,12 +6065,12 @@ msgctxt "order history message" msgid "Products were added to draft order" msgstr "" -#. [src.orders.components.OrderHistory.2574162126] - order history message +#. [src.orders.components.OrderHistory.4067959693] - order history message #. defaultMessage is: -#. Products were removed from draft order +#. Products were deleted from draft order #: build/locale/src/orders/components/OrderHistory/OrderHistory.json msgctxt "order history message" -msgid "Products were removed from draft order" +msgid "Products were deleted from draft order" msgstr "" #. [src.properties] @@ -5970,10 +6097,10 @@ msgctxt "description" msgid "Provided email address does not exist in our database." msgstr "" -#. [src.collections.views.1547167026] - publish collections +#. [src.collections.views.CollectionList.1547167026] - publish collections #. defaultMessage is: #. Publish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "publish collections" msgid "Publish" msgstr "Опублікувати" @@ -6010,10 +6137,10 @@ msgctxt "dialog header" msgid "Publish Products" msgstr "" -#. [src.collections.views.2823425739] - dialog title +#. [src.collections.views.CollectionList.2823425739] - dialog title #. defaultMessage is: #. Publish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Publish collections" msgstr "" @@ -6187,6 +6314,18 @@ msgctxt "shipping method price" msgid "Rate Price" msgstr "" +#. [src.orders.components.OrderListFilter.2415661583] - order status +#. defaultMessage is: +#. Ready to Capture +#. [src.orders.views.OrderList.readyToCapture] - order status +#. defaultMessage is: +#. Ready to Capture +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +#: build/locale/src/orders/views/OrderList/filters.json +msgctxt "order status" +msgid "Ready to Capture" +msgstr "" + #. [src.customers.components.CustomerOrders.3878642352] - section header #. defaultMessage is: #. Recent orders @@ -6235,22 +6374,14 @@ msgctxt "switch button" msgid "Release all stock allocated to this order" msgstr "" -#. [src.auth.components.LoginPage.3182284913] - login -#. defaultMessage is: -#. Remember me -#: build/locale/src/auth/components/LoginPage/LoginPage.json -msgctxt "login" -msgid "Remember me" -msgstr "" - #. [src.categories.views.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. -#. [src.categories.views.3488150607] +#. [src.categories.views.CategoryList.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "description" msgid "Remember this will also delete all products assigned to this category." msgstr "" @@ -6263,39 +6394,6 @@ msgctxt "button" msgid "Remove" msgstr "Видалити" -#. [src.products.views.490753666] - dialog header -#. defaultMessage is: -#. Remove Image -#: build/locale/src/products/views/ProductImage.json -msgctxt "dialog header" -msgid "Remove Image" -msgstr "" - -#. [src.orders.components.OrderDraftCancelDialog.500287069] - dialog header -#. defaultMessage is: -#. Remove draft order -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "dialog header" -msgid "Remove draft order" -msgstr "" - -#. [src.shipping.views.ShippingZoneDetails.254167659] - unassign country, -#. dialog header -#. defaultMessage is: -#. Remove from shipping zone -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country, dialog header" -msgid "Remove from shipping zone" -msgstr "" - -#. [src.orders.views.3880993240] -#. defaultMessage is: -#. Removed draft orders -#: build/locale/src/orders/views/OrderDraftList.json -msgctxt "description" -msgid "Removed draft orders" -msgstr "" - #. [src.pages.views.1457312643] #. defaultMessage is: #. Removed page @@ -6461,6 +6559,18 @@ msgctxt "button" msgid "Save" msgstr "Зберегти" +#. [src.components.Filter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#. [src.components.TableFilter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#: build/locale/src/components/Filter/FilterSearch.json +#: build/locale/src/components/TableFilter/FilterChips.json +msgctxt "button" +msgid "Save Custom Search" +msgstr "" + #. [src.components.SaveFilterTabDialog.1514415736] - save filter tab, header #. defaultMessage is: #. Save Custom Search @@ -6469,14 +6579,6 @@ msgctxt "save filter tab, header" msgid "Save Custom Search" msgstr "" -#. [src.components.TableFilter.1514415736] - button -#. defaultMessage is: -#. Save Custom Search -#: build/locale/src/components/TableFilter/FilterChips.json -msgctxt "button" -msgid "Save Custom Search" -msgstr "" - #. [src.products.components.ProductVariantCreatePage.2853608829] - button #. defaultMessage is: #. Save variant @@ -6493,6 +6595,14 @@ msgctxt "description" msgid "Saved changes" msgstr "" +#. [src.attributes.components.AttributeListPage.3916653510] +#. defaultMessage is: +#. Search Attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "description" +msgid "Search Attribute" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.902296540] #. defaultMessage is: #. Search Attributes @@ -6509,10 +6619,30 @@ msgctxt "description" msgid "Search Categories" msgstr "" +#. [src.categories.components.CategoryListPage.3841025483] +#. defaultMessage is: +#. Search Category +#. [src.translations.components.TranslationsEntitiesListPage.3841025483] +#. defaultMessage is: +#. Search Category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Category" +msgstr "" + +#. [src.collections.components.CollectionListPage.4057224233] +#. defaultMessage is: +#. Search Collection #. [src.components.AssignCollectionDialog.4057224233] #. defaultMessage is: #. Search Collection +#. [src.translations.components.TranslationsEntitiesListPage.4057224233] +#. defaultMessage is: +#. Search Collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json #: build/locale/src/components/AssignCollectionDialog/AssignCollectionDialog.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json msgctxt "description" msgid "Search Collection" msgstr "" @@ -6525,6 +6655,14 @@ msgctxt "description" msgid "Search Countries" msgstr "" +#. [src.customers.components.CustomerListPage.1643417013] +#. defaultMessage is: +#. Search Customer +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "description" +msgid "Search Customer" +msgstr "" + #. [src.orders.components.OrderCustomer.2433460203] #. defaultMessage is: #. Search Customers @@ -6533,6 +6671,14 @@ msgctxt "description" msgid "Search Customers" msgstr "" +#. [src.orders.components.OrderDraftListPage.77765281] +#. defaultMessage is: +#. Search Draft +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "description" +msgid "Search Draft" +msgstr "" + #. [src.translations.components.TranslationsCategoriesPage.1406947243] #. defaultMessage is: #. Search Engine Description @@ -6613,6 +6759,34 @@ msgctxt "description" msgid "Search Orders..." msgstr "" +#. [src.translations.components.TranslationsEntitiesListPage.2559018090] +#. defaultMessage is: +#. Search Page +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Page" +msgstr "" + +#. [src.translations.components.TranslationsEntitiesListPage.2105464697] +#. defaultMessage is: +#. Search Product +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product" +msgstr "" + +#. [src.productTypes.components.ProductTypeListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#. [src.translations.components.TranslationsEntitiesListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product Type" +msgstr "" + #. [src.components.AssignProductDialog.2850255786] #. defaultMessage is: #. Search Products @@ -6625,14 +6799,46 @@ msgctxt "description" msgid "Search Products" msgstr "" -#. [src.products.components.ProductListPage.3550330425] +#. [src.products.components.ProductListFilter.3550330425] #. defaultMessage is: #. Search Products... -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Search Products..." msgstr "" +#. [src.discounts.components.SaleListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#. [src.translations.components.TranslationsEntitiesListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Sale" +msgstr "" + +#. [src.staff.components.StaffListPage.61043583] +#. defaultMessage is: +#. Search Staff Member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "description" +msgid "Search Staff Member" +msgstr "" + +#. [src.discounts.components.VoucherListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#. [src.translations.components.TranslationsEntitiesListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Voucher" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.524117994] #. defaultMessage is: #. Search by attribute name @@ -6739,10 +6945,10 @@ msgctxt "description" msgid "Select all orders where:" msgstr "" -#. [src.products.components.ProductListPage.1421689426] +#. [src.products.components.ProductListFilter.1421689426] #. defaultMessage is: #. Select all products where: -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Select all products where:" msgstr "" @@ -6828,6 +7034,14 @@ msgctxt "description" msgid "Set plugin as Active" msgstr "" +#. [src.components.VisibilityCard.292404896] +#. defaultMessage is: +#. Set publication date +#: build/locale/src/components/VisibilityCard/VisibilityCard.json +msgctxt "description" +msgid "Set publication date" +msgstr "" + #. [src.discounts.shipment] - voucher discount #. defaultMessage is: #. Shipment @@ -7093,6 +7307,14 @@ msgctxt "staff section name" msgid "Staff Members" msgstr "" +#. [src.configuration.3140151600] +#. defaultMessage is: +#. Staff Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Staff Settings" +msgstr "" + #. [src.standard] - tax rate #. defaultMessage is: #. Standard @@ -8077,10 +8299,10 @@ msgctxt "payment status" msgid "Unpaid" msgstr "" -#. [src.collections.views.2237014112] - unpublish collections +#. [src.collections.views.CollectionList.2237014112] - unpublish collections #. defaultMessage is: #. Unpublish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "unpublish collections" msgid "Unpublish" msgstr "Сховати" @@ -8117,10 +8339,10 @@ msgctxt "dialog header" msgid "Unpublish Products" msgstr "" -#. [src.collections.views.2637364047] - dialog title +#. [src.collections.views.CollectionList.2637364047] - dialog title #. defaultMessage is: #. Unpublish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Unpublish collections" msgstr "" @@ -8620,6 +8842,22 @@ msgctxt "description" msgid "ZIP / Postal code" msgstr "" +#. [src.productTypes.components.ProductTypeListPage.3479705616] - button +#. defaultMessage is: +#. create product type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "button" +msgid "create product type" +msgstr "" + +#. [src.staff.views.1308770978] - dialog header +#. defaultMessage is: +#. delete Staff User +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "dialog header" +msgid "delete Staff User" +msgstr "" + #. [orderPaymentVATDoesNotApply] - vat not included in order price #. defaultMessage is: #. does not apply @@ -8693,19 +8931,35 @@ msgctxt "product status is set as" msgid "is set as" msgstr "" -#. [src.staff.views.2240444792] - dialog header -#. defaultMessage is: -#. remove Staff User -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "dialog header" -msgid "remove Staff User" -msgstr "" - -#. [src.components.VisibilityCard.1815688500] +#. [src.collections.components.CollectionCreatePage.1815688500] - collection #. defaultMessage is: #. since {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.1815688500] - collection +#. defaultMessage is: +#. since {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "since {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.1815688500] - page +#. defaultMessage is: +#. since {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "since {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#. [src.products.components.ProductUpdatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "since {date}" msgstr "" @@ -8733,11 +8987,35 @@ msgctxt "weight" msgid "to {value} {unit}" msgstr "" -#. [src.components.VisibilityCard.2001551496] +#. [src.collections.components.CollectionCreatePage.2001551496] - collection #. defaultMessage is: #. will be visible from {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.2001551496] - collection +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "will be visible from {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.2001551496] - page +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "will be visible from {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#. [src.products.components.ProductUpdatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "will be visible from {date}" msgstr "" diff --git a/locale/vi.json b/locale/vi.json index 7225883ea..ad9b968fe 100644 --- a/locale/vi.json +++ b/locale/vi.json @@ -1 +1 @@ -{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.350498821":"","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.2519239682":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"Tên","src.categories.components.CategoryProducts.636461959":"Tên","src.collections.components.CollectionProducts.636461959":"Tên","src.products.components.ProductDetailsForm.636461959":"Tên","src.collections.components.CollectionDetails.636461959":"Tên","src.components.ProductList.636461959":"Tên","src.discounts.components.SaleInfo.636461959":"Tên","src.discounts.components.SaleList.636461959":"Tên","src.discounts.components.SaleSummary.636461959":"Tên","menuItemDialogNameLabel":"Tên","src.products.components.ProductVariants.636461959":"Tên","src.shipping.components.ShippingZoneRates.636461959":"Tên","src.shipping.components.ShippingZonesList.636461959":"Tên","src.staff.components.StaffList.636461959":"Tên","src.translations.components.TranslationsEntitiesList.636461959":"Tên","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.254756045":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.3182284913":"","src.auth.components.LoginPage.109182747":"","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"","src.categories.views.2004894945":"","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.3229914152":"","src.categories.components.CategoryList.435697837":"","src.categories.components.CategoryList.2159874182":"","src.categories.components.CategoryUpdatePage.2159874182":"","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.228151782":"","src.categories.components.CategoryProducts.2968663655":"Sản phẩm","src.categories.components.CategoryUpdatePage.2968663655":"Sản phẩm","src.discounts.components.DiscountCategories.2968663655":"Sản phẩm","src.discounts.components.DiscountCollections.2968663655":"Sản phẩm","src.products":"Sản phẩm","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryProducts.3554578821":"","src.categories.components.CategoryProductsCard.3554578821":"","src.categories.components.CategoryProducts.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProducts.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.categories.components.CategoryProductsCard.4164156574":"","src.categories.views.1754466114":"","src.categories.views.1140231710":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.712767046":"","src.categories.views.299584400":"","src.categories.views.844574071":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.collections.components.CollectionCreatePage.3958681866":"","src.collections.components.CollectionListPage.3958681866":"","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"","src.availability":"","src.collections.components.CollectionList.3640454975":"Đã xuất bản","src.collections.components.CollectionProducts.3640454975":"Đã xuất bản","src.discounts.components.DiscountProducts.3640454975":"Đã xuất bản","src.components.ProductList.3640454975":"Đã xuất bản","src.products.components.ProductListPage.3640454975":"Đã xuất bản","src.pages.components.PageList.3640454975":"Đã xuất bản","src.products.views.ProductList.published":"Đã xuất bản","src.collections.components.CollectionList.2341910657":"Chưa xuất bản","src.collections.components.CollectionProducts.2341910657":"Chưa xuất bản","src.discounts.components.DiscountProducts.2341910657":"Chưa xuất bản","src.components.ProductList.2341910657":"Chưa xuất bản","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.686910896":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"","src.collections.views.2402899582":"","src.collections.views.2237014112":"Ngừng công bố","src.pages.views.2237014112":"Ngừng công bố","src.products.views.ProductList.2237014112":"Ngừng công bố","src.collections.views.1547167026":"Công bố","src.pages.views.1547167026":"Công bố","src.products.views.ProductList.1547167026":"Công bố","src.collections.views.2823425739":"","src.collections.views.1348793822":"","src.collections.views.2637364047":"","src.collections.views.3944356444":"","src.collections.views.3817188998":"","src.collections.views.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"Đăng xuất","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.4057224233":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"","src.components.ErrorMessageCard.2845142593":"","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.FilterBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.ProductList.1134347598":"Giá","src.orders.components.OrderDraftDetailsProducts.1134347598":"Giá","src.orders.components.OrderFulfillment.1134347598":"Giá","src.products.components.ProductListPage.1134347598":"Giá","src.products.components.ProductPricing.1134347598":"Giá","src.orders.components.OrderUnfulfilledItems.1134347598":"Giá","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"Giá","src.shipping.components.ShippingZoneRates.1134347598":"Giá","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"","src.pages.components.PageList.1459686496":"","src.products.components.ProductListFilter.1459686496":"","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"","src.products.views.ProductList.hidden":"","src.components.VisibilityCard.1815688500":"","src.components.VisibilityCard.2001551496":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","configurationMenuStaff":"","configurationMenuShipping":"","configurationMenuTaxes":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","src.customers.components.CustomerAddress.1320082647":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"","src.customers.components.CustomerAddresses.3517722732":"","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"Địa chỉ","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"Ghi chú","src.orders.components.OrderCustomerNote.1520756907":"Ghi chú","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"Ghi chú","src.customers.components.CustomerDetails.577013340":"Ghi chú","src.customers.components.CustomerCreatePage.1934221653":"","src.customers.components.CustomerListPage.1934221653":"","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerOrders.3878642352":"","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"Ngày","src.orders.components.OrderDraftList.4205493358":"Ngày","src.orders.components.OrderList.4205493358":"Ngày","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"","src.orders.components.OrderListFilter.1756106276":"","src.products.components.ProductListFilter.1756106276":"","src.products.components.ProductVariants.1756106276":"","src.customers.components.CustomerOrders.878013594":"Tổng","src.orders.components.OrderDraftDetailsProducts.878013594":"Tổng","src.orders.components.OrderDraftDetailsSummary.878013594":"Tổng","src.orders.components.OrderDraftList.878013594":"Tổng","src.orders.components.OrderFulfillment.878013594":"Tổng","src.orders.components.OrderUnfulfilledItems.878013594":"Tổng","src.orders.components.OrderList.878013594":"Tổng","src.orders.components.OrderPayment.878013594":"Tổng","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.1946482599":"","src.customers.views.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"Giá trị","src.discounts.components.SaleSummary.1148029984":"Giá trị","src.discounts.components.VoucherList.1148029984":"Giá trị","src.discounts.components.VoucherSummary.1148029984":"Giá trị","src.discounts.components.VoucherValue.1148029984":"Giá trị","src.products.components.ProductAttributes.1148029984":"Giá trị","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.1742771332":"","src.discounts.components.SalePricing.1099355007":"","src.products.components.ProductPricing.1099355007":"","src.products.components.ProductVariantPrice.1099355007":"","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"Các nước","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"Mã","src.discounts.components.VoucherSummary.78726751":"Mã","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.1536809153":"","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"Sản phẩm cụ thể","src.discounts.shipment":"Vận chuyển","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.2809303671":"","src.discounts.views.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.367317371":"","src.discounts.views.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"Hủy","src.orders.views.OrderList.3528672691":"Hủy","src.confirm":"","src.delete":"","src.edit":"Chỉnh sửa","src.manage":"","src.remove":"","src.save":"","src.show":"","src.undo":"","src.attributes":"","src.products.components.ProductAttributes.4153345096":"","src.categories":"Danh Mục","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"Bộ sưu tập","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"","src.customers":"","src.draftOrders":"","src.home":"Trang chủ","src.navigation":"","src.orders":"","src.pages":"","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"Thuế","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"Thuế","src.taxes.components.CountryListPage.3955023266":"Thuế","src.translations":"","src.vouchers":"","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"","src.partiallyPaid":"","src.partiallyRefunded":"Hoàn tiền một phần","src.refunded":"Hoàn tiền hết","src.unpaid":"","src.cancelled":"Đã hủy","src.draft":"","src.fulfilled":"Đã hoàn thành","src.orders.views.OrderList.fulfilled":"Đã hoàn thành","src.orders.components.OrderListFilter.1712863026":"Đã hoàn thành","src.partiallyFulfilled":"Đã hoàn thành một phần","src.unfulfilled":"Chưa hoàn thành","src.orders.views.OrderList.unfulfilled":"Chưa hoàn thành","src.orders.components.OrderListFilter.1751787272":"Chưa hoàn thành","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","src.1395232177":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"Link","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"","src.orders.components.OrderDetailsPage.1854613983":"","src.orders.components.OrderDraftPage.1854613983":"","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"Khách hàng","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"Khách hàng","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"","src.orders.components.OrderCustomerEditDialog.1411666943":"","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.500287069":"","src.orders.components.OrderDraftCancelDialog.3199827590":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"Sản phẩm","src.orders.components.OrderUnfulfilledItems.1895667608":"Sản phẩm","src.orders.components.OrderDraftDetailsProducts.2796503714":"Số lượng","src.orders.components.OrderFulfillment.2796503714":"Số lượng","src.orders.components.OrderFulfillmentDialog.2796503714":"Số lượng","src.orders.components.OrderUnfulfilledItems.2796503714":"Số lượng","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"Tạm tính","src.orders.components.OrderPayment.781550514":"Tạm tính","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"","src.orders.components.OrderListPage.2826235371":"","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"","src.orders.components.OrderFulfillmentCancelDialog.732594284":"","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"SKU","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"Tracking number","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.2574162126":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"Đơn đặt hàng đã được thanh toán đầy đủ","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"Đơn đặt hàng đã được đặt","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2943502192":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"Vận chuyển","src.productTypes.components.ProductTypeShipping.1325966144":"Vận chuyển","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"Vận chuyển","src.orders.components.OrderPayment.3768782744":"","src.orders.components.OrderPayment.2320183694":"","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"Chụp","src.orders.components.OrderPayment.2845258362":"Hoàn tiền","src.orders.components.OrderPayment.2444197639":"Trống","src.orders.components.OrderPayment.3500506678":"","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"Số tiền","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.2775402904":"","src.products.components.ProductListPage.2775402904":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.3880993240":"","src.orders.views.1161115149":"","src.orders.views.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.755314116":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"Tiêu đề","src.pages.components.PageList.1124600214":"Tiêu đề","src.pages.components.PageInfo.1116746286":"Nội dung","src.translations.components.TranslationsPagesPage.1116746286":"Nội dung","src.pages.components.PageList.3478065224":"Slug link","src.pages.components.PageSlug.3478065224":"Slug link","src.productTypes.components.ProductTypeAttributes.3478065224":"Slug link","src.pages.components.PageList.3767550649":"","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.1767905232":"","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.3785394515":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"","src.products.components.ProductVariantImages.3240888698":"","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"","src.products.components.ProductVariantStock.3841616483":"","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListPage.821159718":"","src.products.components.ProductListPage.1421689426":"","src.products.components.ProductListPage.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"","prodictStockInventoryLabel":"","src.products.components.ProductVariantStock.3490038570":"","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"","src.products.components.ProductVariants.2153006789":"","src.products.components.ProductVariantNavigation.2845381934":"","src.products.components.ProductVariants.2845381934":"","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1542417144":"","src.products.views.1591632382":"","src.products.views.490753666":"","src.products.views.672103788":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.1694086800":"","src.products.views.ProductList.224127438":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.products.views.2178905289":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1756957616":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.889729490":"","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.4080551769":"","src.productTypes.views.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.352297149":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2474410767":"","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.254167659":"","src.shipping.views.ShippingZoneDetails.1790261672":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"Khoá","src.siteSettings.components.SiteSettingsKeys.2446088470":"Khoá","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.3490059488":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"Quyền hạn","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.3247064221":"Kích hoạt","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.802625341":"","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"Người dùng đã kích hoạt","src.staff.views.2240444792":"","src.staff.views.2728048444":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file +{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.3824684885":"","src.attributes.components.AttributeListPage.2417065806":"","src.attributes.components.AttributeListPage.3916653510":"","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.4048785456":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"Tên","src.categories.components.CategoryProductList.636461959":"Tên","src.components.ProductList.636461959":"Tên","src.products.components.ProductList.636461959":"Tên","src.collections.components.CollectionDetails.636461959":"Tên","src.collections.components.CollectionProducts.636461959":"Tên","src.products.components.ProductDetailsForm.636461959":"Tên","src.discounts.components.SaleInfo.636461959":"Tên","src.discounts.components.SaleList.636461959":"Tên","src.discounts.components.SaleSummary.636461959":"Tên","menuItemDialogNameLabel":"Tên","src.plugins.components.PluginsList.636461959":"Tên","src.products.components.ProductVariants.636461959":"Tên","src.shipping.components.ShippingZoneRates.636461959":"Tên","src.shipping.components.ShippingZonesList.636461959":"Tên","src.staff.components.StaffList.636461959":"Tên","src.translations.components.TranslationsEntitiesList.636461959":"Tên","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.351422234":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.109182747":"","src.auth.components.LoginPage.4028609483":"","src.auth.components.NewPasswordPage.1915811227":"","src.auth.components.NewPasswordPage.1254879564":"","src.auth.components.NewPasswordPage.2799926859":"","src.auth.components.NewPasswordPage.4253911811":"","src.auth.components.NewPasswordPage.2342634351":"","src.auth.components.ResetPasswordPage.2370700732":"","src.auth.components.ResetPasswordPage.3663311080":"","src.auth.components.ResetPasswordSuccessPage.4066297200":"","src.auth.components.ResetPasswordSuccessPage.2245157344":"","src.auth.views.2388238158":"","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"","src.categories.views.2004894945":"","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.2159874182":"","src.categories.components.CategoryUpdatePage.2159874182":"","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.1140231710":"","src.categories.views.1140231710":"","src.categories.components.CategoryListPage.4294878092":"","src.categories.components.CategoryListPage.3841025483":"","src.translations.components.TranslationsEntitiesListPage.3841025483":"","src.categories.components.CategoryProductList.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductList.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProductList.3640454975":"Đã xuất bản","src.components.ProductList.3640454975":"Đã xuất bản","src.products.components.ProductList.3640454975":"Đã xuất bản","src.products.components.ProductListPage.3640454975":"Đã xuất bản","productStatusLabel":"Đã xuất bản","src.collections.components.CollectionList.3640454975":"Đã xuất bản","src.collections.components.CollectionProducts.3640454975":"Đã xuất bản","src.discounts.components.DiscountProducts.3640454975":"Đã xuất bản","src.pages.components.PageList.3640454975":"Đã xuất bản","src.products.views.ProductList.published":"Đã xuất bản","src.categories.components.CategoryProductList.1134347598":"Giá","src.orders.components.OrderFulfillment.1134347598":"Giá","src.products.components.ProductList.1134347598":"Giá","src.products.components.ProductListPage.1134347598":"Giá","src.products.components.ProductPricing.1134347598":"Giá","src.components.ProductList.1134347598":"Giá","src.orders.components.OrderDraftDetailsProducts.1134347598":"Giá","src.orders.components.OrderUnfulfilledItems.1134347598":"Giá","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"Giá","src.shipping.components.ShippingZoneRates.1134347598":"Giá","src.categories.components.CategoryProductList.2341910657":"Chưa xuất bản","src.products.components.ProductList.2341910657":"Chưa xuất bản","src.collections.components.CollectionList.2341910657":"Chưa xuất bản","src.collections.components.CollectionProducts.2341910657":"Chưa xuất bản","src.discounts.components.DiscountProducts.2341910657":"Chưa xuất bản","src.components.ProductList.2341910657":"Chưa xuất bản","src.categories.components.CategoryProductList.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.products.components.ProductList.1657559629":"","src.categories.components.CategoryProducts.4164156574":"","src.categories.components.CategoryProducts.3554578821":"","src.categories.components.CategoryUpdatePage.2968663655":"Sản phẩm","src.discounts.components.DiscountCategories.2968663655":"Sản phẩm","src.discounts.components.DiscountCollections.2968663655":"Sản phẩm","src.products":"Sản phẩm","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryUpdatePage.3229914152":"","src.categories.components.CategoryUpdatePage.770296100":"","src.categories.views.1754466114":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.CategoryList.3488150607":"","src.categories.views.712767046":"","src.categories.views.CategoryList.712767046":"","src.categories.views.299584400":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.categories.views.CategoryList.2144707585":"","src.collections.components.CollectionCreatePage.3958681866":"","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionCreatePage.2001551496":"","src.collections.components.CollectionDetailsPage.2001551496":"","src.pages.components.PageDetailsPage.2001551496":"","src.products.components.ProductCreatePage.2001551496":"","src.products.components.ProductUpdatePage.2001551496":"","src.collections.components.CollectionCreatePage.1815688500":"","src.collections.components.CollectionDetailsPage.1815688500":"","src.pages.components.PageDetailsPage.1815688500":"","src.products.components.ProductCreatePage.1815688500":"","src.products.components.ProductUpdatePage.1815688500":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"","src.availability":"","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionListPage.686910896":"","src.collections.views.686910896":"","src.collections.components.CollectionListPage.1631917001":"","src.collections.components.CollectionListPage.4057224233":"","src.components.AssignCollectionDialog.4057224233":"","src.translations.components.TranslationsEntitiesListPage.4057224233":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"","src.collections.views.2402899582":"","src.collections.views.CollectionList.2237014112":"Ngừng công bố","src.pages.views.2237014112":"Ngừng công bố","src.products.views.ProductList.2237014112":"Ngừng công bố","src.collections.views.CollectionList.1547167026":"Công bố","src.pages.views.1547167026":"Công bố","src.products.views.ProductList.1547167026":"Công bố","src.collections.views.CollectionList.2823425739":"","src.collections.views.CollectionList.1348793822":"","src.collections.views.CollectionList.2637364047":"","src.collections.views.CollectionList.3944356444":"","src.collections.views.CollectionList.3817188998":"","src.collections.views.CollectionList.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"Đăng xuất","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"","src.components.ErrorMessageCard.2845142593":"","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.Filter.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.Filter.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.FilterBar.2340527467":"","src.components.SearchBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"","src.pages.components.PageList.1459686496":"","src.products.components.ProductListFilter.1459686496":"","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"","src.products.views.ProductList.hidden":"","src.components.VisibilityCard.292404896":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","src.configuration.2326418019":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","src.configuration.3655543906":"","configurationMenuShipping":"","configurationMenuTaxes":"","src.configuration.3140151600":"","configurationMenuStaff":"","src.configuration.1233229030":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","configurationPluginsPages":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"","src.customers.components.CustomerAddresses.3517722732":"","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"Địa chỉ","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"Ghi chú","src.orders.components.OrderCustomerNote.1520756907":"Ghi chú","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"Ghi chú","src.customers.components.CustomerDetails.577013340":"Ghi chú","src.customers.components.CustomerCreatePage.1934221653":"","src.customers.components.CustomerListPage.1934221653":"","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerListPage.477293306":"","src.customers.components.CustomerListPage.1643417013":"","src.customers.components.CustomerOrders.3878642352":"","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"Ngày","src.orders.components.OrderDraftList.4205493358":"Ngày","src.orders.components.OrderList.4205493358":"Ngày","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"","src.orders.components.OrderListFilter.1756106276":"","src.plugins.components.PluginInfo.1756106276":"","src.products.components.ProductListFilter.1756106276":"","src.products.components.ProductVariants.1756106276":"","src.customers.components.CustomerOrders.878013594":"Tổng","src.orders.components.OrderDraftDetailsProducts.878013594":"Tổng","src.orders.components.OrderDraftDetailsSummary.878013594":"Tổng","src.orders.components.OrderDraftList.878013594":"Tổng","src.orders.components.OrderFulfillment.878013594":"Tổng","src.orders.components.OrderUnfulfilledItems.878013594":"Tổng","src.orders.components.OrderList.878013594":"Tổng","src.orders.components.OrderPayment.878013594":"Tổng","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.CustomerList.1946482599":"","src.customers.views.CustomerList.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","src.discounts.components.SaleListPage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"Giá trị","src.discounts.components.SaleSummary.1148029984":"Giá trị","src.discounts.components.VoucherList.1148029984":"Giá trị","src.discounts.components.VoucherSummary.1148029984":"Giá trị","src.discounts.components.VoucherValue.1148029984":"Giá trị","src.products.components.ProductAttributes.1148029984":"Giá trị","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.3907768880":"","src.discounts.components.SaleListPage.1866913828":"","src.translations.components.TranslationsEntitiesListPage.1866913828":"","src.discounts.components.SalePricing.1099355007":"","src.products.components.ProductPricing.1099355007":"","src.products.components.ProductVariantPrice.1099355007":"","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"Các nước","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"Mã","src.discounts.components.VoucherSummary.78726751":"Mã","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.614836274":"","src.discounts.components.VoucherListPage.1112241061":"","src.discounts.components.VoucherListPage.1930485532":"","src.translations.components.TranslationsEntitiesListPage.1930485532":"","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"Sản phẩm cụ thể","src.discounts.shipment":"Vận chuyển","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.SaleList.2809303671":"","src.discounts.views.SaleList.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.VoucherList.367317371":"","src.discounts.views.VoucherList.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.somethingWentWrong":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"Hủy","src.orders.views.OrderList.3528672691":"Hủy","src.confirm":"","src.delete":"","src.edit":"Chỉnh sửa","src.manage":"","src.remove":"","src.save":"","src.show":"","src.undo":"","src.attributes":"","src.products.components.ProductAttributes.4153345096":"","src.categories":"Danh Mục","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"Bộ sưu tập","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"","src.customers":"","src.draftOrders":"","src.home":"Trang chủ","src.navigation":"","src.orders":"","src.pages":"","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.plugins":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"Thuế","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"Thuế","src.taxes.components.CountryListPage.3955023266":"Thuế","src.translations":"","src.vouchers":"","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"","src.partiallyPaid":"","src.partiallyRefunded":"Hoàn tiền một phần","src.refunded":"Hoàn tiền hết","src.unpaid":"","src.cancelled":"Đã hủy","src.draft":"","src.fulfilled":"Đã hoàn thành","src.orders.views.OrderList.fulfilled":"Đã hoàn thành","src.orders.components.OrderListFilter.1712863026":"Đã hoàn thành","src.partiallyFulfilled":"Đã hoàn thành một phần","src.unfulfilled":"Chưa hoàn thành","src.orders.views.OrderList.unfulfilled":"Chưa hoàn thành","src.orders.components.OrderListFilter.1751787272":"Chưa hoàn thành","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"Link","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"","src.orders.components.OrderDetailsPage.1854613983":"","src.orders.components.OrderDraftPage.1854613983":"","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"Khách hàng","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"Khách hàng","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"","src.orders.components.OrderCustomerEditDialog.1411666943":"","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.632633254":"","src.orders.components.OrderDraftCancelDialog.36681973":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"Sản phẩm","src.orders.components.OrderUnfulfilledItems.1895667608":"Sản phẩm","src.orders.components.OrderDraftDetailsProducts.2796503714":"Số lượng","src.orders.components.OrderFulfillment.2796503714":"Số lượng","src.orders.components.OrderFulfillmentDialog.2796503714":"Số lượng","src.orders.components.OrderUnfulfilledItems.2796503714":"Số lượng","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"Tạm tính","src.orders.components.OrderPayment.781550514":"Tạm tính","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"","src.orders.components.OrderListPage.2826235371":"","src.orders.components.OrderDraftListPage.551325728":"","src.orders.components.OrderDraftListPage.77765281":"","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"","src.orders.components.OrderFulfillmentCancelDialog.732594284":"","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"SKU","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"Tracking number","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.4067959693":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"Đơn đặt hàng đã được thanh toán đầy đủ","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"Đơn đặt hàng đã được đặt","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2415661583":"","src.orders.views.OrderList.readyToCapture":"","src.orders.components.OrderListFilter.2222765704":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"Vận chuyển","src.productTypes.components.ProductTypeShipping.1325966144":"Vận chuyển","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"Vận chuyển","src.orders.components.OrderPayment.3768782744":"","src.orders.components.OrderPayment.2320183694":"","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"Chụp","src.orders.components.OrderPayment.2845258362":"Hoàn tiền","src.orders.components.OrderPayment.2444197639":"Trống","src.orders.components.OrderPayment.3500506678":"","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"Số tiền","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.1542417144":"","src.products.components.ProductListPage.1542417144":"","src.products.views.1542417144":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.OrderDraftList.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.OrderDraftList.1648805446":"","src.orders.views.OrderDraftList.1161115149":"","src.orders.views.OrderDraftList.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.1068617485":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"Tiêu đề","src.pages.components.PageList.1124600214":"Tiêu đề","src.pages.components.PageInfo.1116746286":"Nội dung","src.translations.components.TranslationsPagesPage.1116746286":"Nội dung","src.pages.components.PageList.3478065224":"Slug link","src.pages.components.PageSlug.3478065224":"Slug link","src.productTypes.components.ProductTypeAttributes.3478065224":"Slug link","src.pages.components.PageList.3767550649":"","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.3785394515":"","src.pages.views.3785394515":"","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.plugins.components.PluginInfo.3425535100":"","src.plugins.components.PluginsDetailsPage.3425535100":"","src.plugins.components.PluginInfo.1049131348":"","src.plugins.components.PluginInfo.4013064767":"","src.plugins.components.PluginsDetailsPage.3352026836":"","src.plugins.components.PluginsDetailsPage.2277745418":"","src.plugins.components.PluginsDetailsPage.1970881031":"","src.plugins.components.PluginSettings.1970881031":"","src.plugins.components.PluginsDetailsPage.4241018152":"","src.plugins.components.PluginsList.3247064221":"Kích hoạt","src.staff.components.StaffList.3247064221":"Kích hoạt","src.plugins.components.PluginsList.4120604650":"","src.plugins.components.PluginsList.666641390":"","src.plugins.views.100549097":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"","src.products.components.ProductVariantImages.3240888698":"","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"","src.products.components.ProductVariantStock.3841616483":"","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListFilter.821159718":"","src.products.components.ProductListFilter.1421689426":"","src.products.components.ProductListFilter.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"","prodictStockInventoryLabel":"","src.products.components.ProductVariantStock.3490038570":"","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"","src.products.components.ProductVariants.2153006789":"","src.products.components.ProductVariantNavigation.2845381934":"","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.3989383405":"","src.products.views.3989383405":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1591632382":"","src.products.views.1731766393":"","src.products.views.2880386427":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1217376589":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.3479705616":"","src.productTypes.components.ProductTypeListPage.1776073799":"","src.productTypes.components.ProductTypeListPage.3420445375":"","src.translations.components.TranslationsEntitiesListPage.3420445375":"","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.ProductTypeList.4080551769":"","src.productTypes.views.ProductTypeList.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRates.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2673544109":"","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.1947090060":"","src.shipping.views.ShippingZoneDetails.131963671":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"Khoá","src.siteSettings.components.SiteSettingsKeys.2446088470":"Khoá","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.1481503299":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"Quyền hạn","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.797461521":"","src.staff.components.StaffListPage.2852350932":"","src.staff.components.StaffListPage.61043583":"","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"Người dùng đã kích hoạt","src.staff.views.1308770978":"","src.staff.views.8878988":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.2105464697":"","src.translations.components.TranslationsEntitiesListPage.2559018090":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file diff --git a/locale/vi.po b/locale/vi.po index 7b4ab023d..32fd62460 100644 --- a/locale/vi.po +++ b/locale/vi.po @@ -9,7 +9,7 @@ # msgid "" msgstr "" -"POT-Creation-Date: 2019-09-06T13:56:36.897Z\n" +"POT-Creation-Date: 2019-09-16T15:25:09.340Z\n" "Last-Translator: Tran Van , 2019\n" "Language-Team: Vietnamese (https://www.transifex.com/mirumee/teams/34782/vi/)\n" "MIME-Version: 1.0\n" @@ -147,22 +147,6 @@ msgctxt "create new menu item, header" msgid "Add Item" msgstr "" -#. [menuCreateDialogHeader] - dialog header -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json -msgctxt "dialog header" -msgid "Add Menu" -msgstr "" - -#. [menuListPageAddMenu] - button -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json -msgctxt "button" -msgid "Add Menu" -msgstr "" - #. [src.siteSettings.components.SiteSettingsKeyDialog.1238948746] - dialog #. header #. defaultMessage is: @@ -172,14 +156,6 @@ msgctxt "dialog header" msgid "Add New Authorization Key" msgstr "" -#. [src.pages.components.PageDetailsPage.755314116] - page header -#. defaultMessage is: -#. Add Page -#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json -msgctxt "page header" -msgid "Add Page" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.2892088870] - dialog header #. defaultMessage is: #. Add Price Rate @@ -188,38 +164,6 @@ msgctxt "dialog header" msgid "Add Price Rate" msgstr "" -#. [src.orders.components.OrderProductAddDialog.2775402904] - dialog header -#. defaultMessage is: -#. Add Product -#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json -msgctxt "dialog header" -msgid "Add Product" -msgstr "" - -#. [src.products.components.ProductListPage.2775402904] - button -#. defaultMessage is: -#. Add Product -#: build/locale/src/products/components/ProductListPage/ProductListPage.json -msgctxt "button" -msgid "Add Product" -msgstr "" - -#. [src.discounts.components.SaleListPage.1742771332] - button -#. defaultMessage is: -#. Add Sale -#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json -msgctxt "button" -msgid "Add Sale" -msgstr "" - -#. [src.staff.components.StaffAddMemberDialog.3490059488] - dialog header -#. defaultMessage is: -#. Add Staff Member -#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json -msgctxt "dialog header" -msgid "Add Staff Member" -msgstr "" - #. [src.attributes.components.AttributeValueEditDialog.1841790893] - add #. attribute value #. defaultMessage is: @@ -229,14 +173,6 @@ msgctxt "add attribute value" msgid "Add Value" msgstr "" -#. [src.products.views.2178905289] - header -#. defaultMessage is: -#. Add Variant -#: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "header" -msgid "Add Variant" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.1397795758] - add weight #. based shipping method, dialog header #. defaultMessage is: @@ -254,14 +190,6 @@ msgctxt "button" msgid "Add address" msgstr "" -#. [src.attributes.components.AttributeListPage.350498821] - button -#. defaultMessage is: -#. Add attribute -#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json -msgctxt "button" -msgid "Add attribute" -msgstr "" - #. [src.siteSettings.components.SiteSettingsKeyDialog.50561933] - button #. defaultMessage is: #. Add authentication @@ -270,14 +198,6 @@ msgctxt "button" msgid "Add authentication" msgstr "" -#. [src.categories.components.CategoryListPage.228151782] - button -#. defaultMessage is: -#. Add category -#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json -msgctxt "button" -msgid "Add category" -msgstr "" - #. [src.collections.components.CollectionCreatePage.3958681866] - page header #. defaultMessage is: #. Add collection @@ -286,14 +206,6 @@ msgctxt "page header" msgid "Add collection" msgstr "" -#. [src.collections.components.CollectionListPage.3958681866] - button -#. defaultMessage is: -#. Add collection -#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json -msgctxt "button" -msgid "Add collection" -msgstr "" - #. [src.customers.components.CustomerCreatePage.1934221653] - page header #. defaultMessage is: #. Add customer @@ -326,14 +238,6 @@ msgctxt "button" msgid "Add key" msgstr "" -#. [menuItemsAddItem] - add new menu item -#. defaultMessage is: -#. Add new item -#: build/locale/src/navigation/components/MenuItems/MenuItems.json -msgctxt "add new menu item" -msgid "Add new item" -msgstr "" - #. [menuItemsPlaceholder] #. defaultMessage is: #. Add new menu item to begin creating menu @@ -368,14 +272,6 @@ msgctxt "button" msgid "Add or Edit Link" msgstr "" -#. [src.pages.components.PageListPage.1767905232] - button -#. defaultMessage is: -#. Add page -#: build/locale/src/pages/components/PageListPage/PageListPage.json -msgctxt "button" -msgid "Add page" -msgstr "" - #. [src.categories.components.CategoryProducts.3554578821] - button #. defaultMessage is: #. Add product @@ -384,14 +280,6 @@ msgctxt "button" msgid "Add product" msgstr "" -#. [src.productTypes.components.ProductTypeListPage.889729490] - button -#. defaultMessage is: -#. Add product type -#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json -msgctxt "button" -msgid "Add product type" -msgstr "" - #. [src.orders.components.OrderDraftDetails.2528459381] - button #. defaultMessage is: #. Add products @@ -400,14 +288,6 @@ msgctxt "button" msgid "Add products" msgstr "" -#. [src.shipping.components.ShippingZoneRates.352297149] - button -#. defaultMessage is: -#. Add rate -#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json -msgctxt "button" -msgid "Add rate" -msgstr "" - #. [src.categories.components.CategoryCreatePage.2563994280] #. defaultMessage is: #. Add search engine title and description to make this category easier to @@ -469,30 +349,6 @@ msgctxt "button" msgid "Add shipping carrier" msgstr "" -#. [src.shipping.components.ShippingZonesList.2474410767] - button -#. defaultMessage is: -#. Add shipping zone -#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json -msgctxt "button" -msgid "Add shipping zone" -msgstr "" - -#. [src.staff.components.StaffListPage.802625341] - button -#. defaultMessage is: -#. Add staff member -#: build/locale/src/staff/components/StaffListPage/StaffListPage.json -msgctxt "button" -msgid "Add staff member" -msgstr "" - -#. [src.categories.components.CategoryList.435697837] - button -#. defaultMessage is: -#. Add subcategory -#: build/locale/src/categories/components/CategoryList/CategoryList.json -msgctxt "button" -msgid "Add subcategory" -msgstr "" - #. [src.attributes.components.AttributeProperties.673770329] - add attribute #. as column in product list table #. defaultMessage is: @@ -520,35 +376,14 @@ msgctxt "dialog header" msgid "Add tracking code" msgstr "" -#. [src.attributes.components.AttributeValues.254756045] - add attribute value -#. button -#. defaultMessage is: -#. Add value -#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json -msgctxt "add attribute value button" -msgid "Add value" -msgstr "" - #. [src.products.components.ProductVariantNavigation.2845381934] - button #. defaultMessage is: #. Add variant -#. [src.products.components.ProductVariants.2845381934] - button -#. defaultMessage is: -#. Add variant #: build/locale/src/products/components/ProductVariantNavigation/ProductVariantNavigation.json -#: build/locale/src/products/components/ProductVariants/ProductVariants.json msgctxt "button" msgid "Add variant" msgstr "" -#. [src.discounts.components.VoucherListPage.1536809153] - button -#. defaultMessage is: -#. Add voucher -#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json -msgctxt "button" -msgid "Add voucher" -msgstr "" - #. [src.attributes.views.AttributeDetails.634268988] - added new attribute #. value #. defaultMessage is: @@ -606,14 +441,6 @@ msgctxt "description" msgid "Address line 2" msgstr "" -#. [src.customers.components.CustomerAddress.1320082647] - addres card header -#. defaultMessage is: -#. Address {addressNumber} -#: build/locale/src/customers/components/CustomerAddress/CustomerAddress.json -msgctxt "addres card header" -msgid "Address {addressNumber}" -msgstr "" - #. [src.attributes.components.AttributeValues.1565474525] - attribute values #. list: slug column header #. defaultMessage is: @@ -663,6 +490,46 @@ msgctxt "tax rate" msgid "Agricultural supplies" msgstr "" +#. [src.attributes.components.AttributeListPage.2417065806] - tab name +#. defaultMessage is: +#. All Attributes +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "tab name" +msgid "All Attributes" +msgstr "" + +#. [src.categories.components.CategoryListPage.4294878092] - tab name +#. defaultMessage is: +#. All Categories +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "tab name" +msgid "All Categories" +msgstr "" + +#. [src.collections.components.CollectionListPage.1631917001] - tab name +#. defaultMessage is: +#. All Collections +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "tab name" +msgid "All Collections" +msgstr "" + +#. [src.customers.components.CustomerListPage.477293306] - tab name +#. defaultMessage is: +#. All Customers +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "tab name" +msgid "All Customers" +msgstr "" + +#. [src.orders.components.OrderDraftListPage.551325728] - tab name +#. defaultMessage is: +#. All Drafts +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "tab name" +msgid "All Drafts" +msgstr "" + #. [src.orders.components.OrderListPage.875489544] - tab name #. defaultMessage is: #. All Orders @@ -680,22 +547,54 @@ msgctxt "section header" msgid "All Photos" msgstr "" -#. [src.products.components.ProductListPage.821159718] - tab name +#. [src.productTypes.components.ProductTypeListPage.1776073799] - tab name +#. defaultMessage is: +#. All Product Types +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "tab name" +msgid "All Product Types" +msgstr "" + +#. [src.products.components.ProductListFilter.821159718] - tab name #. defaultMessage is: #. All Products -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "tab name" msgid "All Products" msgstr "" -#. [src.categories.components.CategoryList.3229914152] - section header +#. [src.discounts.components.SaleListPage.3907768880] - tab name +#. defaultMessage is: +#. All Sales +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "tab name" +msgid "All Sales" +msgstr "" + +#. [src.staff.components.StaffListPage.2852350932] - tab name +#. defaultMessage is: +#. All Staff Members +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "tab name" +msgid "All Staff Members" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.3229914152] - section header #. defaultMessage is: #. All Subcategories -#: build/locale/src/categories/components/CategoryList/CategoryList.json +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json msgctxt "section header" msgid "All Subcategories" msgstr "" +#. [src.discounts.components.VoucherListPage.1112241061] - tab name +#. defaultMessage is: +#. All Vouchers +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "tab name" +msgid "All Vouchers" +msgstr "" + #. [src.taxes.components.TaxConfiguration.142803418] #. defaultMessage is: #. All products prices are entered with tax included @@ -803,6 +702,14 @@ msgctxt "description" msgid "Are you sure you want to delete collection's image?" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.36681973] +#. defaultMessage is: +#. Are you sure you want to delete draft #{number}? +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "description" +msgid "Are you sure you want to delete draft #{number}?" +msgstr "" + #. [menuDetailsDeleteMenuContent] #. defaultMessage is: #. Are you sure you want to delete menu {menuName}? @@ -819,6 +726,14 @@ msgctxt "description" msgid "Are you sure you want to delete this address from users address book?" msgstr "" +#. [src.products.views.2880386427] +#. defaultMessage is: +#. Are you sure you want to delete this image? +#: build/locale/src/products/views/ProductImage.json +msgctxt "description" +msgid "Are you sure you want to delete this image?" +msgstr "" + #. [src.attributes.components.AttributeDeleteDialog.3738429348] - dialog #. content #. defaultMessage is: @@ -869,12 +784,7 @@ msgstr "" #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this attribute} #. other{{displayQuantity} categories}}? -#. [src.categories.views.844574071] -#. defaultMessage is: -#. Are you sure you want to delete {counter,plural,one{this attribute} -#. other{{displayQuantity} categories}}? #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this attribute} " @@ -892,22 +802,33 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.2497542455] +#. [src.categories.views.CategoryList.2144707585] +#. defaultMessage is: +#. Are you sure you want to delete {counter,plural,one{this category} +#. other{{displayQuantity} categories}}? +#: build/locale/src/categories/views/CategoryList/CategoryList.json +msgctxt "description" +msgid "" +"Are you sure you want to delete {counter,plural,one{this category} " +"other{{displayQuantity} categories}}?" +msgstr "" + +#. [src.collections.views.CollectionList.2497542455] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this collection} " "other{{displayQuantity} collections}}?" msgstr "" -#. [src.customers.views.409347866] +#. [src.customers.views.CustomerList.409347866] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this customer} #. other{{displayQuantity} customers}}? -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this customer} " @@ -925,11 +846,11 @@ msgid "" "other{{displayQuantity} menus}}?" msgstr "" -#. [src.orders.views.1389231130] - dialog content +#. [src.orders.views.OrderDraftList.1389231130] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this order draft} #. other{{displayQuantity} orderDrafts}}? -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this order draft} " @@ -947,11 +868,11 @@ msgid "" "other{{displayQuantity} pages}}?" msgstr "" -#. [src.productTypes.views.2294091098] - dialog content +#. [src.productTypes.views.ProductTypeList.2294091098] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this product type} #. other{{displayQuantity} product types}}? -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this product type} " @@ -969,11 +890,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.discounts.views.2516361175] - dialog content +#. [src.discounts.views.SaleList.2516361175] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this sale} #. other{{displayQuantity} sales}}? -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this sale} " @@ -1002,17 +923,33 @@ msgid "" "other{{displayQuantity} variants}}?" msgstr "" -#. [src.discounts.views.1791926983] - dialog content +#. [src.discounts.views.VoucherList.1791926983] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this voucher} #. other{{displayQuantity} vouchers}}? -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this voucher} " "other{{displayQuantity} vouchers}}?" msgstr "" +#. [src.shipping.views.ShippingZoneDetails.131963671] - unassign country +#. defaultMessage is: +#. Are you sure you want to delete {countryName} from this shipping zone? +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country" +msgid "Are you sure you want to delete {countryName} from this shipping zone?" +msgstr "" + +#. [src.staff.views.8878988] +#. defaultMessage is: +#. Are you sure you want to delete {email} from staff members? +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "description" +msgid "Are you sure you want to delete {email} from staff members?" +msgstr "" + #. [src.customers.views.1927691511] - delete customer, dialog content #. defaultMessage is: #. Are you sure you want to delete {email}? @@ -1127,11 +1064,11 @@ msgctxt "description" msgid "Are you sure you want to mark this order as paid?" msgstr "" -#. [src.collections.views.1348793822] +#. [src.collections.views.CollectionList.1348793822] #. defaultMessage is: #. Are you sure you want to publish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to publish {counter,plural,one{this collection} " @@ -1160,30 +1097,6 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.orders.components.OrderDraftCancelDialog.3199827590] -#. defaultMessage is: -#. Are you sure you want to remove draft #{number}? -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "description" -msgid "Are you sure you want to remove draft #{number}?" -msgstr "" - -#. [src.products.views.672103788] -#. defaultMessage is: -#. Are you sure you want to remove this image? -#: build/locale/src/products/views/ProductImage.json -msgctxt "description" -msgid "Are you sure you want to remove this image?" -msgstr "" - -#. [src.shipping.views.ShippingZoneDetails.1790261672] - unassign country -#. defaultMessage is: -#. Are you sure you want to remove {countryName} from this shipping zone? -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country" -msgid "Are you sure you want to remove {countryName} from this shipping zone?" -msgstr "" - #. [src.staff.views.3945766678] #. defaultMessage is: #. Are you sure you want to remove {email} avatar? @@ -1192,14 +1105,6 @@ msgctxt "description" msgid "Are you sure you want to remove {email} avatar?" msgstr "" -#. [src.staff.views.2728048444] -#. defaultMessage is: -#. Are you sure you want to remove {email} from staff members? -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "description" -msgid "Are you sure you want to remove {email} from staff members?" -msgstr "" - #. [src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450] #. defaultMessage is: #. Are you sure you want to unassign {attributeName} from {productTypeName}? @@ -1280,11 +1185,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.3944356444] +#. [src.collections.views.CollectionList.3944356444] #. defaultMessage is: #. Are you sure you want to unpublish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to unpublish {counter,plural,one{this collection} " @@ -1445,6 +1350,15 @@ msgctxt "button" msgid "Assign products" msgstr "" +#. [src.attributes.components.AttributeValues.351422234] - assign attribute +#. value button +#. defaultMessage is: +#. Assign value +#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json +msgctxt "assign attribute value button" +msgid "Assign value" +msgstr "" + #. [src.attributes.components.AttributeDetails.3605174225] - attribute's slug #. short code label #. defaultMessage is: @@ -1523,6 +1437,14 @@ msgctxt "product attributes, section header" msgid "Attributes" msgstr "" +#. [src.configuration.2326418019] +#. defaultMessage is: +#. Attributes and Product Typess +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Attributes and Product Typess" +msgstr "" + #. [src.attributes.views.AttributeList.3218248395] - deleted multiple #. attributes #. defaultMessage is: @@ -2306,6 +2228,22 @@ msgctxt "description" msgid "Country area" msgstr "" +#. [menuCreateDialogHeader] - dialog header +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json +msgctxt "dialog header" +msgid "Create Menu" +msgstr "" + +#. [menuListPageAddMenu] - button +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json +msgctxt "button" +msgid "Create Menu" +msgstr "" + #. [src.attributes.components.AttributePage.2855501559] - page title #. defaultMessage is: #. Create New Attribute @@ -2330,6 +2268,30 @@ msgctxt "header" msgid "Create New Shipping Zone" msgstr "" +#. [src.pages.components.PageDetailsPage.1068617485] - page header +#. defaultMessage is: +#. Create Page +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page header" +msgid "Create Page" +msgstr "" + +#. [src.orders.components.OrderProductAddDialog.1542417144] - dialog header +#. defaultMessage is: +#. Create Product +#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json +msgctxt "dialog header" +msgid "Create Product" +msgstr "" + +#. [src.products.components.ProductListPage.1542417144] - button +#. defaultMessage is: +#. Create Product +#: build/locale/src/products/components/ProductListPage/ProductListPage.json +msgctxt "button" +msgid "Create Product" +msgstr "" + #. [src.products.views.1542417144] - window title #. defaultMessage is: #. Create Product @@ -2362,11 +2324,19 @@ msgctxt "page header" msgid "Create Sale" msgstr "" -#. [src.products.views.2362587265] - window title +#. [src.discounts.components.SaleListPage.3866518732] - button +#. defaultMessage is: +#. Create Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "button" +msgid "Create Sale" +msgstr "" + +#. [src.products.views.2362587265] - header #. defaultMessage is: #. Create Variant #: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "window title" +msgctxt "header" msgid "Create Variant" msgstr "" @@ -2378,6 +2348,22 @@ msgctxt "page header" msgid "Create Voucher" msgstr "" +#. [src.attributes.components.AttributeListPage.3824684885] - button +#. defaultMessage is: +#. Create attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "button" +msgid "Create attribute" +msgstr "" + +#. [src.categories.components.CategoryListPage.1140231710] - button +#. defaultMessage is: +#. Create category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "button" +msgid "Create category" +msgstr "" + #. [src.categories.views.1140231710] - window title #. defaultMessage is: #. Create category @@ -2386,6 +2372,14 @@ msgctxt "window title" msgid "Create category" msgstr "" +#. [src.collections.components.CollectionListPage.686910896] - button +#. defaultMessage is: +#. Create collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "button" +msgid "Create collection" +msgstr "" + #. [src.collections.views.686910896] - window title #. defaultMessage is: #. Create collection @@ -2402,6 +2396,14 @@ msgctxt "window title" msgid "Create customer" msgstr "" +#. [menuItemsAddItem] - add new menu item +#. defaultMessage is: +#. Create new item +#: build/locale/src/navigation/components/MenuItems/MenuItems.json +msgctxt "add new menu item" +msgid "Create new item" +msgstr "" + #. [src.orders.components.OrderDraftListPage.2826235371] - button #. defaultMessage is: #. Create order @@ -2414,6 +2416,14 @@ msgctxt "button" msgid "Create order" msgstr "" +#. [src.pages.components.PageListPage.3785394515] - button +#. defaultMessage is: +#. Create page +#: build/locale/src/pages/components/PageListPage/PageListPage.json +msgctxt "button" +msgid "Create page" +msgstr "" + #. [src.pages.views.3785394515] - header #. defaultMessage is: #. Create page @@ -2425,11 +2435,55 @@ msgstr "" #. [src.shipping.components.ShippingZoneRateDialog.16061680] - button #. defaultMessage is: #. Create rate +#. [src.shipping.components.ShippingZoneRates.16061680] - button +#. defaultMessage is: +#. Create rate #: build/locale/src/shipping/components/ShippingZoneRateDialog/ShippingZoneRateDialog.json +#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json msgctxt "button" msgid "Create rate" msgstr "" +#. [src.shipping.components.ShippingZonesList.2673544109] - button +#. defaultMessage is: +#. Create shipping zone +#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json +msgctxt "button" +msgid "Create shipping zone" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.770296100] - button +#. defaultMessage is: +#. Create subcategory +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json +msgctxt "button" +msgid "Create subcategory" +msgstr "" + +#. [src.products.components.ProductVariants.3989383405] - button +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/components/ProductVariants/ProductVariants.json +msgctxt "button" +msgid "Create variant" +msgstr "" + +#. [src.products.views.3989383405] - window title +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/views/ProductVariantCreate.json +msgctxt "window title" +msgid "Create variant" +msgstr "" + +#. [src.discounts.components.VoucherListPage.614836274] - button +#. defaultMessage is: +#. Create voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "button" +msgid "Create voucher" +msgstr "" + #. [src.collections.views.1597339737] #. defaultMessage is: #. Created collection @@ -2476,7 +2530,11 @@ msgstr "" #. [src.components.FilterBar.2340527467] #. defaultMessage is: #. Custom Filter +#. [src.components.SearchBar.2340527467] +#. defaultMessage is: +#. Custom Filter #: build/locale/src/components/FilterBar/FilterBar.json +#: build/locale/src/components/SearchBar/SearchBar.json msgctxt "description" msgid "Custom Filter" msgstr "" @@ -2732,10 +2790,18 @@ msgctxt "dialog title" msgid "Delete Collection" msgstr "" -#. [src.orders.views.1161115149] - dialog header +#. [src.products.views.1731766393] - dialog header +#. defaultMessage is: +#. Delete Image +#: build/locale/src/products/views/ProductImage.json +msgctxt "dialog header" +msgid "Delete Image" +msgstr "" + +#. [src.orders.views.OrderDraftList.1161115149] - dialog header #. defaultMessage is: #. Delete Order Drafts -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog header" msgid "Delete Order Drafts" msgstr "" @@ -2773,10 +2839,10 @@ msgctxt "dialog header" msgid "Delete Product Type" msgstr "" -#. [src.productTypes.views.4080551769] - dialog header +#. [src.productTypes.views.ProductTypeList.4080551769] - dialog header #. defaultMessage is: #. Delete Product Types -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog header" msgid "Delete Product Types" msgstr "" @@ -2805,10 +2871,10 @@ msgctxt "dialog header" msgid "Delete Sale" msgstr "" -#. [src.discounts.views.2809303671] - dialog header +#. [src.discounts.views.SaleList.2809303671] - dialog header #. defaultMessage is: #. Delete Sales -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog header" msgid "Delete Sales" msgstr "" @@ -2822,9 +2888,13 @@ msgctxt "custom search delete, dialog header" msgid "Delete Search" msgstr "" +#. [src.components.Filter.2173195312] - button +#. defaultMessage is: +#. Delete Search #. [src.components.TableFilter.2173195312] - button #. defaultMessage is: #. Delete Search +#: build/locale/src/components/Filter/FilterSearch.json #: build/locale/src/components/TableFilter/FilterChips.json msgctxt "button" msgid "Delete Search" @@ -2891,10 +2961,10 @@ msgctxt "dialog header" msgid "Delete Voucher" msgstr "" -#. [src.discounts.views.367317371] - dialog header +#. [src.discounts.views.VoucherList.367317371] - dialog header #. defaultMessage is: #. Delete Vouchers -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog header" msgid "Delete Vouchers" msgstr "" @@ -2928,11 +2998,11 @@ msgstr "" #. [src.categories.views.712767046] - dialog title #. defaultMessage is: #. Delete categories -#. [src.categories.views.712767046] - dialog title +#. [src.categories.views.CategoryList.712767046] - dialog title #. defaultMessage is: #. Delete categories #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "dialog title" msgid "Delete categories" msgstr "" @@ -2949,10 +3019,10 @@ msgctxt "dialog title" msgid "Delete category" msgstr "" -#. [src.collections.views.3817188998] - dialog title +#. [src.collections.views.CollectionList.3817188998] - dialog title #. defaultMessage is: #. Delete collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Delete collections" msgstr "" @@ -2965,14 +3035,31 @@ msgctxt "dialog header" msgid "Delete customer" msgstr "" -#. [src.customers.views.1946482599] - dialog header +#. [src.customers.views.CustomerList.1946482599] - dialog header #. defaultMessage is: #. Delete customers -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "dialog header" msgid "Delete customers" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.632633254] - dialog header +#. defaultMessage is: +#. Delete draft order +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "dialog header" +msgid "Delete draft order" +msgstr "" + +#. [src.shipping.views.ShippingZoneDetails.1947090060] - unassign country, +#. dialog header +#. defaultMessage is: +#. Delete from shipping zone +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country, dialog header" +msgid "Delete from shipping zone" +msgstr "" + #. [src.collections.views.942133001] - dialog title #. defaultMessage is: #. Delete image @@ -3033,6 +3120,14 @@ msgctxt "description" msgid "Deleted collection" msgstr "Xoá bộ sưu tập" +#. [src.orders.views.OrderDraftList.1648805446] +#. defaultMessage is: +#. Deleted draft orders +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json +msgctxt "description" +msgid "Deleted draft orders" +msgstr "" + #. [menuListDeletedMenu] #. defaultMessage is: #. Deleted menu @@ -3632,14 +3727,6 @@ msgctxt "order history message" msgid "Fulfilled {quantity} items" msgstr "" -#. [src.orders.components.OrderListFilter.2943502192] - order -#. defaultMessage is: -#. Fulfillment Status -#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json -msgctxt "order" -msgid "Fulfillment Status" -msgstr "" - #. [src.orders.components.OrderHistory.3081292385] - order history message #. defaultMessage is: #. Fulfillment confirmation was sent to customer @@ -3796,12 +3883,12 @@ msgctxt "description" msgid "If empty, the preview shows what will be autogenerated." msgstr "Nếu để trống, bản xem trước sẽ tự khởi tạo" -#. [src.attributes.components.AttributeProperties.2519239682] +#. [src.attributes.components.AttributeProperties.4048785456] #. defaultMessage is: -#. If enable this attribute can be used as a column in product table. +#. If enabled this attribute can be used as a column in product table. #: build/locale/src/attributes/components/AttributeProperties/AttributeProperties.json msgctxt "description" -msgid "If enable this attribute can be used as a column in product table." +msgid "If enabled this attribute can be used as a column in product table." msgstr "" #. [src.attributes.components.AttributeProperties.787251583] @@ -3907,6 +3994,22 @@ msgctxt "product variant stock" msgid "Inventory" msgstr "" +#. [src.staff.components.StaffAddMemberDialog.1481503299] - dialog header +#. defaultMessage is: +#. Invite Staff Member +#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json +msgctxt "dialog header" +msgid "Invite Staff Member" +msgstr "" + +#. [src.staff.components.StaffListPage.797461521] - button +#. defaultMessage is: +#. Invite staff member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "button" +msgid "Invite staff member" +msgstr "" + #. [src.productTypes.components.ProductTypeShipping.2143413921] - switch #. button #. defaultMessage is: @@ -4259,6 +4362,14 @@ msgctxt "voucher requirement" msgid "Minimum quantity of items" msgstr "" +#. [src.configuration.1233229030] +#. defaultMessage is: +#. Miscellaneous +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Miscellaneous" +msgstr "" + #. [src.attributes.components.AttributeDetails.3334509011] - product attribute #. type #. defaultMessage is: @@ -5091,6 +5202,14 @@ msgctxt "description" msgid "Order History" msgstr "" +#. [src.orders.components.OrderListFilter.2222765704] +#. defaultMessage is: +#. Order Status +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +msgctxt "description" +msgid "Order Status" +msgstr "" + #. [src.orders.components.OrderHistory.1230178536] - order history message #. defaultMessage is: #. Order address was updated @@ -5107,13 +5226,13 @@ msgctxt "order history message" msgid "Order confirmation was sent to customer" msgstr "" -#. [src.orders.views.1872939752] +#. [src.orders.views.OrderDraftList.1872939752] #. defaultMessage is: #. Order draft succesfully created #. [src.orders.views.OrderList.1872939752] #. defaultMessage is: #. Order draft succesfully created -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json #: build/locale/src/orders/views/OrderList/OrderList.json msgctxt "description" msgid "Order draft succesfully created" @@ -5778,6 +5897,14 @@ msgctxt "description" msgid "Product Name" msgstr "" +#. [src.configuration.3655543906] +#. defaultMessage is: +#. Product Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Product Settings" +msgstr "" + #. [src.discounts.components.DiscountProducts.4257289053] #. defaultMessage is: #. Product Type @@ -5936,12 +6063,12 @@ msgctxt "order history message" msgid "Products were added to draft order" msgstr "" -#. [src.orders.components.OrderHistory.2574162126] - order history message +#. [src.orders.components.OrderHistory.4067959693] - order history message #. defaultMessage is: -#. Products were removed from draft order +#. Products were deleted from draft order #: build/locale/src/orders/components/OrderHistory/OrderHistory.json msgctxt "order history message" -msgid "Products were removed from draft order" +msgid "Products were deleted from draft order" msgstr "" #. [src.properties] @@ -5968,10 +6095,10 @@ msgctxt "description" msgid "Provided email address does not exist in our database." msgstr "" -#. [src.collections.views.1547167026] - publish collections +#. [src.collections.views.CollectionList.1547167026] - publish collections #. defaultMessage is: #. Publish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "publish collections" msgid "Publish" msgstr "Công bố" @@ -6008,10 +6135,10 @@ msgctxt "dialog header" msgid "Publish Products" msgstr "" -#. [src.collections.views.2823425739] - dialog title +#. [src.collections.views.CollectionList.2823425739] - dialog title #. defaultMessage is: #. Publish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Publish collections" msgstr "" @@ -6185,6 +6312,18 @@ msgctxt "shipping method price" msgid "Rate Price" msgstr "" +#. [src.orders.components.OrderListFilter.2415661583] - order status +#. defaultMessage is: +#. Ready to Capture +#. [src.orders.views.OrderList.readyToCapture] - order status +#. defaultMessage is: +#. Ready to Capture +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +#: build/locale/src/orders/views/OrderList/filters.json +msgctxt "order status" +msgid "Ready to Capture" +msgstr "" + #. [src.customers.components.CustomerOrders.3878642352] - section header #. defaultMessage is: #. Recent orders @@ -6233,22 +6372,14 @@ msgctxt "switch button" msgid "Release all stock allocated to this order" msgstr "" -#. [src.auth.components.LoginPage.3182284913] - login -#. defaultMessage is: -#. Remember me -#: build/locale/src/auth/components/LoginPage/LoginPage.json -msgctxt "login" -msgid "Remember me" -msgstr "" - #. [src.categories.views.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. -#. [src.categories.views.3488150607] +#. [src.categories.views.CategoryList.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "description" msgid "Remember this will also delete all products assigned to this category." msgstr "" @@ -6261,39 +6392,6 @@ msgctxt "button" msgid "Remove" msgstr "" -#. [src.products.views.490753666] - dialog header -#. defaultMessage is: -#. Remove Image -#: build/locale/src/products/views/ProductImage.json -msgctxt "dialog header" -msgid "Remove Image" -msgstr "" - -#. [src.orders.components.OrderDraftCancelDialog.500287069] - dialog header -#. defaultMessage is: -#. Remove draft order -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "dialog header" -msgid "Remove draft order" -msgstr "" - -#. [src.shipping.views.ShippingZoneDetails.254167659] - unassign country, -#. dialog header -#. defaultMessage is: -#. Remove from shipping zone -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country, dialog header" -msgid "Remove from shipping zone" -msgstr "" - -#. [src.orders.views.3880993240] -#. defaultMessage is: -#. Removed draft orders -#: build/locale/src/orders/views/OrderDraftList.json -msgctxt "description" -msgid "Removed draft orders" -msgstr "" - #. [src.pages.views.1457312643] #. defaultMessage is: #. Removed page @@ -6459,6 +6557,18 @@ msgctxt "button" msgid "Save" msgstr "" +#. [src.components.Filter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#. [src.components.TableFilter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#: build/locale/src/components/Filter/FilterSearch.json +#: build/locale/src/components/TableFilter/FilterChips.json +msgctxt "button" +msgid "Save Custom Search" +msgstr "" + #. [src.components.SaveFilterTabDialog.1514415736] - save filter tab, header #. defaultMessage is: #. Save Custom Search @@ -6467,14 +6577,6 @@ msgctxt "save filter tab, header" msgid "Save Custom Search" msgstr "" -#. [src.components.TableFilter.1514415736] - button -#. defaultMessage is: -#. Save Custom Search -#: build/locale/src/components/TableFilter/FilterChips.json -msgctxt "button" -msgid "Save Custom Search" -msgstr "" - #. [src.products.components.ProductVariantCreatePage.2853608829] - button #. defaultMessage is: #. Save variant @@ -6491,6 +6593,14 @@ msgctxt "description" msgid "Saved changes" msgstr "" +#. [src.attributes.components.AttributeListPage.3916653510] +#. defaultMessage is: +#. Search Attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "description" +msgid "Search Attribute" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.902296540] #. defaultMessage is: #. Search Attributes @@ -6507,10 +6617,30 @@ msgctxt "description" msgid "Search Categories" msgstr "" +#. [src.categories.components.CategoryListPage.3841025483] +#. defaultMessage is: +#. Search Category +#. [src.translations.components.TranslationsEntitiesListPage.3841025483] +#. defaultMessage is: +#. Search Category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Category" +msgstr "" + +#. [src.collections.components.CollectionListPage.4057224233] +#. defaultMessage is: +#. Search Collection #. [src.components.AssignCollectionDialog.4057224233] #. defaultMessage is: #. Search Collection +#. [src.translations.components.TranslationsEntitiesListPage.4057224233] +#. defaultMessage is: +#. Search Collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json #: build/locale/src/components/AssignCollectionDialog/AssignCollectionDialog.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json msgctxt "description" msgid "Search Collection" msgstr "" @@ -6523,6 +6653,14 @@ msgctxt "description" msgid "Search Countries" msgstr "" +#. [src.customers.components.CustomerListPage.1643417013] +#. defaultMessage is: +#. Search Customer +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "description" +msgid "Search Customer" +msgstr "" + #. [src.orders.components.OrderCustomer.2433460203] #. defaultMessage is: #. Search Customers @@ -6531,6 +6669,14 @@ msgctxt "description" msgid "Search Customers" msgstr "" +#. [src.orders.components.OrderDraftListPage.77765281] +#. defaultMessage is: +#. Search Draft +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "description" +msgid "Search Draft" +msgstr "" + #. [src.translations.components.TranslationsCategoriesPage.1406947243] #. defaultMessage is: #. Search Engine Description @@ -6611,6 +6757,34 @@ msgctxt "description" msgid "Search Orders..." msgstr "" +#. [src.translations.components.TranslationsEntitiesListPage.2559018090] +#. defaultMessage is: +#. Search Page +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Page" +msgstr "" + +#. [src.translations.components.TranslationsEntitiesListPage.2105464697] +#. defaultMessage is: +#. Search Product +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product" +msgstr "" + +#. [src.productTypes.components.ProductTypeListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#. [src.translations.components.TranslationsEntitiesListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product Type" +msgstr "" + #. [src.components.AssignProductDialog.2850255786] #. defaultMessage is: #. Search Products @@ -6623,14 +6797,46 @@ msgctxt "description" msgid "Search Products" msgstr "" -#. [src.products.components.ProductListPage.3550330425] +#. [src.products.components.ProductListFilter.3550330425] #. defaultMessage is: #. Search Products... -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Search Products..." msgstr "" +#. [src.discounts.components.SaleListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#. [src.translations.components.TranslationsEntitiesListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Sale" +msgstr "" + +#. [src.staff.components.StaffListPage.61043583] +#. defaultMessage is: +#. Search Staff Member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "description" +msgid "Search Staff Member" +msgstr "" + +#. [src.discounts.components.VoucherListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#. [src.translations.components.TranslationsEntitiesListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Voucher" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.524117994] #. defaultMessage is: #. Search by attribute name @@ -6737,10 +6943,10 @@ msgctxt "description" msgid "Select all orders where:" msgstr "" -#. [src.products.components.ProductListPage.1421689426] +#. [src.products.components.ProductListFilter.1421689426] #. defaultMessage is: #. Select all products where: -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Select all products where:" msgstr "" @@ -6826,6 +7032,14 @@ msgctxt "description" msgid "Set plugin as Active" msgstr "" +#. [src.components.VisibilityCard.292404896] +#. defaultMessage is: +#. Set publication date +#: build/locale/src/components/VisibilityCard/VisibilityCard.json +msgctxt "description" +msgid "Set publication date" +msgstr "" + #. [src.discounts.shipment] - voucher discount #. defaultMessage is: #. Shipment @@ -7091,6 +7305,14 @@ msgctxt "staff section name" msgid "Staff Members" msgstr "" +#. [src.configuration.3140151600] +#. defaultMessage is: +#. Staff Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Staff Settings" +msgstr "" + #. [src.standard] - tax rate #. defaultMessage is: #. Standard @@ -8075,10 +8297,10 @@ msgctxt "payment status" msgid "Unpaid" msgstr "" -#. [src.collections.views.2237014112] - unpublish collections +#. [src.collections.views.CollectionList.2237014112] - unpublish collections #. defaultMessage is: #. Unpublish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "unpublish collections" msgid "Unpublish" msgstr "Ngừng công bố" @@ -8115,10 +8337,10 @@ msgctxt "dialog header" msgid "Unpublish Products" msgstr "" -#. [src.collections.views.2637364047] - dialog title +#. [src.collections.views.CollectionList.2637364047] - dialog title #. defaultMessage is: #. Unpublish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Unpublish collections" msgstr "" @@ -8618,6 +8840,22 @@ msgctxt "description" msgid "ZIP / Postal code" msgstr "" +#. [src.productTypes.components.ProductTypeListPage.3479705616] - button +#. defaultMessage is: +#. create product type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "button" +msgid "create product type" +msgstr "" + +#. [src.staff.views.1308770978] - dialog header +#. defaultMessage is: +#. delete Staff User +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "dialog header" +msgid "delete Staff User" +msgstr "" + #. [orderPaymentVATDoesNotApply] - vat not included in order price #. defaultMessage is: #. does not apply @@ -8691,19 +8929,35 @@ msgctxt "product status is set as" msgid "is set as" msgstr "" -#. [src.staff.views.2240444792] - dialog header -#. defaultMessage is: -#. remove Staff User -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "dialog header" -msgid "remove Staff User" -msgstr "" - -#. [src.components.VisibilityCard.1815688500] +#. [src.collections.components.CollectionCreatePage.1815688500] - collection #. defaultMessage is: #. since {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.1815688500] - collection +#. defaultMessage is: +#. since {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "since {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.1815688500] - page +#. defaultMessage is: +#. since {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "since {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#. [src.products.components.ProductUpdatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "since {date}" msgstr "" @@ -8731,11 +8985,35 @@ msgctxt "weight" msgid "to {value} {unit}" msgstr "" -#. [src.components.VisibilityCard.2001551496] +#. [src.collections.components.CollectionCreatePage.2001551496] - collection #. defaultMessage is: #. will be visible from {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.2001551496] - collection +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "will be visible from {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.2001551496] - page +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "will be visible from {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#. [src.products.components.ProductUpdatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "will be visible from {date}" msgstr "" diff --git a/locale/zh-Hans.json b/locale/zh-Hans.json index 0faae00c2..bdf4114ce 100644 --- a/locale/zh-Hans.json +++ b/locale/zh-Hans.json @@ -1 +1 @@ -{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.350498821":"添加属性","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.2519239682":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"名字","src.categories.components.CategoryProducts.636461959":"名字","src.collections.components.CollectionProducts.636461959":"名字","src.products.components.ProductDetailsForm.636461959":"名字","src.collections.components.CollectionDetails.636461959":"名字","src.components.ProductList.636461959":"名字","src.discounts.components.SaleInfo.636461959":"名字","src.discounts.components.SaleList.636461959":"名字","src.discounts.components.SaleSummary.636461959":"名字","menuItemDialogNameLabel":"名字","src.products.components.ProductVariants.636461959":"名字","src.shipping.components.ShippingZoneRates.636461959":"名字","src.shipping.components.ShippingZonesList.636461959":"名字","src.staff.components.StaffList.636461959":"名字","src.translations.components.TranslationsEntitiesList.636461959":"名字","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.254756045":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.3182284913":"","src.auth.components.LoginPage.109182747":"登录","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"","src.categories.views.2004894945":"","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.3229914152":"","src.categories.components.CategoryList.435697837":"","src.categories.components.CategoryList.2159874182":"","src.categories.components.CategoryUpdatePage.2159874182":"","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.228151782":"新增分类","src.categories.components.CategoryProducts.2968663655":"产品","src.categories.components.CategoryUpdatePage.2968663655":"产品","src.discounts.components.DiscountCategories.2968663655":"产品","src.discounts.components.DiscountCollections.2968663655":"产品","src.products":"产品","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryProducts.3554578821":"添加产品","src.categories.components.CategoryProductsCard.3554578821":"添加产品","src.categories.components.CategoryProducts.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProducts.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.categories.components.CategoryProductsCard.4164156574":"","src.categories.views.1754466114":"","src.categories.views.1140231710":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.712767046":"","src.categories.views.299584400":"","src.categories.views.844574071":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.collections.components.CollectionCreatePage.3958681866":"","src.collections.components.CollectionListPage.3958681866":"","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"","src.availability":"","src.collections.components.CollectionList.3640454975":"已发布","src.collections.components.CollectionProducts.3640454975":"已发布","src.discounts.components.DiscountProducts.3640454975":"已发布","src.components.ProductList.3640454975":"已发布","src.products.components.ProductListPage.3640454975":"已发布","src.pages.components.PageList.3640454975":"已发布","src.products.views.ProductList.published":"已发布","src.collections.components.CollectionList.2341910657":"未发布","src.collections.components.CollectionProducts.2341910657":"未发布","src.discounts.components.DiscountProducts.2341910657":"未发布","src.components.ProductList.2341910657":"未发布","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.686910896":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"","src.collections.views.2402899582":"","src.collections.views.2237014112":"取消发布","src.pages.views.2237014112":"取消发布","src.products.views.ProductList.2237014112":"取消发布","src.collections.views.1547167026":"发布","src.pages.views.1547167026":"发布","src.products.views.ProductList.1547167026":"发布","src.collections.views.2823425739":"","src.collections.views.1348793822":"","src.collections.views.2637364047":"","src.collections.views.3944356444":"","src.collections.views.3817188998":"","src.collections.views.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"登出","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.4057224233":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"","src.components.ErrorMessageCard.2845142593":"","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.FilterBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"添加","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.ProductList.1134347598":"价格","src.orders.components.OrderDraftDetailsProducts.1134347598":"价格","src.orders.components.OrderFulfillment.1134347598":"价格","src.products.components.ProductListPage.1134347598":"价格","src.products.components.ProductPricing.1134347598":"价格","src.orders.components.OrderUnfulfilledItems.1134347598":"价格","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"价格","src.shipping.components.ShippingZoneRates.1134347598":"价格","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"","src.pages.components.PageList.1459686496":"","src.products.components.ProductListFilter.1459686496":"","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"","src.products.views.ProductList.hidden":"","src.components.VisibilityCard.1815688500":"","src.components.VisibilityCard.2001551496":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","configurationMenuStaff":"","configurationMenuShipping":"","configurationMenuTaxes":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","src.customers.components.CustomerAddress.1320082647":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"账单地址","src.customers.components.CustomerAddresses.3517722732":"配送地址","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"地址","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"备注","src.orders.components.OrderCustomerNote.1520756907":"备注","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"备注","src.customers.components.CustomerDetails.577013340":"备注","src.customers.components.CustomerCreatePage.1934221653":"","src.customers.components.CustomerListPage.1934221653":"","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerOrders.3878642352":"","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"日期","src.orders.components.OrderDraftList.4205493358":"日期","src.orders.components.OrderList.4205493358":"日期","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"状态","src.orders.components.OrderListFilter.1756106276":"状态","src.products.components.ProductListFilter.1756106276":"状态","src.products.components.ProductVariants.1756106276":"状态","src.customers.components.CustomerOrders.878013594":"总数","src.orders.components.OrderDraftDetailsProducts.878013594":"总数","src.orders.components.OrderDraftDetailsSummary.878013594":"总数","src.orders.components.OrderDraftList.878013594":"总数","src.orders.components.OrderFulfillment.878013594":"总数","src.orders.components.OrderUnfulfilledItems.878013594":"总数","src.orders.components.OrderList.878013594":"总数","src.orders.components.OrderPayment.878013594":"总数","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.1946482599":"","src.customers.views.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"值","src.discounts.components.SaleSummary.1148029984":"值","src.discounts.components.VoucherList.1148029984":"值","src.discounts.components.VoucherSummary.1148029984":"值","src.discounts.components.VoucherValue.1148029984":"值","src.products.components.ProductAttributes.1148029984":"值","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.1742771332":"","src.discounts.components.SalePricing.1099355007":"","src.products.components.ProductPricing.1099355007":"","src.products.components.ProductVariantPrice.1099355007":"","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"国家","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"码值","src.discounts.components.VoucherSummary.78726751":"码值","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.1536809153":"","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"特定商品","src.discounts.shipment":"","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.2809303671":"","src.discounts.views.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.367317371":"","src.discounts.views.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"取消","src.orders.views.OrderList.3528672691":"取消","src.confirm":"","src.delete":"","src.edit":"编辑","src.manage":"","src.remove":"删除","src.save":"保存","src.show":"","src.undo":"","src.attributes":"属性","src.products.components.ProductAttributes.4153345096":"属性","src.categories":"产品分类","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"系列","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"配置","src.customers":"客户","src.draftOrders":"","src.home":"首页","src.navigation":"","src.orders":"订单","src.pages":"页","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"促销","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"税","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"税","src.taxes.components.CountryListPage.3955023266":"税","src.translations":"","src.vouchers":"优惠券","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"","src.partiallyPaid":"","src.partiallyRefunded":"","src.refunded":"","src.unpaid":"","src.cancelled":"","src.draft":"草稿","src.fulfilled":"已完成","src.orders.views.OrderList.fulfilled":"已完成","src.orders.components.OrderListFilter.1712863026":"已完成","src.partiallyFulfilled":"部分完成","src.unfulfilled":"未完成","src.orders.views.OrderList.unfulfilled":"未完成","src.orders.components.OrderListFilter.1751787272":"未完成","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","src.1395232177":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"链接","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"","src.orders.components.OrderDetailsPage.1854613983":"","src.orders.components.OrderDraftPage.1854613983":"","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"客户","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"客户","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"","src.orders.components.OrderCustomerEditDialog.1411666943":"","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.500287069":"","src.orders.components.OrderDraftCancelDialog.3199827590":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"产品","src.orders.components.OrderUnfulfilledItems.1895667608":"产品","src.orders.components.OrderDraftDetailsProducts.2796503714":"数量","src.orders.components.OrderFulfillment.2796503714":"数量","src.orders.components.OrderFulfillmentDialog.2796503714":"数量","src.orders.components.OrderUnfulfilledItems.2796503714":"数量","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"","src.orders.components.OrderPayment.781550514":"","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"","src.orders.components.OrderListPage.2826235371":"","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"","src.orders.components.OrderFulfillmentCancelDialog.732594284":"","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"库存单位","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"追踪编号","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.2574162126":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"支付","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2943502192":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"配送","src.productTypes.components.ProductTypeShipping.1325966144":"配送","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"配送","src.orders.components.OrderPayment.3768782744":"预授权金额","src.orders.components.OrderPayment.2320183694":"","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"抓取","src.orders.components.OrderPayment.2845258362":"退款","src.orders.components.OrderPayment.2444197639":"","src.orders.components.OrderPayment.3500506678":"","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"金额","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.2775402904":"","src.products.components.ProductListPage.2775402904":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.3880993240":"","src.orders.views.1161115149":"","src.orders.views.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.755314116":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"标题","src.pages.components.PageList.1124600214":"标题","src.pages.components.PageInfo.1116746286":"内容","src.translations.components.TranslationsPagesPage.1116746286":"内容","src.pages.components.PageList.3478065224":"","src.pages.components.PageSlug.3478065224":"","src.productTypes.components.ProductTypeAttributes.3478065224":"","src.pages.components.PageList.3767550649":"","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.1767905232":"","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.3785394515":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"值","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"图片","src.products.components.ProductVariantImages.3240888698":"图片","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"","src.products.components.ProductVariantStock.3841616483":"","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListPage.821159718":"","src.products.components.ProductListPage.1421689426":"","src.products.components.ProductListPage.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"","prodictStockInventoryLabel":"","src.products.components.ProductVariantStock.3490038570":"","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"","src.products.components.ProductVariants.2153006789":"","src.products.components.ProductVariantNavigation.2845381934":"添加产品变种","src.products.components.ProductVariants.2845381934":"添加产品变种","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1542417144":"","src.products.views.1591632382":"","src.products.views.490753666":"","src.products.views.672103788":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.1694086800":"","src.products.views.ProductList.224127438":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.products.views.2178905289":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1756957616":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.889729490":"添加产品类别","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.4080551769":"","src.productTypes.views.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.352297149":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2474410767":"","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.254167659":"","src.shipping.views.ShippingZoneDetails.1790261672":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"密钥","src.siteSettings.components.SiteSettingsKeys.2446088470":"密钥","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.3490059488":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"权限","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.3247064221":"激活","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.802625341":"添加职员","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"活动的用户","src.staff.views.2240444792":"","src.staff.views.2728048444":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file +{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.3824684885":"","src.attributes.components.AttributeListPage.2417065806":"","src.attributes.components.AttributeListPage.3916653510":"","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.4048785456":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"名字","src.categories.components.CategoryProductList.636461959":"名字","src.components.ProductList.636461959":"名字","src.products.components.ProductList.636461959":"名字","src.collections.components.CollectionDetails.636461959":"名字","src.collections.components.CollectionProducts.636461959":"名字","src.products.components.ProductDetailsForm.636461959":"名字","src.discounts.components.SaleInfo.636461959":"名字","src.discounts.components.SaleList.636461959":"名字","src.discounts.components.SaleSummary.636461959":"名字","menuItemDialogNameLabel":"名字","src.plugins.components.PluginsList.636461959":"名字","src.products.components.ProductVariants.636461959":"名字","src.shipping.components.ShippingZoneRates.636461959":"名字","src.shipping.components.ShippingZonesList.636461959":"名字","src.staff.components.StaffList.636461959":"名字","src.translations.components.TranslationsEntitiesList.636461959":"名字","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.351422234":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.109182747":"登录","src.auth.components.LoginPage.4028609483":"","src.auth.components.NewPasswordPage.1915811227":"","src.auth.components.NewPasswordPage.1254879564":"","src.auth.components.NewPasswordPage.2799926859":"","src.auth.components.NewPasswordPage.4253911811":"","src.auth.components.NewPasswordPage.2342634351":"","src.auth.components.ResetPasswordPage.2370700732":"","src.auth.components.ResetPasswordPage.3663311080":"","src.auth.components.ResetPasswordSuccessPage.4066297200":"","src.auth.components.ResetPasswordSuccessPage.2245157344":"","src.auth.views.2388238158":"","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"","src.categories.views.2004894945":"","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.2159874182":"","src.categories.components.CategoryUpdatePage.2159874182":"","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.1140231710":"","src.categories.views.1140231710":"","src.categories.components.CategoryListPage.4294878092":"","src.categories.components.CategoryListPage.3841025483":"","src.translations.components.TranslationsEntitiesListPage.3841025483":"","src.categories.components.CategoryProductList.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductList.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProductList.3640454975":"已发布","src.components.ProductList.3640454975":"已发布","src.products.components.ProductList.3640454975":"已发布","src.products.components.ProductListPage.3640454975":"已发布","productStatusLabel":"已发布","src.collections.components.CollectionList.3640454975":"已发布","src.collections.components.CollectionProducts.3640454975":"已发布","src.discounts.components.DiscountProducts.3640454975":"已发布","src.pages.components.PageList.3640454975":"已发布","src.products.views.ProductList.published":"已发布","src.categories.components.CategoryProductList.1134347598":"价格","src.orders.components.OrderFulfillment.1134347598":"价格","src.products.components.ProductList.1134347598":"价格","src.products.components.ProductListPage.1134347598":"价格","src.products.components.ProductPricing.1134347598":"价格","src.components.ProductList.1134347598":"价格","src.orders.components.OrderDraftDetailsProducts.1134347598":"价格","src.orders.components.OrderUnfulfilledItems.1134347598":"价格","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"价格","src.shipping.components.ShippingZoneRates.1134347598":"价格","src.categories.components.CategoryProductList.2341910657":"未发布","src.products.components.ProductList.2341910657":"未发布","src.collections.components.CollectionList.2341910657":"未发布","src.collections.components.CollectionProducts.2341910657":"未发布","src.discounts.components.DiscountProducts.2341910657":"未发布","src.components.ProductList.2341910657":"未发布","src.categories.components.CategoryProductList.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.products.components.ProductList.1657559629":"","src.categories.components.CategoryProducts.4164156574":"","src.categories.components.CategoryProducts.3554578821":"添加产品","src.categories.components.CategoryUpdatePage.2968663655":"产品","src.discounts.components.DiscountCategories.2968663655":"产品","src.discounts.components.DiscountCollections.2968663655":"产品","src.products":"产品","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryUpdatePage.3229914152":"","src.categories.components.CategoryUpdatePage.770296100":"","src.categories.views.1754466114":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.CategoryList.3488150607":"","src.categories.views.712767046":"","src.categories.views.CategoryList.712767046":"","src.categories.views.299584400":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.categories.views.CategoryList.2144707585":"","src.collections.components.CollectionCreatePage.3958681866":"","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionCreatePage.2001551496":"","src.collections.components.CollectionDetailsPage.2001551496":"","src.pages.components.PageDetailsPage.2001551496":"","src.products.components.ProductCreatePage.2001551496":"","src.products.components.ProductUpdatePage.2001551496":"","src.collections.components.CollectionCreatePage.1815688500":"","src.collections.components.CollectionDetailsPage.1815688500":"","src.pages.components.PageDetailsPage.1815688500":"","src.products.components.ProductCreatePage.1815688500":"","src.products.components.ProductUpdatePage.1815688500":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"","src.availability":"","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionListPage.686910896":"","src.collections.views.686910896":"","src.collections.components.CollectionListPage.1631917001":"","src.collections.components.CollectionListPage.4057224233":"","src.components.AssignCollectionDialog.4057224233":"","src.translations.components.TranslationsEntitiesListPage.4057224233":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"","src.collections.views.2402899582":"","src.collections.views.CollectionList.2237014112":"取消发布","src.pages.views.2237014112":"取消发布","src.products.views.ProductList.2237014112":"取消发布","src.collections.views.CollectionList.1547167026":"发布","src.pages.views.1547167026":"发布","src.products.views.ProductList.1547167026":"发布","src.collections.views.CollectionList.2823425739":"","src.collections.views.CollectionList.1348793822":"","src.collections.views.CollectionList.2637364047":"","src.collections.views.CollectionList.3944356444":"","src.collections.views.CollectionList.3817188998":"","src.collections.views.CollectionList.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"登出","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"","src.components.ErrorMessageCard.2845142593":"","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.Filter.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.Filter.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.FilterBar.2340527467":"","src.components.SearchBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"添加","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"","src.pages.components.PageList.1459686496":"","src.products.components.ProductListFilter.1459686496":"","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"","src.products.views.ProductList.hidden":"","src.components.VisibilityCard.292404896":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","src.configuration.2326418019":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","src.configuration.3655543906":"","configurationMenuShipping":"","configurationMenuTaxes":"","src.configuration.3140151600":"","configurationMenuStaff":"","src.configuration.1233229030":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","configurationPluginsPages":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"账单地址","src.customers.components.CustomerAddresses.3517722732":"配送地址","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"地址","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"备注","src.orders.components.OrderCustomerNote.1520756907":"备注","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"备注","src.customers.components.CustomerDetails.577013340":"备注","src.customers.components.CustomerCreatePage.1934221653":"","src.customers.components.CustomerListPage.1934221653":"","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerListPage.477293306":"","src.customers.components.CustomerListPage.1643417013":"","src.customers.components.CustomerOrders.3878642352":"","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"日期","src.orders.components.OrderDraftList.4205493358":"日期","src.orders.components.OrderList.4205493358":"日期","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"状态","src.orders.components.OrderListFilter.1756106276":"状态","src.plugins.components.PluginInfo.1756106276":"状态","src.products.components.ProductListFilter.1756106276":"状态","src.products.components.ProductVariants.1756106276":"状态","src.customers.components.CustomerOrders.878013594":"总数","src.orders.components.OrderDraftDetailsProducts.878013594":"总数","src.orders.components.OrderDraftDetailsSummary.878013594":"总数","src.orders.components.OrderDraftList.878013594":"总数","src.orders.components.OrderFulfillment.878013594":"总数","src.orders.components.OrderUnfulfilledItems.878013594":"总数","src.orders.components.OrderList.878013594":"总数","src.orders.components.OrderPayment.878013594":"总数","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.CustomerList.1946482599":"","src.customers.views.CustomerList.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","src.discounts.components.SaleListPage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"值","src.discounts.components.SaleSummary.1148029984":"值","src.discounts.components.VoucherList.1148029984":"值","src.discounts.components.VoucherSummary.1148029984":"值","src.discounts.components.VoucherValue.1148029984":"值","src.products.components.ProductAttributes.1148029984":"值","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.3907768880":"","src.discounts.components.SaleListPage.1866913828":"","src.translations.components.TranslationsEntitiesListPage.1866913828":"","src.discounts.components.SalePricing.1099355007":"","src.products.components.ProductPricing.1099355007":"","src.products.components.ProductVariantPrice.1099355007":"","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"国家","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"码值","src.discounts.components.VoucherSummary.78726751":"码值","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.614836274":"","src.discounts.components.VoucherListPage.1112241061":"","src.discounts.components.VoucherListPage.1930485532":"","src.translations.components.TranslationsEntitiesListPage.1930485532":"","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"特定商品","src.discounts.shipment":"","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.SaleList.2809303671":"","src.discounts.views.SaleList.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.VoucherList.367317371":"","src.discounts.views.VoucherList.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.somethingWentWrong":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"取消","src.orders.views.OrderList.3528672691":"取消","src.confirm":"","src.delete":"","src.edit":"编辑","src.manage":"","src.remove":"删除","src.save":"保存","src.show":"","src.undo":"","src.attributes":"属性","src.products.components.ProductAttributes.4153345096":"属性","src.categories":"产品分类","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"系列","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"配置","src.customers":"客户","src.draftOrders":"","src.home":"首页","src.navigation":"","src.orders":"订单","src.pages":"页","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.plugins":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"促销","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"税","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"税","src.taxes.components.CountryListPage.3955023266":"税","src.translations":"","src.vouchers":"优惠券","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"","src.partiallyPaid":"","src.partiallyRefunded":"","src.refunded":"","src.unpaid":"","src.cancelled":"","src.draft":"草稿","src.fulfilled":"已完成","src.orders.views.OrderList.fulfilled":"已完成","src.orders.components.OrderListFilter.1712863026":"已完成","src.partiallyFulfilled":"部分完成","src.unfulfilled":"未完成","src.orders.views.OrderList.unfulfilled":"未完成","src.orders.components.OrderListFilter.1751787272":"未完成","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"链接","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"","src.orders.components.OrderDetailsPage.1854613983":"","src.orders.components.OrderDraftPage.1854613983":"","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"客户","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"客户","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"","src.orders.components.OrderCustomerEditDialog.1411666943":"","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.632633254":"","src.orders.components.OrderDraftCancelDialog.36681973":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"产品","src.orders.components.OrderUnfulfilledItems.1895667608":"产品","src.orders.components.OrderDraftDetailsProducts.2796503714":"数量","src.orders.components.OrderFulfillment.2796503714":"数量","src.orders.components.OrderFulfillmentDialog.2796503714":"数量","src.orders.components.OrderUnfulfilledItems.2796503714":"数量","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"","src.orders.components.OrderPayment.781550514":"","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"","src.orders.components.OrderListPage.2826235371":"","src.orders.components.OrderDraftListPage.551325728":"","src.orders.components.OrderDraftListPage.77765281":"","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"","src.orders.components.OrderFulfillmentCancelDialog.732594284":"","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"库存单位","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"追踪编号","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.4067959693":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"支付","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2415661583":"","src.orders.views.OrderList.readyToCapture":"","src.orders.components.OrderListFilter.2222765704":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"配送","src.productTypes.components.ProductTypeShipping.1325966144":"配送","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"配送","src.orders.components.OrderPayment.3768782744":"预授权金额","src.orders.components.OrderPayment.2320183694":"","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"抓取","src.orders.components.OrderPayment.2845258362":"退款","src.orders.components.OrderPayment.2444197639":"","src.orders.components.OrderPayment.3500506678":"","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"金额","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.1542417144":"","src.products.components.ProductListPage.1542417144":"","src.products.views.1542417144":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.OrderDraftList.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.OrderDraftList.1648805446":"","src.orders.views.OrderDraftList.1161115149":"","src.orders.views.OrderDraftList.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.1068617485":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"标题","src.pages.components.PageList.1124600214":"标题","src.pages.components.PageInfo.1116746286":"内容","src.translations.components.TranslationsPagesPage.1116746286":"内容","src.pages.components.PageList.3478065224":"","src.pages.components.PageSlug.3478065224":"","src.productTypes.components.ProductTypeAttributes.3478065224":"","src.pages.components.PageList.3767550649":"","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.3785394515":"","src.pages.views.3785394515":"","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.plugins.components.PluginInfo.3425535100":"","src.plugins.components.PluginsDetailsPage.3425535100":"","src.plugins.components.PluginInfo.1049131348":"","src.plugins.components.PluginInfo.4013064767":"","src.plugins.components.PluginsDetailsPage.3352026836":"","src.plugins.components.PluginsDetailsPage.2277745418":"","src.plugins.components.PluginsDetailsPage.1970881031":"","src.plugins.components.PluginSettings.1970881031":"","src.plugins.components.PluginsDetailsPage.4241018152":"","src.plugins.components.PluginsList.3247064221":"激活","src.staff.components.StaffList.3247064221":"激活","src.plugins.components.PluginsList.4120604650":"","src.plugins.components.PluginsList.666641390":"","src.plugins.views.100549097":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"值","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"图片","src.products.components.ProductVariantImages.3240888698":"图片","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"","src.products.components.ProductVariantStock.3841616483":"","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListFilter.821159718":"","src.products.components.ProductListFilter.1421689426":"","src.products.components.ProductListFilter.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"","prodictStockInventoryLabel":"","src.products.components.ProductVariantStock.3490038570":"","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"","src.products.components.ProductVariants.2153006789":"","src.products.components.ProductVariantNavigation.2845381934":"添加产品变种","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.3989383405":"","src.products.views.3989383405":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1591632382":"","src.products.views.1731766393":"","src.products.views.2880386427":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1217376589":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.3479705616":"","src.productTypes.components.ProductTypeListPage.1776073799":"","src.productTypes.components.ProductTypeListPage.3420445375":"","src.translations.components.TranslationsEntitiesListPage.3420445375":"","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.ProductTypeList.4080551769":"","src.productTypes.views.ProductTypeList.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRates.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2673544109":"","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.1947090060":"","src.shipping.views.ShippingZoneDetails.131963671":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"密钥","src.siteSettings.components.SiteSettingsKeys.2446088470":"密钥","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.1481503299":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"权限","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.797461521":"","src.staff.components.StaffListPage.2852350932":"","src.staff.components.StaffListPage.61043583":"","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"活动的用户","src.staff.views.1308770978":"","src.staff.views.8878988":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.2105464697":"","src.translations.components.TranslationsEntitiesListPage.2559018090":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file diff --git a/locale/zh-Hans.po b/locale/zh-Hans.po index 8d93c820a..d7c98dc3c 100644 --- a/locale/zh-Hans.po +++ b/locale/zh-Hans.po @@ -8,7 +8,7 @@ # msgid "" msgstr "" -"POT-Creation-Date: 2019-09-06T13:56:36.897Z\n" +"POT-Creation-Date: 2019-09-16T15:25:09.340Z\n" "Last-Translator: Patryk Zawadzki , 2019\n" "Language-Team: Chinese Simplified (https://www.transifex.com/mirumee/teams/34782/zh-Hans/)\n" "MIME-Version: 1.0\n" @@ -146,22 +146,6 @@ msgctxt "create new menu item, header" msgid "Add Item" msgstr "" -#. [menuCreateDialogHeader] - dialog header -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json -msgctxt "dialog header" -msgid "Add Menu" -msgstr "" - -#. [menuListPageAddMenu] - button -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json -msgctxt "button" -msgid "Add Menu" -msgstr "" - #. [src.siteSettings.components.SiteSettingsKeyDialog.1238948746] - dialog #. header #. defaultMessage is: @@ -171,14 +155,6 @@ msgctxt "dialog header" msgid "Add New Authorization Key" msgstr "" -#. [src.pages.components.PageDetailsPage.755314116] - page header -#. defaultMessage is: -#. Add Page -#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json -msgctxt "page header" -msgid "Add Page" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.2892088870] - dialog header #. defaultMessage is: #. Add Price Rate @@ -187,38 +163,6 @@ msgctxt "dialog header" msgid "Add Price Rate" msgstr "" -#. [src.orders.components.OrderProductAddDialog.2775402904] - dialog header -#. defaultMessage is: -#. Add Product -#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json -msgctxt "dialog header" -msgid "Add Product" -msgstr "" - -#. [src.products.components.ProductListPage.2775402904] - button -#. defaultMessage is: -#. Add Product -#: build/locale/src/products/components/ProductListPage/ProductListPage.json -msgctxt "button" -msgid "Add Product" -msgstr "" - -#. [src.discounts.components.SaleListPage.1742771332] - button -#. defaultMessage is: -#. Add Sale -#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json -msgctxt "button" -msgid "Add Sale" -msgstr "" - -#. [src.staff.components.StaffAddMemberDialog.3490059488] - dialog header -#. defaultMessage is: -#. Add Staff Member -#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json -msgctxt "dialog header" -msgid "Add Staff Member" -msgstr "" - #. [src.attributes.components.AttributeValueEditDialog.1841790893] - add #. attribute value #. defaultMessage is: @@ -228,14 +172,6 @@ msgctxt "add attribute value" msgid "Add Value" msgstr "" -#. [src.products.views.2178905289] - header -#. defaultMessage is: -#. Add Variant -#: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "header" -msgid "Add Variant" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.1397795758] - add weight #. based shipping method, dialog header #. defaultMessage is: @@ -253,14 +189,6 @@ msgctxt "button" msgid "Add address" msgstr "" -#. [src.attributes.components.AttributeListPage.350498821] - button -#. defaultMessage is: -#. Add attribute -#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json -msgctxt "button" -msgid "Add attribute" -msgstr "添加属性" - #. [src.siteSettings.components.SiteSettingsKeyDialog.50561933] - button #. defaultMessage is: #. Add authentication @@ -269,14 +197,6 @@ msgctxt "button" msgid "Add authentication" msgstr "" -#. [src.categories.components.CategoryListPage.228151782] - button -#. defaultMessage is: -#. Add category -#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json -msgctxt "button" -msgid "Add category" -msgstr "新增分类" - #. [src.collections.components.CollectionCreatePage.3958681866] - page header #. defaultMessage is: #. Add collection @@ -285,14 +205,6 @@ msgctxt "page header" msgid "Add collection" msgstr "" -#. [src.collections.components.CollectionListPage.3958681866] - button -#. defaultMessage is: -#. Add collection -#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json -msgctxt "button" -msgid "Add collection" -msgstr "" - #. [src.customers.components.CustomerCreatePage.1934221653] - page header #. defaultMessage is: #. Add customer @@ -325,14 +237,6 @@ msgctxt "button" msgid "Add key" msgstr "" -#. [menuItemsAddItem] - add new menu item -#. defaultMessage is: -#. Add new item -#: build/locale/src/navigation/components/MenuItems/MenuItems.json -msgctxt "add new menu item" -msgid "Add new item" -msgstr "" - #. [menuItemsPlaceholder] #. defaultMessage is: #. Add new menu item to begin creating menu @@ -367,14 +271,6 @@ msgctxt "button" msgid "Add or Edit Link" msgstr "" -#. [src.pages.components.PageListPage.1767905232] - button -#. defaultMessage is: -#. Add page -#: build/locale/src/pages/components/PageListPage/PageListPage.json -msgctxt "button" -msgid "Add page" -msgstr "" - #. [src.categories.components.CategoryProducts.3554578821] - button #. defaultMessage is: #. Add product @@ -383,14 +279,6 @@ msgctxt "button" msgid "Add product" msgstr "添加产品" -#. [src.productTypes.components.ProductTypeListPage.889729490] - button -#. defaultMessage is: -#. Add product type -#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json -msgctxt "button" -msgid "Add product type" -msgstr "添加产品类别" - #. [src.orders.components.OrderDraftDetails.2528459381] - button #. defaultMessage is: #. Add products @@ -399,14 +287,6 @@ msgctxt "button" msgid "Add products" msgstr "" -#. [src.shipping.components.ShippingZoneRates.352297149] - button -#. defaultMessage is: -#. Add rate -#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json -msgctxt "button" -msgid "Add rate" -msgstr "" - #. [src.categories.components.CategoryCreatePage.2563994280] #. defaultMessage is: #. Add search engine title and description to make this category easier to @@ -468,30 +348,6 @@ msgctxt "button" msgid "Add shipping carrier" msgstr "" -#. [src.shipping.components.ShippingZonesList.2474410767] - button -#. defaultMessage is: -#. Add shipping zone -#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json -msgctxt "button" -msgid "Add shipping zone" -msgstr "" - -#. [src.staff.components.StaffListPage.802625341] - button -#. defaultMessage is: -#. Add staff member -#: build/locale/src/staff/components/StaffListPage/StaffListPage.json -msgctxt "button" -msgid "Add staff member" -msgstr "添加职员" - -#. [src.categories.components.CategoryList.435697837] - button -#. defaultMessage is: -#. Add subcategory -#: build/locale/src/categories/components/CategoryList/CategoryList.json -msgctxt "button" -msgid "Add subcategory" -msgstr "" - #. [src.attributes.components.AttributeProperties.673770329] - add attribute #. as column in product list table #. defaultMessage is: @@ -519,35 +375,14 @@ msgctxt "dialog header" msgid "Add tracking code" msgstr "" -#. [src.attributes.components.AttributeValues.254756045] - add attribute value -#. button -#. defaultMessage is: -#. Add value -#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json -msgctxt "add attribute value button" -msgid "Add value" -msgstr "" - #. [src.products.components.ProductVariantNavigation.2845381934] - button #. defaultMessage is: #. Add variant -#. [src.products.components.ProductVariants.2845381934] - button -#. defaultMessage is: -#. Add variant #: build/locale/src/products/components/ProductVariantNavigation/ProductVariantNavigation.json -#: build/locale/src/products/components/ProductVariants/ProductVariants.json msgctxt "button" msgid "Add variant" msgstr "添加产品变种" -#. [src.discounts.components.VoucherListPage.1536809153] - button -#. defaultMessage is: -#. Add voucher -#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json -msgctxt "button" -msgid "Add voucher" -msgstr "" - #. [src.attributes.views.AttributeDetails.634268988] - added new attribute #. value #. defaultMessage is: @@ -605,14 +440,6 @@ msgctxt "description" msgid "Address line 2" msgstr "" -#. [src.customers.components.CustomerAddress.1320082647] - addres card header -#. defaultMessage is: -#. Address {addressNumber} -#: build/locale/src/customers/components/CustomerAddress/CustomerAddress.json -msgctxt "addres card header" -msgid "Address {addressNumber}" -msgstr "" - #. [src.attributes.components.AttributeValues.1565474525] - attribute values #. list: slug column header #. defaultMessage is: @@ -662,6 +489,46 @@ msgctxt "tax rate" msgid "Agricultural supplies" msgstr "" +#. [src.attributes.components.AttributeListPage.2417065806] - tab name +#. defaultMessage is: +#. All Attributes +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "tab name" +msgid "All Attributes" +msgstr "" + +#. [src.categories.components.CategoryListPage.4294878092] - tab name +#. defaultMessage is: +#. All Categories +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "tab name" +msgid "All Categories" +msgstr "" + +#. [src.collections.components.CollectionListPage.1631917001] - tab name +#. defaultMessage is: +#. All Collections +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "tab name" +msgid "All Collections" +msgstr "" + +#. [src.customers.components.CustomerListPage.477293306] - tab name +#. defaultMessage is: +#. All Customers +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "tab name" +msgid "All Customers" +msgstr "" + +#. [src.orders.components.OrderDraftListPage.551325728] - tab name +#. defaultMessage is: +#. All Drafts +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "tab name" +msgid "All Drafts" +msgstr "" + #. [src.orders.components.OrderListPage.875489544] - tab name #. defaultMessage is: #. All Orders @@ -679,22 +546,54 @@ msgctxt "section header" msgid "All Photos" msgstr "" -#. [src.products.components.ProductListPage.821159718] - tab name +#. [src.productTypes.components.ProductTypeListPage.1776073799] - tab name +#. defaultMessage is: +#. All Product Types +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "tab name" +msgid "All Product Types" +msgstr "" + +#. [src.products.components.ProductListFilter.821159718] - tab name #. defaultMessage is: #. All Products -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "tab name" msgid "All Products" msgstr "" -#. [src.categories.components.CategoryList.3229914152] - section header +#. [src.discounts.components.SaleListPage.3907768880] - tab name +#. defaultMessage is: +#. All Sales +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "tab name" +msgid "All Sales" +msgstr "" + +#. [src.staff.components.StaffListPage.2852350932] - tab name +#. defaultMessage is: +#. All Staff Members +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "tab name" +msgid "All Staff Members" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.3229914152] - section header #. defaultMessage is: #. All Subcategories -#: build/locale/src/categories/components/CategoryList/CategoryList.json +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json msgctxt "section header" msgid "All Subcategories" msgstr "" +#. [src.discounts.components.VoucherListPage.1112241061] - tab name +#. defaultMessage is: +#. All Vouchers +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "tab name" +msgid "All Vouchers" +msgstr "" + #. [src.taxes.components.TaxConfiguration.142803418] #. defaultMessage is: #. All products prices are entered with tax included @@ -802,6 +701,14 @@ msgctxt "description" msgid "Are you sure you want to delete collection's image?" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.36681973] +#. defaultMessage is: +#. Are you sure you want to delete draft #{number}? +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "description" +msgid "Are you sure you want to delete draft #{number}?" +msgstr "" + #. [menuDetailsDeleteMenuContent] #. defaultMessage is: #. Are you sure you want to delete menu {menuName}? @@ -818,6 +725,14 @@ msgctxt "description" msgid "Are you sure you want to delete this address from users address book?" msgstr "" +#. [src.products.views.2880386427] +#. defaultMessage is: +#. Are you sure you want to delete this image? +#: build/locale/src/products/views/ProductImage.json +msgctxt "description" +msgid "Are you sure you want to delete this image?" +msgstr "" + #. [src.attributes.components.AttributeDeleteDialog.3738429348] - dialog #. content #. defaultMessage is: @@ -868,12 +783,7 @@ msgstr "" #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this attribute} #. other{{displayQuantity} categories}}? -#. [src.categories.views.844574071] -#. defaultMessage is: -#. Are you sure you want to delete {counter,plural,one{this attribute} -#. other{{displayQuantity} categories}}? #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this attribute} " @@ -891,22 +801,33 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.2497542455] +#. [src.categories.views.CategoryList.2144707585] +#. defaultMessage is: +#. Are you sure you want to delete {counter,plural,one{this category} +#. other{{displayQuantity} categories}}? +#: build/locale/src/categories/views/CategoryList/CategoryList.json +msgctxt "description" +msgid "" +"Are you sure you want to delete {counter,plural,one{this category} " +"other{{displayQuantity} categories}}?" +msgstr "" + +#. [src.collections.views.CollectionList.2497542455] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this collection} " "other{{displayQuantity} collections}}?" msgstr "" -#. [src.customers.views.409347866] +#. [src.customers.views.CustomerList.409347866] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this customer} #. other{{displayQuantity} customers}}? -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this customer} " @@ -924,11 +845,11 @@ msgid "" "other{{displayQuantity} menus}}?" msgstr "" -#. [src.orders.views.1389231130] - dialog content +#. [src.orders.views.OrderDraftList.1389231130] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this order draft} #. other{{displayQuantity} orderDrafts}}? -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this order draft} " @@ -946,11 +867,11 @@ msgid "" "other{{displayQuantity} pages}}?" msgstr "" -#. [src.productTypes.views.2294091098] - dialog content +#. [src.productTypes.views.ProductTypeList.2294091098] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this product type} #. other{{displayQuantity} product types}}? -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this product type} " @@ -968,11 +889,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.discounts.views.2516361175] - dialog content +#. [src.discounts.views.SaleList.2516361175] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this sale} #. other{{displayQuantity} sales}}? -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this sale} " @@ -1001,17 +922,33 @@ msgid "" "other{{displayQuantity} variants}}?" msgstr "" -#. [src.discounts.views.1791926983] - dialog content +#. [src.discounts.views.VoucherList.1791926983] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this voucher} #. other{{displayQuantity} vouchers}}? -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this voucher} " "other{{displayQuantity} vouchers}}?" msgstr "" +#. [src.shipping.views.ShippingZoneDetails.131963671] - unassign country +#. defaultMessage is: +#. Are you sure you want to delete {countryName} from this shipping zone? +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country" +msgid "Are you sure you want to delete {countryName} from this shipping zone?" +msgstr "" + +#. [src.staff.views.8878988] +#. defaultMessage is: +#. Are you sure you want to delete {email} from staff members? +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "description" +msgid "Are you sure you want to delete {email} from staff members?" +msgstr "" + #. [src.customers.views.1927691511] - delete customer, dialog content #. defaultMessage is: #. Are you sure you want to delete {email}? @@ -1126,11 +1063,11 @@ msgctxt "description" msgid "Are you sure you want to mark this order as paid?" msgstr "" -#. [src.collections.views.1348793822] +#. [src.collections.views.CollectionList.1348793822] #. defaultMessage is: #. Are you sure you want to publish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to publish {counter,plural,one{this collection} " @@ -1159,30 +1096,6 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.orders.components.OrderDraftCancelDialog.3199827590] -#. defaultMessage is: -#. Are you sure you want to remove draft #{number}? -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "description" -msgid "Are you sure you want to remove draft #{number}?" -msgstr "" - -#. [src.products.views.672103788] -#. defaultMessage is: -#. Are you sure you want to remove this image? -#: build/locale/src/products/views/ProductImage.json -msgctxt "description" -msgid "Are you sure you want to remove this image?" -msgstr "" - -#. [src.shipping.views.ShippingZoneDetails.1790261672] - unassign country -#. defaultMessage is: -#. Are you sure you want to remove {countryName} from this shipping zone? -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country" -msgid "Are you sure you want to remove {countryName} from this shipping zone?" -msgstr "" - #. [src.staff.views.3945766678] #. defaultMessage is: #. Are you sure you want to remove {email} avatar? @@ -1191,14 +1104,6 @@ msgctxt "description" msgid "Are you sure you want to remove {email} avatar?" msgstr "" -#. [src.staff.views.2728048444] -#. defaultMessage is: -#. Are you sure you want to remove {email} from staff members? -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "description" -msgid "Are you sure you want to remove {email} from staff members?" -msgstr "" - #. [src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450] #. defaultMessage is: #. Are you sure you want to unassign {attributeName} from {productTypeName}? @@ -1279,11 +1184,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.3944356444] +#. [src.collections.views.CollectionList.3944356444] #. defaultMessage is: #. Are you sure you want to unpublish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to unpublish {counter,plural,one{this collection} " @@ -1444,6 +1349,15 @@ msgctxt "button" msgid "Assign products" msgstr "" +#. [src.attributes.components.AttributeValues.351422234] - assign attribute +#. value button +#. defaultMessage is: +#. Assign value +#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json +msgctxt "assign attribute value button" +msgid "Assign value" +msgstr "" + #. [src.attributes.components.AttributeDetails.3605174225] - attribute's slug #. short code label #. defaultMessage is: @@ -1522,6 +1436,14 @@ msgctxt "product attributes, section header" msgid "Attributes" msgstr "属性" +#. [src.configuration.2326418019] +#. defaultMessage is: +#. Attributes and Product Typess +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Attributes and Product Typess" +msgstr "" + #. [src.attributes.views.AttributeList.3218248395] - deleted multiple #. attributes #. defaultMessage is: @@ -2305,6 +2227,22 @@ msgctxt "description" msgid "Country area" msgstr "" +#. [menuCreateDialogHeader] - dialog header +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json +msgctxt "dialog header" +msgid "Create Menu" +msgstr "" + +#. [menuListPageAddMenu] - button +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json +msgctxt "button" +msgid "Create Menu" +msgstr "" + #. [src.attributes.components.AttributePage.2855501559] - page title #. defaultMessage is: #. Create New Attribute @@ -2329,6 +2267,30 @@ msgctxt "header" msgid "Create New Shipping Zone" msgstr "" +#. [src.pages.components.PageDetailsPage.1068617485] - page header +#. defaultMessage is: +#. Create Page +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page header" +msgid "Create Page" +msgstr "" + +#. [src.orders.components.OrderProductAddDialog.1542417144] - dialog header +#. defaultMessage is: +#. Create Product +#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json +msgctxt "dialog header" +msgid "Create Product" +msgstr "" + +#. [src.products.components.ProductListPage.1542417144] - button +#. defaultMessage is: +#. Create Product +#: build/locale/src/products/components/ProductListPage/ProductListPage.json +msgctxt "button" +msgid "Create Product" +msgstr "" + #. [src.products.views.1542417144] - window title #. defaultMessage is: #. Create Product @@ -2361,11 +2323,19 @@ msgctxt "page header" msgid "Create Sale" msgstr "" -#. [src.products.views.2362587265] - window title +#. [src.discounts.components.SaleListPage.3866518732] - button +#. defaultMessage is: +#. Create Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "button" +msgid "Create Sale" +msgstr "" + +#. [src.products.views.2362587265] - header #. defaultMessage is: #. Create Variant #: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "window title" +msgctxt "header" msgid "Create Variant" msgstr "" @@ -2377,6 +2347,22 @@ msgctxt "page header" msgid "Create Voucher" msgstr "" +#. [src.attributes.components.AttributeListPage.3824684885] - button +#. defaultMessage is: +#. Create attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "button" +msgid "Create attribute" +msgstr "" + +#. [src.categories.components.CategoryListPage.1140231710] - button +#. defaultMessage is: +#. Create category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "button" +msgid "Create category" +msgstr "" + #. [src.categories.views.1140231710] - window title #. defaultMessage is: #. Create category @@ -2385,6 +2371,14 @@ msgctxt "window title" msgid "Create category" msgstr "" +#. [src.collections.components.CollectionListPage.686910896] - button +#. defaultMessage is: +#. Create collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "button" +msgid "Create collection" +msgstr "" + #. [src.collections.views.686910896] - window title #. defaultMessage is: #. Create collection @@ -2401,6 +2395,14 @@ msgctxt "window title" msgid "Create customer" msgstr "" +#. [menuItemsAddItem] - add new menu item +#. defaultMessage is: +#. Create new item +#: build/locale/src/navigation/components/MenuItems/MenuItems.json +msgctxt "add new menu item" +msgid "Create new item" +msgstr "" + #. [src.orders.components.OrderDraftListPage.2826235371] - button #. defaultMessage is: #. Create order @@ -2413,6 +2415,14 @@ msgctxt "button" msgid "Create order" msgstr "" +#. [src.pages.components.PageListPage.3785394515] - button +#. defaultMessage is: +#. Create page +#: build/locale/src/pages/components/PageListPage/PageListPage.json +msgctxt "button" +msgid "Create page" +msgstr "" + #. [src.pages.views.3785394515] - header #. defaultMessage is: #. Create page @@ -2424,11 +2434,55 @@ msgstr "" #. [src.shipping.components.ShippingZoneRateDialog.16061680] - button #. defaultMessage is: #. Create rate +#. [src.shipping.components.ShippingZoneRates.16061680] - button +#. defaultMessage is: +#. Create rate #: build/locale/src/shipping/components/ShippingZoneRateDialog/ShippingZoneRateDialog.json +#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json msgctxt "button" msgid "Create rate" msgstr "" +#. [src.shipping.components.ShippingZonesList.2673544109] - button +#. defaultMessage is: +#. Create shipping zone +#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json +msgctxt "button" +msgid "Create shipping zone" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.770296100] - button +#. defaultMessage is: +#. Create subcategory +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json +msgctxt "button" +msgid "Create subcategory" +msgstr "" + +#. [src.products.components.ProductVariants.3989383405] - button +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/components/ProductVariants/ProductVariants.json +msgctxt "button" +msgid "Create variant" +msgstr "" + +#. [src.products.views.3989383405] - window title +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/views/ProductVariantCreate.json +msgctxt "window title" +msgid "Create variant" +msgstr "" + +#. [src.discounts.components.VoucherListPage.614836274] - button +#. defaultMessage is: +#. Create voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "button" +msgid "Create voucher" +msgstr "" + #. [src.collections.views.1597339737] #. defaultMessage is: #. Created collection @@ -2475,7 +2529,11 @@ msgstr "" #. [src.components.FilterBar.2340527467] #. defaultMessage is: #. Custom Filter +#. [src.components.SearchBar.2340527467] +#. defaultMessage is: +#. Custom Filter #: build/locale/src/components/FilterBar/FilterBar.json +#: build/locale/src/components/SearchBar/SearchBar.json msgctxt "description" msgid "Custom Filter" msgstr "" @@ -2731,10 +2789,18 @@ msgctxt "dialog title" msgid "Delete Collection" msgstr "" -#. [src.orders.views.1161115149] - dialog header +#. [src.products.views.1731766393] - dialog header +#. defaultMessage is: +#. Delete Image +#: build/locale/src/products/views/ProductImage.json +msgctxt "dialog header" +msgid "Delete Image" +msgstr "" + +#. [src.orders.views.OrderDraftList.1161115149] - dialog header #. defaultMessage is: #. Delete Order Drafts -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog header" msgid "Delete Order Drafts" msgstr "" @@ -2772,10 +2838,10 @@ msgctxt "dialog header" msgid "Delete Product Type" msgstr "" -#. [src.productTypes.views.4080551769] - dialog header +#. [src.productTypes.views.ProductTypeList.4080551769] - dialog header #. defaultMessage is: #. Delete Product Types -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog header" msgid "Delete Product Types" msgstr "" @@ -2804,10 +2870,10 @@ msgctxt "dialog header" msgid "Delete Sale" msgstr "" -#. [src.discounts.views.2809303671] - dialog header +#. [src.discounts.views.SaleList.2809303671] - dialog header #. defaultMessage is: #. Delete Sales -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog header" msgid "Delete Sales" msgstr "" @@ -2821,9 +2887,13 @@ msgctxt "custom search delete, dialog header" msgid "Delete Search" msgstr "" +#. [src.components.Filter.2173195312] - button +#. defaultMessage is: +#. Delete Search #. [src.components.TableFilter.2173195312] - button #. defaultMessage is: #. Delete Search +#: build/locale/src/components/Filter/FilterSearch.json #: build/locale/src/components/TableFilter/FilterChips.json msgctxt "button" msgid "Delete Search" @@ -2890,10 +2960,10 @@ msgctxt "dialog header" msgid "Delete Voucher" msgstr "" -#. [src.discounts.views.367317371] - dialog header +#. [src.discounts.views.VoucherList.367317371] - dialog header #. defaultMessage is: #. Delete Vouchers -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog header" msgid "Delete Vouchers" msgstr "" @@ -2927,11 +2997,11 @@ msgstr "" #. [src.categories.views.712767046] - dialog title #. defaultMessage is: #. Delete categories -#. [src.categories.views.712767046] - dialog title +#. [src.categories.views.CategoryList.712767046] - dialog title #. defaultMessage is: #. Delete categories #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "dialog title" msgid "Delete categories" msgstr "" @@ -2948,10 +3018,10 @@ msgctxt "dialog title" msgid "Delete category" msgstr "" -#. [src.collections.views.3817188998] - dialog title +#. [src.collections.views.CollectionList.3817188998] - dialog title #. defaultMessage is: #. Delete collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Delete collections" msgstr "" @@ -2964,14 +3034,31 @@ msgctxt "dialog header" msgid "Delete customer" msgstr "" -#. [src.customers.views.1946482599] - dialog header +#. [src.customers.views.CustomerList.1946482599] - dialog header #. defaultMessage is: #. Delete customers -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "dialog header" msgid "Delete customers" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.632633254] - dialog header +#. defaultMessage is: +#. Delete draft order +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "dialog header" +msgid "Delete draft order" +msgstr "" + +#. [src.shipping.views.ShippingZoneDetails.1947090060] - unassign country, +#. dialog header +#. defaultMessage is: +#. Delete from shipping zone +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country, dialog header" +msgid "Delete from shipping zone" +msgstr "" + #. [src.collections.views.942133001] - dialog title #. defaultMessage is: #. Delete image @@ -3032,6 +3119,14 @@ msgctxt "description" msgid "Deleted collection" msgstr "删除套餐" +#. [src.orders.views.OrderDraftList.1648805446] +#. defaultMessage is: +#. Deleted draft orders +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json +msgctxt "description" +msgid "Deleted draft orders" +msgstr "" + #. [menuListDeletedMenu] #. defaultMessage is: #. Deleted menu @@ -3631,14 +3726,6 @@ msgctxt "order history message" msgid "Fulfilled {quantity} items" msgstr "" -#. [src.orders.components.OrderListFilter.2943502192] - order -#. defaultMessage is: -#. Fulfillment Status -#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json -msgctxt "order" -msgid "Fulfillment Status" -msgstr "" - #. [src.orders.components.OrderHistory.3081292385] - order history message #. defaultMessage is: #. Fulfillment confirmation was sent to customer @@ -3795,12 +3882,12 @@ msgctxt "description" msgid "If empty, the preview shows what will be autogenerated." msgstr "" -#. [src.attributes.components.AttributeProperties.2519239682] +#. [src.attributes.components.AttributeProperties.4048785456] #. defaultMessage is: -#. If enable this attribute can be used as a column in product table. +#. If enabled this attribute can be used as a column in product table. #: build/locale/src/attributes/components/AttributeProperties/AttributeProperties.json msgctxt "description" -msgid "If enable this attribute can be used as a column in product table." +msgid "If enabled this attribute can be used as a column in product table." msgstr "" #. [src.attributes.components.AttributeProperties.787251583] @@ -3906,6 +3993,22 @@ msgctxt "product variant stock" msgid "Inventory" msgstr "" +#. [src.staff.components.StaffAddMemberDialog.1481503299] - dialog header +#. defaultMessage is: +#. Invite Staff Member +#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json +msgctxt "dialog header" +msgid "Invite Staff Member" +msgstr "" + +#. [src.staff.components.StaffListPage.797461521] - button +#. defaultMessage is: +#. Invite staff member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "button" +msgid "Invite staff member" +msgstr "" + #. [src.productTypes.components.ProductTypeShipping.2143413921] - switch #. button #. defaultMessage is: @@ -4258,6 +4361,14 @@ msgctxt "voucher requirement" msgid "Minimum quantity of items" msgstr "" +#. [src.configuration.1233229030] +#. defaultMessage is: +#. Miscellaneous +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Miscellaneous" +msgstr "" + #. [src.attributes.components.AttributeDetails.3334509011] - product attribute #. type #. defaultMessage is: @@ -5090,6 +5201,14 @@ msgctxt "description" msgid "Order History" msgstr "" +#. [src.orders.components.OrderListFilter.2222765704] +#. defaultMessage is: +#. Order Status +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +msgctxt "description" +msgid "Order Status" +msgstr "" + #. [src.orders.components.OrderHistory.1230178536] - order history message #. defaultMessage is: #. Order address was updated @@ -5106,13 +5225,13 @@ msgctxt "order history message" msgid "Order confirmation was sent to customer" msgstr "" -#. [src.orders.views.1872939752] +#. [src.orders.views.OrderDraftList.1872939752] #. defaultMessage is: #. Order draft succesfully created #. [src.orders.views.OrderList.1872939752] #. defaultMessage is: #. Order draft succesfully created -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json #: build/locale/src/orders/views/OrderList/OrderList.json msgctxt "description" msgid "Order draft succesfully created" @@ -5777,6 +5896,14 @@ msgctxt "description" msgid "Product Name" msgstr "" +#. [src.configuration.3655543906] +#. defaultMessage is: +#. Product Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Product Settings" +msgstr "" + #. [src.discounts.components.DiscountProducts.4257289053] #. defaultMessage is: #. Product Type @@ -5935,12 +6062,12 @@ msgctxt "order history message" msgid "Products were added to draft order" msgstr "" -#. [src.orders.components.OrderHistory.2574162126] - order history message +#. [src.orders.components.OrderHistory.4067959693] - order history message #. defaultMessage is: -#. Products were removed from draft order +#. Products were deleted from draft order #: build/locale/src/orders/components/OrderHistory/OrderHistory.json msgctxt "order history message" -msgid "Products were removed from draft order" +msgid "Products were deleted from draft order" msgstr "" #. [src.properties] @@ -5967,10 +6094,10 @@ msgctxt "description" msgid "Provided email address does not exist in our database." msgstr "" -#. [src.collections.views.1547167026] - publish collections +#. [src.collections.views.CollectionList.1547167026] - publish collections #. defaultMessage is: #. Publish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "publish collections" msgid "Publish" msgstr "发布" @@ -6007,10 +6134,10 @@ msgctxt "dialog header" msgid "Publish Products" msgstr "" -#. [src.collections.views.2823425739] - dialog title +#. [src.collections.views.CollectionList.2823425739] - dialog title #. defaultMessage is: #. Publish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Publish collections" msgstr "" @@ -6184,6 +6311,18 @@ msgctxt "shipping method price" msgid "Rate Price" msgstr "" +#. [src.orders.components.OrderListFilter.2415661583] - order status +#. defaultMessage is: +#. Ready to Capture +#. [src.orders.views.OrderList.readyToCapture] - order status +#. defaultMessage is: +#. Ready to Capture +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +#: build/locale/src/orders/views/OrderList/filters.json +msgctxt "order status" +msgid "Ready to Capture" +msgstr "" + #. [src.customers.components.CustomerOrders.3878642352] - section header #. defaultMessage is: #. Recent orders @@ -6232,22 +6371,14 @@ msgctxt "switch button" msgid "Release all stock allocated to this order" msgstr "" -#. [src.auth.components.LoginPage.3182284913] - login -#. defaultMessage is: -#. Remember me -#: build/locale/src/auth/components/LoginPage/LoginPage.json -msgctxt "login" -msgid "Remember me" -msgstr "" - #. [src.categories.views.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. -#. [src.categories.views.3488150607] +#. [src.categories.views.CategoryList.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "description" msgid "Remember this will also delete all products assigned to this category." msgstr "" @@ -6260,39 +6391,6 @@ msgctxt "button" msgid "Remove" msgstr "删除" -#. [src.products.views.490753666] - dialog header -#. defaultMessage is: -#. Remove Image -#: build/locale/src/products/views/ProductImage.json -msgctxt "dialog header" -msgid "Remove Image" -msgstr "" - -#. [src.orders.components.OrderDraftCancelDialog.500287069] - dialog header -#. defaultMessage is: -#. Remove draft order -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "dialog header" -msgid "Remove draft order" -msgstr "" - -#. [src.shipping.views.ShippingZoneDetails.254167659] - unassign country, -#. dialog header -#. defaultMessage is: -#. Remove from shipping zone -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country, dialog header" -msgid "Remove from shipping zone" -msgstr "" - -#. [src.orders.views.3880993240] -#. defaultMessage is: -#. Removed draft orders -#: build/locale/src/orders/views/OrderDraftList.json -msgctxt "description" -msgid "Removed draft orders" -msgstr "" - #. [src.pages.views.1457312643] #. defaultMessage is: #. Removed page @@ -6458,6 +6556,18 @@ msgctxt "button" msgid "Save" msgstr "保存" +#. [src.components.Filter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#. [src.components.TableFilter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#: build/locale/src/components/Filter/FilterSearch.json +#: build/locale/src/components/TableFilter/FilterChips.json +msgctxt "button" +msgid "Save Custom Search" +msgstr "" + #. [src.components.SaveFilterTabDialog.1514415736] - save filter tab, header #. defaultMessage is: #. Save Custom Search @@ -6466,14 +6576,6 @@ msgctxt "save filter tab, header" msgid "Save Custom Search" msgstr "" -#. [src.components.TableFilter.1514415736] - button -#. defaultMessage is: -#. Save Custom Search -#: build/locale/src/components/TableFilter/FilterChips.json -msgctxt "button" -msgid "Save Custom Search" -msgstr "" - #. [src.products.components.ProductVariantCreatePage.2853608829] - button #. defaultMessage is: #. Save variant @@ -6490,6 +6592,14 @@ msgctxt "description" msgid "Saved changes" msgstr "" +#. [src.attributes.components.AttributeListPage.3916653510] +#. defaultMessage is: +#. Search Attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "description" +msgid "Search Attribute" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.902296540] #. defaultMessage is: #. Search Attributes @@ -6506,10 +6616,30 @@ msgctxt "description" msgid "Search Categories" msgstr "" +#. [src.categories.components.CategoryListPage.3841025483] +#. defaultMessage is: +#. Search Category +#. [src.translations.components.TranslationsEntitiesListPage.3841025483] +#. defaultMessage is: +#. Search Category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Category" +msgstr "" + +#. [src.collections.components.CollectionListPage.4057224233] +#. defaultMessage is: +#. Search Collection #. [src.components.AssignCollectionDialog.4057224233] #. defaultMessage is: #. Search Collection +#. [src.translations.components.TranslationsEntitiesListPage.4057224233] +#. defaultMessage is: +#. Search Collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json #: build/locale/src/components/AssignCollectionDialog/AssignCollectionDialog.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json msgctxt "description" msgid "Search Collection" msgstr "" @@ -6522,6 +6652,14 @@ msgctxt "description" msgid "Search Countries" msgstr "" +#. [src.customers.components.CustomerListPage.1643417013] +#. defaultMessage is: +#. Search Customer +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "description" +msgid "Search Customer" +msgstr "" + #. [src.orders.components.OrderCustomer.2433460203] #. defaultMessage is: #. Search Customers @@ -6530,6 +6668,14 @@ msgctxt "description" msgid "Search Customers" msgstr "" +#. [src.orders.components.OrderDraftListPage.77765281] +#. defaultMessage is: +#. Search Draft +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "description" +msgid "Search Draft" +msgstr "" + #. [src.translations.components.TranslationsCategoriesPage.1406947243] #. defaultMessage is: #. Search Engine Description @@ -6610,6 +6756,34 @@ msgctxt "description" msgid "Search Orders..." msgstr "" +#. [src.translations.components.TranslationsEntitiesListPage.2559018090] +#. defaultMessage is: +#. Search Page +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Page" +msgstr "" + +#. [src.translations.components.TranslationsEntitiesListPage.2105464697] +#. defaultMessage is: +#. Search Product +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product" +msgstr "" + +#. [src.productTypes.components.ProductTypeListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#. [src.translations.components.TranslationsEntitiesListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product Type" +msgstr "" + #. [src.components.AssignProductDialog.2850255786] #. defaultMessage is: #. Search Products @@ -6622,14 +6796,46 @@ msgctxt "description" msgid "Search Products" msgstr "" -#. [src.products.components.ProductListPage.3550330425] +#. [src.products.components.ProductListFilter.3550330425] #. defaultMessage is: #. Search Products... -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Search Products..." msgstr "" +#. [src.discounts.components.SaleListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#. [src.translations.components.TranslationsEntitiesListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Sale" +msgstr "" + +#. [src.staff.components.StaffListPage.61043583] +#. defaultMessage is: +#. Search Staff Member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "description" +msgid "Search Staff Member" +msgstr "" + +#. [src.discounts.components.VoucherListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#. [src.translations.components.TranslationsEntitiesListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Voucher" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.524117994] #. defaultMessage is: #. Search by attribute name @@ -6736,10 +6942,10 @@ msgctxt "description" msgid "Select all orders where:" msgstr "" -#. [src.products.components.ProductListPage.1421689426] +#. [src.products.components.ProductListFilter.1421689426] #. defaultMessage is: #. Select all products where: -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Select all products where:" msgstr "" @@ -6825,6 +7031,14 @@ msgctxt "description" msgid "Set plugin as Active" msgstr "" +#. [src.components.VisibilityCard.292404896] +#. defaultMessage is: +#. Set publication date +#: build/locale/src/components/VisibilityCard/VisibilityCard.json +msgctxt "description" +msgid "Set publication date" +msgstr "" + #. [src.discounts.shipment] - voucher discount #. defaultMessage is: #. Shipment @@ -7090,6 +7304,14 @@ msgctxt "staff section name" msgid "Staff Members" msgstr "" +#. [src.configuration.3140151600] +#. defaultMessage is: +#. Staff Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Staff Settings" +msgstr "" + #. [src.standard] - tax rate #. defaultMessage is: #. Standard @@ -8074,10 +8296,10 @@ msgctxt "payment status" msgid "Unpaid" msgstr "" -#. [src.collections.views.2237014112] - unpublish collections +#. [src.collections.views.CollectionList.2237014112] - unpublish collections #. defaultMessage is: #. Unpublish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "unpublish collections" msgid "Unpublish" msgstr "取消发布" @@ -8114,10 +8336,10 @@ msgctxt "dialog header" msgid "Unpublish Products" msgstr "" -#. [src.collections.views.2637364047] - dialog title +#. [src.collections.views.CollectionList.2637364047] - dialog title #. defaultMessage is: #. Unpublish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Unpublish collections" msgstr "" @@ -8617,6 +8839,22 @@ msgctxt "description" msgid "ZIP / Postal code" msgstr "" +#. [src.productTypes.components.ProductTypeListPage.3479705616] - button +#. defaultMessage is: +#. create product type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "button" +msgid "create product type" +msgstr "" + +#. [src.staff.views.1308770978] - dialog header +#. defaultMessage is: +#. delete Staff User +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "dialog header" +msgid "delete Staff User" +msgstr "" + #. [orderPaymentVATDoesNotApply] - vat not included in order price #. defaultMessage is: #. does not apply @@ -8690,19 +8928,35 @@ msgctxt "product status is set as" msgid "is set as" msgstr "" -#. [src.staff.views.2240444792] - dialog header -#. defaultMessage is: -#. remove Staff User -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "dialog header" -msgid "remove Staff User" -msgstr "" - -#. [src.components.VisibilityCard.1815688500] +#. [src.collections.components.CollectionCreatePage.1815688500] - collection #. defaultMessage is: #. since {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.1815688500] - collection +#. defaultMessage is: +#. since {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "since {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.1815688500] - page +#. defaultMessage is: +#. since {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "since {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#. [src.products.components.ProductUpdatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "since {date}" msgstr "" @@ -8730,11 +8984,35 @@ msgctxt "weight" msgid "to {value} {unit}" msgstr "" -#. [src.components.VisibilityCard.2001551496] +#. [src.collections.components.CollectionCreatePage.2001551496] - collection #. defaultMessage is: #. will be visible from {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.2001551496] - collection +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "will be visible from {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.2001551496] - page +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "will be visible from {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#. [src.products.components.ProductUpdatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "will be visible from {date}" msgstr "" diff --git a/locale/zh-Hant.json b/locale/zh-Hant.json index 2a3153541..c875bc18b 100644 --- a/locale/zh-Hant.json +++ b/locale/zh-Hant.json @@ -1 +1 @@ -{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.350498821":"新增屬性","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.2519239682":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"名字","src.categories.components.CategoryProducts.636461959":"名字","src.collections.components.CollectionProducts.636461959":"名字","src.products.components.ProductDetailsForm.636461959":"名字","src.collections.components.CollectionDetails.636461959":"名字","src.components.ProductList.636461959":"名字","src.discounts.components.SaleInfo.636461959":"名字","src.discounts.components.SaleList.636461959":"名字","src.discounts.components.SaleSummary.636461959":"名字","menuItemDialogNameLabel":"名字","src.products.components.ProductVariants.636461959":"名字","src.shipping.components.ShippingZoneRates.636461959":"名字","src.shipping.components.ShippingZonesList.636461959":"名字","src.staff.components.StaffList.636461959":"名字","src.translations.components.TranslationsEntitiesList.636461959":"名字","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.254756045":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.3182284913":"","src.auth.components.LoginPage.109182747":"登入","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"","src.categories.views.2004894945":"","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.3229914152":"","src.categories.components.CategoryList.435697837":"","src.categories.components.CategoryList.2159874182":"","src.categories.components.CategoryUpdatePage.2159874182":"","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.228151782":"新增分類","src.categories.components.CategoryProducts.2968663655":"產品","src.categories.components.CategoryUpdatePage.2968663655":"產品","src.discounts.components.DiscountCategories.2968663655":"產品","src.discounts.components.DiscountCollections.2968663655":"產品","src.products":"產品","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryProducts.3554578821":"新增產品","src.categories.components.CategoryProductsCard.3554578821":"新增產品","src.categories.components.CategoryProducts.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProducts.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.categories.components.CategoryProductsCard.4164156574":"","src.categories.views.1754466114":"","src.categories.views.1140231710":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.712767046":"","src.categories.views.299584400":"","src.categories.views.844574071":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.collections.components.CollectionCreatePage.3958681866":"","src.collections.components.CollectionListPage.3958681866":"","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"","src.availability":"","src.collections.components.CollectionList.3640454975":"已發佈","src.collections.components.CollectionProducts.3640454975":"已發佈","src.discounts.components.DiscountProducts.3640454975":"已發佈","src.components.ProductList.3640454975":"已發佈","src.products.components.ProductListPage.3640454975":"已發佈","src.pages.components.PageList.3640454975":"已發佈","src.products.views.ProductList.published":"已發佈","src.collections.components.CollectionList.2341910657":"","src.collections.components.CollectionProducts.2341910657":"","src.discounts.components.DiscountProducts.2341910657":"","src.components.ProductList.2341910657":"","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.686910896":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"","src.collections.views.2402899582":"","src.collections.views.2237014112":"取消發佈","src.pages.views.2237014112":"取消發佈","src.products.views.ProductList.2237014112":"取消發佈","src.collections.views.1547167026":"發佈","src.pages.views.1547167026":"發佈","src.products.views.ProductList.1547167026":"發佈","src.collections.views.2823425739":"","src.collections.views.1348793822":"","src.collections.views.2637364047":"","src.collections.views.3944356444":"","src.collections.views.3817188998":"","src.collections.views.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"登出","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.4057224233":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"","src.components.ErrorMessageCard.2845142593":"","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.FilterBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"新增","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.ProductList.1134347598":"價格","src.orders.components.OrderDraftDetailsProducts.1134347598":"價格","src.orders.components.OrderFulfillment.1134347598":"價格","src.products.components.ProductListPage.1134347598":"價格","src.products.components.ProductPricing.1134347598":"價格","src.orders.components.OrderUnfulfilledItems.1134347598":"價格","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"價格","src.shipping.components.ShippingZoneRates.1134347598":"價格","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"","src.pages.components.PageList.1459686496":"","src.products.components.ProductListFilter.1459686496":"","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"","src.products.views.ProductList.hidden":"","src.components.VisibilityCard.1815688500":"","src.components.VisibilityCard.2001551496":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","configurationMenuStaff":"","configurationMenuShipping":"","configurationMenuTaxes":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","src.customers.components.CustomerAddress.1320082647":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"帳單地址","src.customers.components.CustomerAddresses.3517722732":"配送地址","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"地址","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"","src.orders.components.OrderCustomerNote.1520756907":"","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"","src.customers.components.CustomerDetails.577013340":"","src.customers.components.CustomerCreatePage.1934221653":"","src.customers.components.CustomerListPage.1934221653":"","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerOrders.3878642352":"","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"日期","src.orders.components.OrderDraftList.4205493358":"日期","src.orders.components.OrderList.4205493358":"日期","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"狀態","src.orders.components.OrderListFilter.1756106276":"狀態","src.products.components.ProductListFilter.1756106276":"狀態","src.products.components.ProductVariants.1756106276":"狀態","src.customers.components.CustomerOrders.878013594":"","src.orders.components.OrderDraftDetailsProducts.878013594":"","src.orders.components.OrderDraftDetailsSummary.878013594":"","src.orders.components.OrderDraftList.878013594":"","src.orders.components.OrderFulfillment.878013594":"","src.orders.components.OrderUnfulfilledItems.878013594":"","src.orders.components.OrderList.878013594":"","src.orders.components.OrderPayment.878013594":"","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.1946482599":"","src.customers.views.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"","src.discounts.components.SaleSummary.1148029984":"","src.discounts.components.VoucherList.1148029984":"","src.discounts.components.VoucherSummary.1148029984":"","src.discounts.components.VoucherValue.1148029984":"","src.products.components.ProductAttributes.1148029984":"","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.1742771332":"","src.discounts.components.SalePricing.1099355007":"","src.products.components.ProductPricing.1099355007":"","src.products.components.ProductVariantPrice.1099355007":"","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"國家","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"","src.discounts.components.VoucherSummary.78726751":"","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.1536809153":"","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"","src.discounts.shipment":"","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.2809303671":"","src.discounts.views.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.367317371":"","src.discounts.views.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"取消","src.orders.views.OrderList.3528672691":"取消","src.confirm":"","src.delete":"","src.edit":"編輯","src.manage":"","src.remove":"刪除","src.save":"儲存","src.show":"","src.undo":"","src.attributes":"屬性","src.products.components.ProductAttributes.4153345096":"屬性","src.categories":"產品分類","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"配置","src.customers":"客戶","src.draftOrders":"","src.home":"首頁","src.navigation":"","src.orders":"訂單","src.pages":"","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"促銷","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"","src.taxes.components.CountryListPage.3955023266":"","src.translations":"","src.vouchers":"優惠券","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"","src.partiallyPaid":"","src.partiallyRefunded":"","src.refunded":"","src.unpaid":"","src.cancelled":"","src.draft":"草稿","src.fulfilled":"","src.orders.views.OrderList.fulfilled":"","src.orders.components.OrderListFilter.1712863026":"","src.partiallyFulfilled":"","src.unfulfilled":"","src.orders.views.OrderList.unfulfilled":"","src.orders.components.OrderListFilter.1751787272":"","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","src.1395232177":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"","src.orders.components.OrderDetailsPage.1854613983":"","src.orders.components.OrderDraftPage.1854613983":"","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"客戶","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"客戶","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"","src.orders.components.OrderCustomerEditDialog.1411666943":"","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.500287069":"","src.orders.components.OrderDraftCancelDialog.3199827590":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"產品","src.orders.components.OrderUnfulfilledItems.1895667608":"產品","src.orders.components.OrderDraftDetailsProducts.2796503714":"庫存","src.orders.components.OrderFulfillment.2796503714":"庫存","src.orders.components.OrderFulfillmentDialog.2796503714":"庫存","src.orders.components.OrderUnfulfilledItems.2796503714":"庫存","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"","src.orders.components.OrderPayment.781550514":"","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"","src.orders.components.OrderListPage.2826235371":"","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"","src.orders.components.OrderFulfillmentCancelDialog.732594284":"","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"庫存單位","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.2574162126":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"付款","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2943502192":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"","src.productTypes.components.ProductTypeShipping.1325966144":"","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"","src.orders.components.OrderPayment.3768782744":"預先授權金額","src.orders.components.OrderPayment.2320183694":"","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"選取","src.orders.components.OrderPayment.2845258362":"退款","src.orders.components.OrderPayment.2444197639":"","src.orders.components.OrderPayment.3500506678":"","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"金額","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.2775402904":"","src.products.components.ProductListPage.2775402904":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.3880993240":"","src.orders.views.1161115149":"","src.orders.views.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.755314116":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"","src.pages.components.PageList.1124600214":"","src.pages.components.PageInfo.1116746286":"","src.translations.components.TranslationsPagesPage.1116746286":"","src.pages.components.PageList.3478065224":"","src.pages.components.PageSlug.3478065224":"","src.productTypes.components.ProductTypeAttributes.3478065224":"","src.pages.components.PageList.3767550649":"","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.1767905232":"","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.3785394515":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"值","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"圖片","src.products.components.ProductVariantImages.3240888698":"圖片","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"","src.products.components.ProductVariantStock.3841616483":"","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListPage.821159718":"","src.products.components.ProductListPage.1421689426":"","src.products.components.ProductListPage.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"","prodictStockInventoryLabel":"","src.products.components.ProductVariantStock.3490038570":"","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"","src.products.components.ProductVariants.2153006789":"","src.products.components.ProductVariantNavigation.2845381934":"新增產品變種","src.products.components.ProductVariants.2845381934":"新增產品變種","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1542417144":"","src.products.views.1591632382":"","src.products.views.490753666":"","src.products.views.672103788":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.1694086800":"","src.products.views.ProductList.224127438":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.products.views.2178905289":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1756957616":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.889729490":"新增產品類別","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.4080551769":"","src.productTypes.views.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.352297149":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2474410767":"","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.254167659":"","src.shipping.views.ShippingZoneDetails.1790261672":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"密鑰","src.siteSettings.components.SiteSettingsKeys.2446088470":"密鑰","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.3490059488":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"權限","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.3247064221":"","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.802625341":"新增員工","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"","src.staff.views.2240444792":"","src.staff.views.2728048444":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file +{"src.attributes.components.AttributeBulkDeleteDialog.1655187315":"","src.attributes.components.AttributeBulkDeleteDialog.2916860383":"","src.attributes.components.AttributeDeleteDialog.1889602489":"","src.attributes.components.AttributeDeleteDialog.3738429348":"","src.attributes.components.AttributeDetails.1336738461":"","src.attributes.components.AttributeDetails.3334509011":"","src.attributes.components.AttributeDetails.691600601":"","src.attributes.components.AttributeList.691600601":"","src.attributes.components.AttributeDetails.3605174225":"","src.attributes.components.AttributeList.3605174225":"","src.attributes.components.AttributeDetails.4107478955":"","src.attributes.components.AttributeDetails.1005562666":"","src.attributes.components.AttributeDetails.2592224946":"","src.attributes.components.AttributeList.643174786":"","src.components.VisibilityCard.643174786":"","src.products.components.ProductListFilter.643174786":"","src.attributes.components.AttributeList.2235596452":"","src.attributes.components.AttributeList.2186555805":"","src.attributes.components.AttributeList.1192828581":"","src.productTypes.components.ProductTypeAttributes.1192828581":"","src.attributes.components.AttributeListPage.3824684885":"","src.attributes.components.AttributeListPage.2417065806":"","src.attributes.components.AttributeListPage.3916653510":"","src.attributes.components.AttributePage.2855501559":"","src.attributes.components.AttributeProperties.1877630205":"","src.attributes.components.AttributeProperties.1564730914":"","src.attributes.components.AttributeProperties.3590282519":"","src.attributes.components.AttributeProperties.3876764312":"","src.attributes.components.AttributeProperties.26409543":"","src.attributes.components.AttributeProperties.714335445":"","src.attributes.components.AttributeProperties.787251583":"","src.attributes.components.AttributeProperties.673770329":"","src.attributes.components.AttributeProperties.4048785456":"","src.attributes.components.AttributeValueDeleteDialog.203246037":"","src.attributes.components.AttributeValueDeleteDialog.1934550550":"","src.attributes.components.AttributeValueDeleteDialog.273524270":"","src.attributes.components.AttributeValueEditDialog.1841790893":"","src.attributes.components.AttributeValueEditDialog.1395607402":"","src.attributes.components.AttributeValueEditDialog.636461959":"名字","src.categories.components.CategoryProductList.636461959":"名字","src.components.ProductList.636461959":"名字","src.products.components.ProductList.636461959":"名字","src.collections.components.CollectionDetails.636461959":"名字","src.collections.components.CollectionProducts.636461959":"名字","src.products.components.ProductDetailsForm.636461959":"名字","src.discounts.components.SaleInfo.636461959":"名字","src.discounts.components.SaleList.636461959":"名字","src.discounts.components.SaleSummary.636461959":"名字","menuItemDialogNameLabel":"名字","src.plugins.components.PluginsList.636461959":"名字","src.products.components.ProductVariants.636461959":"名字","src.shipping.components.ShippingZoneRates.636461959":"名字","src.shipping.components.ShippingZonesList.636461959":"名字","src.staff.components.StaffList.636461959":"名字","src.translations.components.TranslationsEntitiesList.636461959":"名字","src.attributes.components.AttributeValues.224159874":"","src.attributes.components.AttributeValues.351422234":"","src.attributes.components.AttributeValues.1565474525":"","src.attributes.components.AttributeValues.1397696159":"","src.attributes.components.AttributeValues.2054206599":"","src.attributes.views.AttributeCreate.11941964":"","src.attributes.views.AttributeCreate.2348058468":"","src.attributes.views.AttributeDetails.499456739":"","src.attributes.views.AttributeDetails.423042761":"","src.attributes.views.AttributeDetails.634268988":"","src.attributes.views.AttributeList.3218248395":"","src.auth.components.LoginPage.3476994590":"","src.auth.components.LoginPage.2237029987":"","src.siteSettings.components.SiteSettingsKeyDialog.2237029987":"","src.auth.components.LoginPage.109182747":"登入","src.auth.components.LoginPage.4028609483":"","src.auth.components.NewPasswordPage.1915811227":"","src.auth.components.NewPasswordPage.1254879564":"","src.auth.components.NewPasswordPage.2799926859":"","src.auth.components.NewPasswordPage.4253911811":"","src.auth.components.NewPasswordPage.2342634351":"","src.auth.components.ResetPasswordPage.2370700732":"","src.auth.components.ResetPasswordPage.3663311080":"","src.auth.components.ResetPasswordSuccessPage.4066297200":"","src.auth.components.ResetPasswordSuccessPage.2245157344":"","src.auth.views.2388238158":"","src.categories.components.CategoryBackground.1849089820":"","src.collections.components.CollectionImage.1849089820":"","src.categories.components.CategoryBackground.3289097895":"","src.collections.components.CollectionImage.3289097895":"","src.categories.components.CategoryCreatePage.236319840":"","src.categories.components.CategoryCreatePage.2563994280":"","src.categories.components.CategoryUpdatePage.2563994280":"","src.categories.components.CategoryDeleteDialog.2004894945":"","src.categories.views.2004894945":"","src.categories.components.CategoryDeleteDialog.847492725":"","src.categories.views.847492725":"","src.categories.components.CategoryDetailsForm.1214235329":"","src.categories.components.CategoryList.1214235329":"","src.collections.components.CollectionList.1214235329":"","src.translations.components.TranslationsCategoriesPage.1214235329":"","src.categories.components.CategoryDetailsForm.4037703468":"","src.categories.components.CategoryList.2159874182":"","src.categories.components.CategoryUpdatePage.2159874182":"","src.categories.components.CategoryList.2527742754":"","src.collections.components.CollectionList.2527742754":"","src.categories.components.CategoryList.2054128296":"","src.discounts.components.DiscountCategories.2054128296":"","src.categories.components.CategoryList.2155313053":"","src.categories.components.CategoryListPage.1140231710":"","src.categories.views.1140231710":"","src.categories.components.CategoryListPage.4294878092":"","src.categories.components.CategoryListPage.3841025483":"","src.translations.components.TranslationsEntitiesListPage.3841025483":"","src.categories.components.CategoryProductList.1952810469":"","src.collections.components.CollectionProducts.1952810469":"","src.products.components.ProductList.1952810469":"","src.products.components.ProductListPage.1952810469":"","src.components.ProductList.1952810469":"","src.productTypes.components.ProductTypeList.1952810469":"","src.categories.components.CategoryProductList.3640454975":"已發佈","src.components.ProductList.3640454975":"已發佈","src.products.components.ProductList.3640454975":"已發佈","src.products.components.ProductListPage.3640454975":"已發佈","productStatusLabel":"已發佈","src.collections.components.CollectionList.3640454975":"已發佈","src.collections.components.CollectionProducts.3640454975":"已發佈","src.discounts.components.DiscountProducts.3640454975":"已發佈","src.pages.components.PageList.3640454975":"已發佈","src.products.views.ProductList.published":"已發佈","src.categories.components.CategoryProductList.1134347598":"價格","src.orders.components.OrderFulfillment.1134347598":"價格","src.products.components.ProductList.1134347598":"價格","src.products.components.ProductListPage.1134347598":"價格","src.products.components.ProductPricing.1134347598":"價格","src.components.ProductList.1134347598":"價格","src.orders.components.OrderDraftDetailsProducts.1134347598":"價格","src.orders.components.OrderUnfulfilledItems.1134347598":"價格","src.products.components.ProductListFilter.1134347598":"","src.products.components.ProductVariants.1134347598":"價格","src.shipping.components.ShippingZoneRates.1134347598":"價格","src.categories.components.CategoryProductList.2341910657":"","src.products.components.ProductList.2341910657":"","src.collections.components.CollectionList.2341910657":"","src.collections.components.CollectionProducts.2341910657":"","src.discounts.components.DiscountProducts.2341910657":"","src.components.ProductList.2341910657":"","src.categories.components.CategoryProductList.1657559629":"","src.collections.components.CollectionProducts.1657559629":"","src.components.ProductList.1657559629":"","src.discounts.components.DiscountProducts.1657559629":"","homeProductsListCardNoProducts":"","src.products.components.ProductList.1657559629":"","src.categories.components.CategoryProducts.4164156574":"","src.categories.components.CategoryProducts.3554578821":"新增產品","src.categories.components.CategoryUpdatePage.2968663655":"產品","src.discounts.components.DiscountCategories.2968663655":"產品","src.discounts.components.DiscountCollections.2968663655":"產品","src.products":"產品","src.translations.components.TranslationsEntitiesListPage.2968663655":"","src.categories.components.CategoryUpdatePage.3229914152":"","src.categories.components.CategoryUpdatePage.770296100":"","src.categories.views.1754466114":"","src.categories.views.2189424032":"","src.categories.views.3488150607":"","src.categories.views.CategoryList.3488150607":"","src.categories.views.712767046":"","src.categories.views.CategoryList.712767046":"","src.categories.views.299584400":"","src.categories.views.2507763081":"","src.categories.views.3231188861":"","src.categories.views.CategoryList.2144707585":"","src.collections.components.CollectionCreatePage.3958681866":"","src.collections.components.CollectionCreatePage.946315389":"","src.collections.components.CollectionDetailsPage.946315389":"","src.collections.components.CollectionCreatePage.2001551496":"","src.collections.components.CollectionDetailsPage.2001551496":"","src.pages.components.PageDetailsPage.2001551496":"","src.products.components.ProductCreatePage.2001551496":"","src.products.components.ProductUpdatePage.2001551496":"","src.collections.components.CollectionCreatePage.1815688500":"","src.collections.components.CollectionDetailsPage.1815688500":"","src.pages.components.PageDetailsPage.1815688500":"","src.products.components.ProductCreatePage.1815688500":"","src.products.components.ProductUpdatePage.1815688500":"","src.collections.components.CollectionDetailsPage.2906897537":"","src.collections.components.CollectionList.3326160357":"","src.availability":"","src.collections.components.CollectionList.2137803833":"","src.discounts.components.DiscountCollections.2137803833":"","src.collections.components.CollectionListPage.686910896":"","src.collections.views.686910896":"","src.collections.components.CollectionListPage.1631917001":"","src.collections.components.CollectionListPage.4057224233":"","src.components.AssignCollectionDialog.4057224233":"","src.translations.components.TranslationsEntitiesListPage.4057224233":"","src.collections.components.CollectionProducts.4114667680":"","src.collections.components.CollectionProducts.460524544":"","src.collections.views.1597339737":"","src.collections.views.2001540731":"","src.collections.views.3482612628":"","src.collections.views.1152429477":"","src.collections.views.870815507":"","saleDetailsUnassignCategory":"","saleDetailsUnassignCollection":"","saleDetailsUnassignProduct":"","voucherDetailsUnassignCategory":"","voucherDetailsUnassignCollection":"","voucherDetailsUnassignProduct":"","src.productTypes.views.ProductTypeUpdate.870815507":"","src.collections.views.699514132":"","src.collections.views.523939418":"","src.collections.views.3791354625":"","src.collections.views.1908998638":"","src.discounts.views.786949385":"","src.collections.views.942133001":"","src.collections.views.2402899582":"","src.collections.views.CollectionList.2237014112":"取消發佈","src.pages.views.2237014112":"取消發佈","src.products.views.ProductList.2237014112":"取消發佈","src.collections.views.CollectionList.1547167026":"發佈","src.pages.views.1547167026":"發佈","src.products.views.ProductList.1547167026":"發佈","src.collections.views.CollectionList.2823425739":"","src.collections.views.CollectionList.1348793822":"","src.collections.views.CollectionList.2637364047":"","src.collections.views.CollectionList.3944356444":"","src.collections.views.CollectionList.3817188998":"","src.collections.views.CollectionList.2497542455":"","src.components.AddressEdit.3570415321":"","src.siteSettings.components.SiteSettingsAddress.3570415321":"","src.components.AddressEdit.1271289966":"","src.siteSettings.components.SiteSettingsAddress.1271289966":"","src.components.AddressEdit.1363074570":"","src.siteSettings.components.SiteSettingsAddress.1363074570":"","src.components.AddressEdit.3121963259":"","src.siteSettings.components.SiteSettingsAddress.3121963259":"","src.components.AddressEdit.253031977":"","src.siteSettings.components.SiteSettingsAddress.253031977":"","src.components.AddressEdit.2965971965":"","src.siteSettings.components.SiteSettingsAddress.2965971965":"","src.components.AddressEdit.1139500589":"","src.siteSettings.components.SiteSettingsAddress.1139500589":"","src.components.AddressEdit.944851093":"","src.siteSettings.components.SiteSettingsAddress.944851093":"","src.components.AppLayout.21332146":"登出","src.components.AssignCategoryDialog.190977792":"","src.components.AssignCategoryDialog.1305061437":"","src.components.AssignCategoryDialog.3690273268":"","src.components.AssignCategoryDialog.3973677075":"","src.discounts.components.DiscountCategories.3973677075":"","src.components.AssignCollectionDialog.3992923611":"","src.components.AssignCollectionDialog.2605414502":"","src.components.AssignCollectionDialog.1035511604":"","src.discounts.components.DiscountCollections.1035511604":"","src.components.AssignProductDialog.649693468":"","src.components.AssignProductDialog.2850255786":"","src.orders.components.OrderProductAddDialog.2850255786":"","src.components.AssignProductDialog.2336947364":"","src.orders.components.OrderProductAddDialog.2336947364":"","src.components.AssignProductDialog.2100305525":"","src.discounts.components.DiscountProducts.2100305525":"","src.components.AutocompleteSelectMenu.2332404293":"","src.components.ColumnPicker.2539195044":"","src.components.ColumnPicker.2715399461":"","src.components.ColumnPicker.1483881697":"","src.components.ConfirmButton.2845142593":"","src.components.ErrorMessageCard.2845142593":"","src.components.ErrorPage.2845142593":"","src.components.CountryList.2747492886":"","src.discounts.components.DiscountCountrySelectDialog.2747492886":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2747492886":"","src.components.CountryList.2460766407":"","src.components.DeleteFilterTabDialog.2173195312":"","src.components.Filter.2173195312":"","src.components.TableFilter.2173195312":"","src.components.DeleteFilterTabDialog.71479100":"","src.components.ErrorPage.2736139139":"","src.components.NotFoundPage.2736139139":"","src.components.ErrorPage.3182212440":"","src.components.ErrorPage.3090161573":"","src.components.ErrorPage.1723676032":"","src.components.FileUpload.3050254265":"","src.components.Filter.2852521946":"","src.components.Filter.2230339185":"","src.components.Filter.2851720415":"","src.components.Filter.2755325844":"","src.components.Filter.152217691":"","src.components.Filter.1514415736":"","src.components.TableFilter.1514415736":"","src.components.SaveFilterTabDialog.1514415736":"","src.components.FilterBar.2340527467":"","src.components.SearchBar.2340527467":"","src.components.FilterCard.996289613":"","src.components.ImageUpload.1731007575":"","src.components.LanguageSwitch.4150219184":"","src.components.ListField.3099331554":"新增","src.components.MoneyRange.1316359951":"","src.components.MoneyRange.3729849657":"","src.components.MoneyRange.12301532":"","src.components.MultiAutocompleteSelectField.1477537381":"","src.components.SingleAutocompleteSelectField.1477537381":"","src.components.MultiAutocompleteSelectField.4205644805":"","src.components.MultiSelectField.4205644805":"","src.components.RadioGroupField.4205644805":"","src.components.SingleAutocompleteSelectField.4205644805":"","src.components.SingleSelectField.4205644805":"","src.productTypes.components.AssignAttributeDialog.4205644805":"","src.components.NotFoundPage.4036415297":"","src.components.NotFoundPage.4205980614":"","src.components.NotFoundPage.678743710":"","src.components.RichTextEditor.2049070632":"","src.components.RichTextEditor.1603794322":"","src.components.RichTextEditor.4035057905":"","src.components.RichTextEditor.2160163587":"","src.components.RichTextEditor.2925475978":"","src.components.RowNumberSelect.1154361791":"","src.components.SaveFilterTabDialog.1556856943":"","src.components.SeoForm.3468022343":"","src.translations.components.TranslationsCategoriesPage.3468022343":"","src.translations.components.TranslationsCollectionsPage.3468022343":"","src.translations.components.TranslationsPagesPage.3468022343":"","src.translations.components.TranslationsProductsPage.3468022343":"","src.components.SeoForm.3198271020":"","src.components.SeoForm.1324250412":"","src.components.SeoForm.3877274856":"","src.components.SeoForm.2378618579":"","src.components.SeoForm.1991321627":"","src.components.SingleAutocompleteSelectField.3069107721":"","src.discounts.components.VoucherRequirements.3069107721":"","src.components.TableHead.868570480":"","src.components.Timeline.3028189627":"","src.components.Timeline.1359200231":"","src.components.VisibilityCard.1459686496":"","src.pages.components.PageList.1459686496":"","src.products.components.ProductListFilter.1459686496":"","src.components.VisibilityCard.77815154":"","src.products.components.ProductListFilter.77815154":"","src.products.views.ProductList.hidden":"","src.components.VisibilityCard.292404896":"","src.components.VisibilityCard.2060790769":"","src.components.Weight.2781622322":"","src.components.WeightRange.2892071052":"","src.components.WeightRange.4256193688":"","src.components.WeightRange.264731940":"","src.configuration.2326418019":"","configurationMenuAttributes":"","configurationMenuProductTypes":"","src.configuration.3655543906":"","configurationMenuShipping":"","configurationMenuTaxes":"","src.configuration.3140151600":"","configurationMenuStaff":"","src.configuration.1233229030":"","configurationMenuNavigation":"","configurationMenuSiteSettings":"","configurationMenuPages":"","configurationPluginsPages":"","src.customers.components.CustomerAddress.1224809208":"","src.customers.components.CustomerAddress.4109348993":"","src.customers.components.CustomerAddress.1578192486":"","src.customers.components.CustomerAddress.2131178753":"","src.customers.components.CustomerAddress.3096438859":"","src.customers.components.CustomerAddressDialog.3769321414":"","src.customers.components.CustomerAddressDialog.2364475135":"","src.customers.components.CustomerAddresses.1967111456":"","src.customers.components.CustomerAddresses.2428885633":"帳單地址","src.customers.components.CustomerAddresses.3517722732":"配送地址","src.customers.components.CustomerAddresses.3870425261":"","src.customers.components.CustomerAddresses.359810770":"地址","src.customers.components.CustomerAddressListPage.489918044":"","src.customers.components.CustomerAddressListPage.1090326769":"","src.customers.components.CustomerAddressListPage.3623935073":"","src.customers.components.CustomerAddressListPage.1484733755":"","src.customers.components.CustomerAddressListPage.1428369222":"","src.customers.components.CustomerCreateAddress.1922654050":"","src.customers.components.CustomerCreateAddress.401345057":"","src.customers.components.CustomerCreateDetails.4157831287":"","src.customers.components.CustomerCreateNote.1520756907":"","src.orders.components.OrderCustomerNote.1520756907":"","src.customers.components.CustomerCreateNote.932844352":"","src.customers.components.CustomerCreateNote.577013340":"","src.customers.components.CustomerDetails.577013340":"","src.customers.components.CustomerCreatePage.1934221653":"","src.customers.components.CustomerListPage.1934221653":"","src.customers.components.CustomerDetails.2200102325":"","src.customers.components.CustomerDetails.2968565128":"","src.customers.components.CustomerList.4154265139":"","src.customers.components.CustomerList.2339105195":"","src.customers.components.CustomerList.1432565772":"","src.customers.components.CustomerList.2239722559":"","src.customers.components.CustomerListPage.477293306":"","src.customers.components.CustomerListPage.1643417013":"","src.customers.components.CustomerOrders.3878642352":"","src.customers.components.CustomerOrders.3029139173":"","src.customers.components.CustomerOrders.2889196282":"","src.orders.components.OrderDraftList.2889196282":"","src.orders.components.OrderList.2889196282":"","src.customers.components.CustomerOrders.4205493358":"日期","src.orders.components.OrderDraftList.4205493358":"日期","src.orders.components.OrderList.4205493358":"日期","src.orders.components.OrderListFilter.4205493358":"","src.customers.components.CustomerOrders.1756106276":"狀態","src.orders.components.OrderListFilter.1756106276":"狀態","src.plugins.components.PluginInfo.1756106276":"狀態","src.products.components.ProductListFilter.1756106276":"狀態","src.products.components.ProductVariants.1756106276":"狀態","src.customers.components.CustomerOrders.878013594":"","src.orders.components.OrderDraftDetailsProducts.878013594":"","src.orders.components.OrderDraftDetailsSummary.878013594":"","src.orders.components.OrderDraftList.878013594":"","src.orders.components.OrderFulfillment.878013594":"","src.orders.components.OrderUnfulfilledItems.878013594":"","src.orders.components.OrderList.878013594":"","src.orders.components.OrderPayment.878013594":"","src.customers.components.CustomerOrders.898333473":"","src.orders.components.OrderList.898333473":"","src.customers.components.CustomerStats.2543847016":"","src.customers.components.CustomerStats.1135318032":"","src.customers.components.CustomerStats.1787449306":"","src.customers.views.2657976015":"","src.customers.views.3689332763":"","src.customers.views.3970234993":"","src.customers.views.2859116187":"","src.customers.views.3901579344":"","src.customers.views.442409664":"","src.customers.views.1927691511":"","src.customers.views.CustomerList.1946482599":"","src.customers.views.CustomerList.409347866":"","src.discounts.components.DiscountCategories.1681512341":"","src.discounts.components.DiscountCategories.1567318211":"","src.discounts.components.DiscountCollections.452750900":"","src.discounts.components.DiscountCollections.3011396316":"","src.discounts.components.DiscountCountrySelectDialog.1585396479":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1585396479":"","src.discounts.components.DiscountCountrySelectDialog.2177165134":"","src.discounts.components.DiscountCountrySelectDialog.2566713432":"","src.discounts.components.DiscountCountrySelectDialog.2110418881":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2110418881":"","src.discounts.components.DiscountCountrySelectDialog.2777439857":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2777439857":"","src.discounts.components.DiscountProducts.919175218":"","src.discounts.components.DiscountProducts.2697405188":"","src.translations.components.TranslationsProductsPage.2697405188":"","src.discounts.components.DiscountProducts.4257289053":"","src.products.components.ProductOrganization.4257289053":"","src.discounts.components.SaleCreatePage.3866518732":"","src.discounts.components.SaleListPage.3866518732":"","saleDetailsPageCategoriesQuantity":"","src.discounts.components.VoucherDetailsPage.346170541":"","saleDetailsPageCollectionsQuantity":"","src.discounts.components.VoucherDetailsPage.3673147015":"","saleDetailsPageProductsQuantity":"","src.discounts.components.VoucherDetailsPage.846927739":"","src.discounts.components.SaleList.47059407":"","src.discounts.components.VoucherList.47059407":"","src.discounts.components.SaleList.3715522424":"","src.discounts.components.VoucherList.3715522424":"","src.discounts.components.SaleList.1148029984":"","src.discounts.components.SaleSummary.1148029984":"","src.discounts.components.VoucherList.1148029984":"","src.discounts.components.VoucherSummary.1148029984":"","src.discounts.components.VoucherValue.1148029984":"","src.products.components.ProductAttributes.1148029984":"","src.discounts.components.SaleList.4101565527":"","src.discounts.components.SaleListPage.3907768880":"","src.discounts.components.SaleListPage.1866913828":"","src.translations.components.TranslationsEntitiesListPage.1866913828":"","src.discounts.components.SalePricing.1099355007":"","src.products.components.ProductPricing.1099355007":"","src.products.components.ProductVariantPrice.1099355007":"","src.discounts.components.SalePricing.1205967018":"","src.discounts.components.VoucherValue.1205967018":"","src.discounts.components.SalePricing.2503204759":"","src.discounts.components.VoucherCreatePage.1357216572":"","src.discounts.components.VoucherDates.1662220323":"","src.discounts.components.VoucherDates.1596226028":"","src.discounts.components.VoucherDetailsPage.2071139683":"","src.discounts.components.VoucherDetailsPage.3109712047":"國家","src.shipping.components.ShippingZoneCreatePage.3109712047":"","src.shipping.components.ShippingZoneDetailsPage.3109712047":"","src.shipping.components.ShippingZonesList.3109712047":"","src.discounts.components.VoucherDetailsPage.2102960822":"","src.discounts.components.VoucherInfo.1944363009":"","src.discounts.components.VoucherInfo.1262795626":"","src.discounts.components.VoucherLimits.3751756157":"","src.discounts.components.VoucherSummary.3751756157":"","src.discounts.components.VoucherLimits.2215544659":"","src.discounts.components.VoucherLimits.557552777":"","src.discounts.components.VoucherLimits.3459612469":"","src.discounts.components.VoucherList.78726751":"","src.discounts.components.VoucherSummary.78726751":"","src.discounts.components.VoucherList.2427377316":"","src.discounts.components.VoucherList.3917820600":"","src.discounts.components.VoucherList.79160621":"","src.discounts.components.VoucherListPage.614836274":"","src.discounts.components.VoucherListPage.1112241061":"","src.discounts.components.VoucherListPage.1930485532":"","src.translations.components.TranslationsEntitiesListPage.1930485532":"","src.discounts.components.VoucherRequirements.653777456":"","src.discounts.components.VoucherRequirements.3740704788":"","src.discounts.components.VoucherRequirements.2746532349":"","src.discounts.components.VoucherSummary.2735425668":"","src.discounts.components.VoucherSummary.1836123577":"","src.discounts.components.VoucherTypes.46415128":"","src.discounts.components.VoucherTypes.3688224049":"","src.discounts.components.VoucherTypes.3289659291":"","src.discounts.components.VoucherTypes.3216816841":"","src.discounts.components.VoucherValue.1971417066":"","src.discounts.components.VoucherValue.1492866942":"","src.discounts.components.VoucherValue.4189095909":"","src.discounts.order":"","src.discounts.products":"","src.discounts.shipment":"","src.discounts.views.3707049729":"","src.discounts.views.2534378844":"","src.discounts.views.1827854264":"","src.discounts.views.376977560":"","src.discounts.views.1952217501":"","src.discounts.views.396618268":"","src.discounts.views.3395246518":"","src.discounts.views.506030254":"","src.discounts.views.1457489953":"","src.discounts.views.SaleList.2809303671":"","src.discounts.views.SaleList.2516361175":"","src.discounts.views.655651329":"","src.discounts.views.1162257691":"","src.discounts.views.2669520431":"","src.discounts.views.1402402714":"","src.discounts.views.2072403265":"","src.discounts.views.895379508":"","src.discounts.views.3261917848":"","src.discounts.views.VoucherList.367317371":"","src.discounts.views.VoucherList.1791926983":"","src.home.components.HomeActivityCard.draft":"","src.home.components.HomeActivityCard.paid":"","src.home.components.HomeActivityCard.placed":"","homeActivityCardHeader":"","homeActivityCardNoActivities":"","homeAnalyticsCardHeader":"","homeHeaderText":"","homeScreenHeader":"","homeHeaderTextCaption":"","homeNotificationTableNoOrders":"","homeNotificationTableOrders":"","homeNotificationsNoPayments":"","homeNotificationTablePayments":"","homeNotificationsTableNoProducts":"","homeNotificationTableProducts":"","homeProductsListCardHeader":"","homeProductListCardOrders":"","homeScreenDisclaimer":"","homeScreenDisclaimerText1":"","homeScreenDisclaimerText2":"","src.catalog":"","src.dashboard":"","src.description":"","src.translations.components.TranslationsProductsPage.3374163063":"","src.discounts":"","src.drafts":"","src.email":"","src.endDate":"","src.endHour":"","src.firstName":"","src.generalInformations":"","src.lastName":"","src.no":"","src.optionalField":"","src.products.components.ProductImagePage.1905082483":"","productVariantPriceOptionalPriceOverrideField":"","productVariantPriceOptionalCostPriceField":"","src.properties":"","src.savedChanges":"","src.somethingWentWrong":"","src.startDate":"","src.startHour":"","src.summary":"","src.uploadImage":"","src.yes":"","src.back":"","src.cancel":"取消","src.orders.views.OrderList.3528672691":"取消","src.confirm":"","src.delete":"","src.edit":"編輯","src.manage":"","src.remove":"刪除","src.save":"儲存","src.show":"","src.undo":"","src.attributes":"屬性","src.products.components.ProductAttributes.4153345096":"屬性","src.categories":"產品分類","src.translations.components.TranslationsEntitiesListPage.3583204912":"","src.collections":"","src.products.components.ProductCategoryAndCollectionsForm.222873645":"","src.products.components.ProductOrganization.222873645":"","src.translations.components.TranslationsEntitiesListPage.222873645":"","src.configuration":"配置","src.customers":"客戶","src.draftOrders":"","src.home":"首頁","src.navigation":"","src.orders":"訂單","src.pages":"","src.translations.components.TranslationsEntitiesListPage.3287512325":"","src.plugins":"","src.productTypes":"","src.translations.components.TranslationsEntitiesListPage.765385638":"","src.sales":"促銷","src.translations.components.TranslationsEntitiesListPage.487083593":"","src.shipping":"","src.siteSettings":"","src.staff":"","src.taxes":"","src.orders.components.OrderPayment.3955023266":"","productTypeTaxesInputLabel":"","productTypeTaxesHeader":"","src.taxes.components.CountryListPage.3955023266":"","src.translations":"","src.vouchers":"優惠券","src.translations.components.TranslationsEntitiesListPage.749185240":"","src.paid":"","src.partiallyPaid":"","src.partiallyRefunded":"","src.refunded":"","src.unpaid":"","src.cancelled":"","src.draft":"草稿","src.fulfilled":"","src.orders.views.OrderList.fulfilled":"","src.orders.components.OrderListFilter.1712863026":"","src.partiallyFulfilled":"","src.unfulfilled":"","src.orders.views.OrderList.unfulfilled":"","src.orders.components.OrderListFilter.1751787272":"","src.accommodation":"","src.admissionToCulturalEvents":"","src.admissionToEntertainmentEvents":"","src.admissionToSportingEvents":"","src.advertising":"","src.agriculturalSupplies":"","src.babyFoodstuffs":"","src.bikes":"","src.books":"","src.childrensClothing":"","src.domesticFuel":"","src.domesticServices":"","src.ebooks":"","src.foodstuffs":"","src.hotels":"","src.medical":"","src.newspapers":"","src.passengerTransport":"","src.pharmaceuticals":"","src.propertyRenovations":"","src.restaurants":"","src.socialHousing":"","src.standard":"","src.water":"","menuCreateDialogHeader":"","menuListPageAddMenu":"","menuCreateDialogMenuTitleLabel":"","menuListMenutitle":"","menuPropertiesMenuTitle":"","menuDetailsPageHelperText":"","menuItemDialogAddLink":"","menuItemDialogEditItem":"","menuItemDialogAddItem":"","menuItemDialogLinkLabel":"","menuItemDialogLinkPlaceholder":"","menuItemsPlaceholder":"","menuItemsHeader":"","menuItemsAddItem":"","menuListItems":"","menuListNoMenus":"","menuDetailsDeleteMenuHeader":"","menuListDeleteMenuHeader":"","menuDetailsDeleteMenuContent":"","menuListCreatedMenu":"","menuListDeletedMenu":"","menuListDeleteMenuContent":"","menuListDeleteMenusHeader":"","menuListDeleteMenusContent":"","src.orders.components.OrderAddressEditDialog.2935008093":"","src.orders.components.OrderAddressEditDialog.462765358":"","src.orders.components.OrderBulkCancelDialog.1528036340":"","src.orders.components.OrderBulkCancelDialog.276130122":"","src.orders.components.OrderBulkCancelDialog.187921539":"","src.orders.components.OrderCancelDialog.1854613983":"","src.orders.components.OrderDetailsPage.1854613983":"","src.orders.components.OrderDraftPage.1854613983":"","src.orders.components.OrderCancelDialog.3981375672":"","src.orders.components.OrderCancelDialog.944150063":"","src.orders.components.OrderCustomer.3426593715":"客戶","src.orders.components.OrderDraftList.3426593715":"","src.orders.components.OrderList.3426593715":"客戶","src.orders.components.OrderCustomer.2433460203":"","src.orders.components.OrderCustomer.4172383244":"","src.orders.components.OrderCustomer.2672803871":"","src.orders.components.OrderCustomer.1111991638":"","orderCustomerCustomerNotSet":"","orderCustomerShippingAddressNotSet":"","orderCustomerBillingAddressNotSet":"","src.orders.components.OrderCustomer.2758581442":"","src.orders.components.OrderCustomer.4282475982":"","src.orders.components.OrderCustomer.3912924864":"","src.orders.components.OrderCustomerEditDialog.1411666943":"","src.orders.components.OrderCustomerNote.1505053535":"","src.orders.components.OrderDraftCancelDialog.632633254":"","src.orders.components.OrderDraftCancelDialog.36681973":"","src.orders.components.OrderDraftDetails.2343989342":"","src.orders.components.OrderDraftDetails.2528459381":"","src.orders.components.OrderDraftDetailsProducts.1895667608":"","src.orders.components.OrderFulfillment.1895667608":"產品","src.orders.components.OrderUnfulfilledItems.1895667608":"產品","src.orders.components.OrderDraftDetailsProducts.2796503714":"庫存","src.orders.components.OrderFulfillment.2796503714":"庫存","src.orders.components.OrderFulfillmentDialog.2796503714":"庫存","src.orders.components.OrderUnfulfilledItems.2796503714":"庫存","src.orders.components.OrderDraftDetailsProducts.546865199":"","src.orders.components.OrderDraftDetailsSummary.781550514":"","src.orders.components.OrderPayment.781550514":"","src.orders.components.OrderDraftDetailsSummary.2429341469":"","src.orders.components.OrderDraftDetailsSummary.3594442178":"","src.orders.components.OrderDraftDetailsSummary.3202709354":"","src.orders.components.OrderDraftFinalizeDialog.2430492151":"","src.orders.components.OrderDraftFinalizeDialog.115822814":"","src.orders.components.OrderDraftFinalizeDialog.1297434244":"","src.orders.components.OrderDraftFinalizeDialog.2968256006":"","src.orders.components.OrderDraftFinalizeDialog.2824936338":"","src.orders.components.OrderDraftFinalizeDialog.845440998":"","src.orders.components.OrderDraftFinalizeDialog.678764806":"","src.orders.components.OrderDraftFinalizeDialog.2725265632":"","src.orders.components.OrderDraftPage.2725265632":"","src.orders.components.OrderDraftFinalizeDialog.1472924390":"","src.orders.components.OrderDraftFinalizeDialog.1489195029":"","src.orders.components.OrderDraftList.2177368638":"","src.orders.components.OrderDraftListPage.2826235371":"","src.orders.components.OrderListPage.2826235371":"","src.orders.components.OrderDraftListPage.551325728":"","src.orders.components.OrderDraftListPage.77765281":"","src.orders.components.OrderFulfillment.3494686506":"","src.orders.components.OrderFulfillment.662203348":"","src.orders.components.OrderFulfillment.3254150098":"","src.orders.components.OrderFulfillment.1119771899":"","src.orders.components.OrderFulfillmentCancelDialog.732594284":"","src.orders.components.OrderFulfillmentCancelDialog.2569854889":"","src.orders.components.OrderFulfillmentCancelDialog.3515223857":"","src.orders.components.OrderFulfillmentCancelDialog.675709443":"","src.orders.components.OrderFulfillmentDialog.3236546219":"","src.orders.components.OrderFulfillmentDialog.4046223826":"","src.orders.components.OrderFulfillmentDialog.693960049":"庫存單位","src.products.components.ProductVariants.693960049":"","src.orders.components.OrderFulfillmentDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3252172269":"","src.orders.components.OrderFulfillmentTrackingDialog.3680864271":"","src.orders.components.OrderHistory.950782935":"","src.orders.components.OrderHistory.3506022286":"","src.orders.components.OrderHistory.3095247195":"","src.orders.components.OrderHistory.4067959693":"","src.orders.components.OrderHistory.1867847329":"","src.orders.components.OrderHistory.3081292385":"","src.orders.components.OrderHistory.2369495522":"","src.orders.components.OrderHistory.2020753264":"","src.orders.components.OrderHistory.651019008":"","src.orders.components.OrderHistory.3453124210":"","src.orders.components.OrderHistory.1527620381":"","src.orders.components.OrderHistory.1521936480":"","src.orders.components.OrderHistory.2027649178":"","src.orders.components.OrderHistory.2304318421":"","src.orders.components.OrderHistory.2655541129":"","src.orders.components.OrderHistory.3328124376":"","src.orders.components.OrderHistory.4015160303":"","src.orders.components.OrderHistory.2770854455":"","src.orders.components.OrderHistory.4266665081":"","src.orders.components.OrderHistory.348557206":"","src.orders.components.OrderHistory.2566971846":"","src.orders.components.OrderHistory.184692906":"","src.orders.components.OrderHistory.1964864749":"","src.orders.components.OrderHistory.4265697648":"","src.orders.components.OrderHistory.1230178536":"","src.orders.components.OrderHistory.3990160018":"","src.orders.components.OrderList.2743232155":"付款","src.orders.components.OrderList.1198046928":"","src.orders.components.OrderListFilter.3053702458":"","src.orders.components.OrderListFilter.714411029":"","src.orders.components.OrderListFilter.2292505663":"","src.orders.components.OrderListFilter.3477667254":"","src.products.components.ProductListFilter.3477667254":"","src.orders.components.OrderListFilter.789263812":"","src.orders.components.OrderListFilter.2545228781":"","src.products.components.ProductListFilter.2545228781":"","src.orders.components.OrderListFilter.1438173764":"","src.products.components.ProductListFilter.1438173764":"","src.orders.components.OrderListFilter.210276526":"","src.orders.views.OrderList.partiallyFulfilled":"","src.orders.components.OrderListFilter.2415661583":"","src.orders.views.OrderList.readyToCapture":"","src.orders.components.OrderListFilter.2222765704":"","src.orders.components.OrderListPage.875489544":"","src.orders.components.OrderListPage.3524904717":"","src.orders.components.OrderListPage.355376157":"","src.orders.components.OrderMarkAsPaidDialog.4196844912":"","src.orders.components.OrderMarkAsPaidDialog.2823153104":"","src.orders.components.OrderPayment.2183023165":"","src.orders.components.OrderPayment.1817306106":"","orderPaymentVATDoesNotApply":"","orderPaymentShippingDoesNotApply":"","src.orders.components.OrderPayment.1325966144":"","src.productTypes.components.ProductTypeShipping.1325966144":"","src.shipping.components.ShippingZoneDetailsPage.1325966144":"","src.shipping.components.ShippingZonesListPage.1325966144":"","src.orders.components.OrderPayment.3768782744":"預先授權金額","src.orders.components.OrderPayment.2320183694":"","src.orders.components.OrderPayment.353147224":"","src.orders.components.OrderPayment.4211710217":"選取","src.orders.components.OrderPayment.2845258362":"退款","src.orders.components.OrderPayment.2444197639":"","src.orders.components.OrderPayment.3500506678":"","src.orders.components.OrderPaymentDialog.1466130374":"","src.orders.components.OrderPaymentDialog.250371749":"","src.orders.components.OrderPaymentDialog.75546233":"金額","src.orders.components.OrderPaymentVoidDialog.3089049828":"","src.orders.components.OrderPaymentVoidDialog.2217048637":"","src.orders.components.OrderProductAddDialog.1542417144":"","src.products.components.ProductListPage.1542417144":"","src.products.views.1542417144":"","src.orders.components.OrderProductAddDialog.2272209368":"","src.orders.components.OrderProductAddDialog.353369701":"","src.orders.components.OrderShippingMethodEditDialog.3369240294":"","src.orders.components.OrderUnfulfilledItems.2886647373":"","src.orders.components.OrderUnfulfilledItems.2095687440":"","src.orders.views.OrderDetails.1056718390":"","src.orders.views.OrderDetails.557535634":"","src.orders.views.OrderDetails.667274681":"","src.orders.views.OrderDetails.3991286734":"","src.orders.views.OrderDetails.4245651107":"","src.orders.views.OrderDetails.1096896329":"","src.orders.views.OrderDetails.1636370257":"","src.orders.views.OrderDetails.1852833563":"","src.orders.views.OrderDetails.2808777264":"","src.orders.views.OrderDetails.3280942553":"","src.orders.views.OrderDetails.3178394068":"","src.orders.views.OrderDetails.2714957902":"","src.orders.views.OrderDetails.3367579693":"","src.orders.views.OrderDetails.617145655":"","src.orders.views.OrderDetails.1708579411":"","src.orders.views.OrderDetails.1468420349":"","src.orders.views.OrderDetails.2205960666":"","src.orders.views.OrderDetails.1999598492":"","src.orders.views.OrderDetails.562214451":"","src.orders.views.OrderDetails.1632861387":"","src.orders.views.OrderDetails.487150696":"","src.orders.views.OrderDetails.927945225":"","src.orders.views.OrderDetails.4199953867":"","src.orders.views.OrderDetails.1475565380":"","src.orders.views.OrderDetails.553600482":"","src.orders.views.OrderDetails.1435191432":"","src.orders.views.OrderDetails.149745214":"","src.orders.views.OrderDraftList.1872939752":"","src.orders.views.OrderList.1872939752":"","src.orders.views.OrderDraftList.1648805446":"","src.orders.views.OrderDraftList.1161115149":"","src.orders.views.OrderDraftList.1389231130":"","src.orders.views.OrderList.dateFrom":"","src.orders.views.OrderList.dateIs":"","src.orders.views.OrderList.dateTo":"","src.orders.views.OrderList.1136302661":"","src.pages.components.PageDetailsPage.1068617485":"","src.pages.components.PageDetailsPage.1996767833":"","src.pages.components.PageInfo.1124600214":"","src.pages.components.PageList.1124600214":"","src.pages.components.PageInfo.1116746286":"","src.translations.components.TranslationsPagesPage.1116746286":"","src.pages.components.PageList.3478065224":"","src.pages.components.PageSlug.3478065224":"","src.productTypes.components.ProductTypeAttributes.3478065224":"","src.pages.components.PageList.3767550649":"","src.pages.components.PageList.2489163252":"","src.pages.components.PageListPage.3785394515":"","src.pages.views.3785394515":"","src.pages.components.PageSlug.1324178587":"","src.pages.components.PageSlug.4210828158":"","src.pages.views.2680158037":"","src.pages.views.1457312643":"","src.pages.views.3246254285":"","src.pages.views.754348000":"","src.pages.views.2543350562":"","src.pages.views.1080715663":"","src.pages.views.2321087286":"","src.pages.views.504298570":"","src.pages.views.158565417":"","src.pages.views.691980200":"","src.pages.views.2782958373":"","src.pages.views.3382708469":"","src.plugins.components.PluginInfo.3425535100":"","src.plugins.components.PluginsDetailsPage.3425535100":"","src.plugins.components.PluginInfo.1049131348":"","src.plugins.components.PluginInfo.4013064767":"","src.plugins.components.PluginsDetailsPage.3352026836":"","src.plugins.components.PluginsDetailsPage.2277745418":"","src.plugins.components.PluginsDetailsPage.1970881031":"","src.plugins.components.PluginSettings.1970881031":"","src.plugins.components.PluginsDetailsPage.4241018152":"","src.plugins.components.PluginsList.3247064221":"","src.staff.components.StaffList.3247064221":"","src.plugins.components.PluginsList.4120604650":"","src.plugins.components.PluginsList.666641390":"","src.plugins.views.100549097":"","src.products.components.ProductAttributes.1071548120":"","src.products.components.ProductAttributes.1207761269":"值","src.products.components.ProductCategoryAndCollectionsForm.3829816432":"","src.products.components.ProductCategoryAndCollectionsForm.1755013298":"","src.products.components.ProductOrganization.1755013298":"","src.taxes.components.CountryTaxesPage.1755013298":"","src.products.components.ProductCreatePage.2706108815":"","src.products.components.ProductUpdatePage.2706108815":"","src.products.components.ProductImageNavigation.3060635772":"","src.products.components.ProductImagePage.2546267317":"","src.products.components.ProductImagePage.3822382625":"","src.products.components.ProductImagePage.367472710":"","src.products.components.ProductImages.3240888698":"圖片","src.products.components.ProductVariantImages.3240888698":"圖片","src.products.components.ProductListFilter.3645081351":"","src.products.components.ProductListFilter.2157131639":"","src.products.components.ProductVariants.2157131639":"","src.products.views.ProductList.available":"","src.products.components.ProductListFilter.1640493122":"","src.products.components.ProductListFilter.3841616483":"","src.products.components.ProductVariantStock.3841616483":"","src.products.components.ProductListFilter.2844426531":"","src.products.components.ProductListFilter.821159718":"","src.products.components.ProductListFilter.1421689426":"","src.products.components.ProductListFilter.3550330425":"","src.products.components.ProductOrganization.2364184433":"","src.products.components.ProductOrganization.2754779425":"","src.productTypes.components.ProductTypeList.2754779425":"","src.products.components.ProductOrganization.150865454":"","src.products.components.ProductOrganization.2805838453":"","src.products.components.ProductPricing.3015886868":"","productStockHeader":"","prodictStockInventoryLabel":"","src.products.components.ProductVariantStock.3490038570":"","src.products.components.ProductStock.2585918415":"","src.products.components.ProductVariantStock.2585918415":"","src.products.components.ProductStock.1680952454":"","src.products.components.ProductVariantStock.1680952454":"","src.products.components.ProductVariantCreatePage.3726089650":"","src.products.components.ProductVariantDeleteDialog.3726089650":"","src.products.components.ProductVariantCreatePage.2853608829":"","src.products.components.ProductVariantDeleteDialog.2297471173":"","src.products.views.ProductUpdate.2297471173":"","src.productTypes.components.ProductTypeDeleteDialog.2297471173":"","shippingZoneDetailsDialogsDeleteShippingMethod":"","shippingZoneDetailsDialogsDeleteShippingZone":"","src.products.components.ProductVariantDeleteDialog.1583616500":"","src.products.components.ProductVariantImages.989683980":"","src.products.components.ProductVariantImages.3449133076":"","src.products.components.ProductVariantImageSelectDialog.3196043669":"","src.products.components.ProductVariantNavigation.2153006789":"","src.products.components.ProductVariants.2153006789":"","src.products.components.ProductVariantNavigation.2845381934":"新增產品變種","src.products.components.ProductVariantNavigation.3185562157":"","src.products.components.ProductVariantPrice.2238565650":"","src.products.components.ProductVariantPrice.1416480328":"","src.products.components.ProductVariants.1703363919":"","src.products.components.ProductVariants.3989383405":"","src.products.views.3989383405":"","src.products.components.ProductVariants.277989856":"","src.products.components.ProductVariants.1033175132":"","src.products.components.ProductVariants.3156701241":"","src.products.views.2899821092":"","src.products.views.1591632382":"","src.products.views.1731766393":"","src.products.views.2880386427":"","src.products.views.ProductList.outOfStock":"","src.products.views.ProductList.priceFrom":"","src.products.views.ProductList.priceIs":"","src.products.views.ProductList.priceTo":"","src.products.views.ProductList.400629795":"","src.products.views.ProductList.2742463171":"","src.products.views.ProductList.2946646245":"","src.products.views.ProductList.740606822":"","src.products.views.ProductList.3362608461":"","src.products.views.ProductList.193914731":"","src.products.views.ProductUpdate.4108890645":"","src.products.views.ProductUpdate.879305849":"","src.products.views.ProductUpdate.1454532689":"","src.products.views.ProductUpdate.2446451819":"","src.products.views.2279302139":"","src.products.views.2362587265":"","src.productTypes.components.AssignAttributeDialog.3922579741":"","src.productTypes.components.AssignAttributeDialog.902296540":"","src.productTypes.components.AssignAttributeDialog.524117994":"","src.productTypes.components.AssignAttributeDialog.2173976534":"","src.productTypes.components.ProductTypeAttributeEditDialog.1228425832":"","src.productTypes.components.ProductTypeAttributes.1228425832":"","src.productTypes.components.ProductTypeAttributeEditDialog.335542212":"","src.productTypes.components.ProductTypeAttributes.3559259966":"","src.productTypes.components.ProductTypeAttributes.888493112":"","src.productTypes.components.ProductTypeAttributes.1656462109":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.404238501":"","src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.766918870":"","src.productTypes.components.ProductTypeBulkAttributeUnassignDialog.2500510112":"","src.productTypes.components.ProductTypeDeleteDialog.924066985":"","src.productTypes.components.ProductTypeDetails.1007996279":"","src.productTypes.components.ProductTypeDetailsPage.1217376589":"","src.productTypes.components.ProductTypeList.2253986440":"","src.productTypes.components.ProductTypeList.1240292548":"","src.productTypes.components.ProductTypeList.1211157042":"","src.productTypes.components.ProductTypeList.966610541":"","src.productTypes.components.ProductTypeList.881286562":"","src.productTypes.components.ProductTypeList.1126553969":"","src.productTypes.components.ProductTypeListPage.3479705616":"","src.productTypes.components.ProductTypeListPage.1776073799":"","src.productTypes.components.ProductTypeListPage.3420445375":"","src.translations.components.TranslationsEntitiesListPage.3420445375":"","src.productTypes.components.ProductTypeShipping.2143413921":"","src.productTypes.components.ProductTypeShipping.746695941":"","src.productTypes.components.ProductTypeShipping.2927891783":"","src.productTypes.views.3822478981":"","productTypeCreateHeader":"","productTypeCreatePageHeader":"","src.productTypes.views.ProductTypeList.4080551769":"","src.productTypes.views.ProductTypeList.2294091098":"","src.productTypes.views.ProductTypeUpdate.3512959355":"","src.shipping.components.ShippingWeightUnitForm.549146363":"","src.shipping.components.ShippingWeightUnitForm.2863708228":"","src.shipping.components.ShippingZoneCountriesAssignDialog.2404264158":"","src.shipping.components.ShippingZoneCountriesAssignDialog.3510295703":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1440682557":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1003092716":"","src.shipping.components.ShippingZoneCountriesAssignDialog.1818089229":"","src.shipping.components.ShippingZoneCreatePage.4049462680":"","src.shipping.components.ShippingZoneCreatePage.4270729636":"","src.shipping.components.ShippingZoneDetailsPage.4270729636":"","src.shipping.components.ShippingZoneCreatePage.2364051773":"","src.shipping.components.ShippingZoneDetailsPage.2364051773":"","src.shipping.components.ShippingZoneInfo.1109610983":"","src.shipping.components.ShippingZoneRateDialog.2892088870":"","src.shipping.components.ShippingZoneRateDialog.3934114933":"","src.shipping.components.ShippingZoneRateDialog.1397795758":"","src.shipping.components.ShippingZoneRateDialog.4152709923":"","src.shipping.components.ShippingZoneRateDialog.1486599614":"","src.shipping.components.ShippingZoneRateDialog.382595300":"","src.shipping.components.ShippingZoneRateDialog.2533614652":"","src.shipping.components.ShippingZoneRateDialog.2324036635":"","src.shipping.components.ShippingZoneRateDialog.882649212":"","src.shipping.components.ShippingZoneRateDialog.4226393146":"","src.shipping.components.ShippingZoneRateDialog.1388947267":"","src.shipping.components.ShippingZoneRateDialog.1337705349":"","src.shipping.components.ShippingZoneRateDialog.1878009504":"","src.shipping.components.ShippingZoneRateDialog.3463567334":"","src.shipping.components.ShippingZoneRateDialog.3659741519":"","src.shipping.components.ShippingZoneRateDialog.3213611593":"","src.shipping.components.ShippingZoneRateDialog.2215090771":"","src.shipping.components.ShippingZoneRateDialog.1403365734":"","src.shipping.components.ShippingZoneRateDialog.16061680":"","src.shipping.components.ShippingZoneRates.16061680":"","src.shipping.components.ShippingZoneRateDialog.1542600502":"","src.shipping.components.ShippingZoneRates.2542194565":"","src.shipping.components.ShippingZoneRates.383202459":"","src.shipping.components.ShippingZoneRates.1923873558":"","src.shipping.components.ShippingZoneRates.2600677138":"","src.shipping.components.ShippingZoneRates.1961493435":"","src.shipping.components.ShippingZonesList.2942726079":"","src.shipping.components.ShippingZonesList.2673544109":"","src.shipping.components.ShippingZonesList.655374584":"","src.shipping.views.ShippingZoneDetails.1502359905":"","src.shipping.views.ShippingZoneDetails.1010705153":"","src.shipping.views.1010705153":"","src.shipping.views.ShippingZoneDetails.1947090060":"","src.shipping.views.ShippingZoneDetails.131963671":"","src.shipping.views.1005071028":"","src.shipping.views.1711385401":"","src.shipping.views.3698270769":"","src.siteSettings.components.SiteSettingsAddress.1150975268":"","src.siteSettings.components.SiteSettingsDetails.2286355060":"","src.siteSettings.components.SiteSettingsDetails.1008586926":"","src.siteSettings.components.SiteSettingsDetails.3808773492":"","src.siteSettings.components.SiteSettingsDetails.1987367127":"","src.siteSettings.components.SiteSettingsDetails.529433178":"","src.siteSettings.components.SiteSettingsKeyDialog.1238948746":"","src.siteSettings.components.SiteSettingsKeyDialog.3039841202":"","src.siteSettings.components.SiteSettingsKeyDialog.2446088470":"密鑰","src.siteSettings.components.SiteSettingsKeys.2446088470":"密鑰","src.siteSettings.components.SiteSettingsKeyDialog.50561933":"","src.siteSettings.components.SiteSettingsKeys.226491688":"","src.siteSettings.components.SiteSettingsKeys.1114030884":"","src.siteSettings.components.SiteSettingsKeys.1270286507":"","src.siteSettings.components.SiteSettingsKeys.3981699144":"","src.siteSettings.components.SiteSettingsPage.3817101936":"","src.siteSettings.components.SiteSettingsPage.2824577864":"","src.siteSettings.views.2276194921":"","src.staff.components.StaffAddMemberDialog.1481503299":"","src.staff.components.StaffAddMemberDialog.2690176844":"","src.staff.components.StaffPermissions.2690176844":"權限","src.staff.components.StaffAddMemberDialog.351138560":"","src.staff.components.StaffAddMemberDialog.1570990296":"","src.staff.components.StaffAddMemberDialog.449055697":"","src.staff.components.StaffList.1789607185":"","src.staff.components.StaffList.1004218338":"","src.staff.components.StaffList.480166346":"","src.staff.components.StaffListPage.797461521":"","src.staff.components.StaffListPage.2852350932":"","src.staff.components.StaffListPage.61043583":"","src.staff.components.StaffPermissions.3639008725":"","src.staff.components.StaffPermissions.1848599267":"","src.staff.components.StaffProperties.2650522200":"","src.staff.components.StaffProperties.2771097267":"","src.staff.components.StaffProperties.457748370":"","src.staff.components.StaffStatus.2183517419":"","src.staff.components.StaffStatus.2683780981":"","src.staff.components.StaffStatus.881953347":"","src.staff.views.1308770978":"","src.staff.views.8878988":"","src.staff.views.701332676":"","src.staff.views.3945766678":"","src.taxes.components.CountryList.4039455144":"","src.taxes.components.CountryList.577035076":"","src.taxes.components.CountryList.3154586635":"","src.taxes.components.CountryList.110033143":"","src.taxes.components.CountryTaxesPage.2737618795":"","src.taxes.components.CountryTaxesPage.2022558114":"","src.taxes.components.CountryTaxesPage.3066312070":"","src.taxes.components.TaxConfiguration.142803418":"","src.taxes.components.TaxConfiguration.2102582640":"","src.taxes.components.TaxConfiguration.2654711891":"","src.taxes.components.TaxConfiguration.3375540052":"","src.translations.components.TranslationFields.1348655672":"","src.translations.components.TranslationFields.2481190613":"","src.translations.components.TranslationFields.282734765":"","src.translations.components.TranslationFields.3793796047":"","src.translations.components.TranslationFields.363646127":"","src.translations.components.TranslationsCategoriesPage.2043581404":"","src.translations.components.TranslationsCategoriesPage.2496919463":"","src.translations.components.TranslationsCollectionsPage.2496919463":"","src.translations.components.TranslationsPagesPage.2496919463":"","src.translations.components.TranslationsProductsPage.2496919463":"","src.translations.components.TranslationsCategoriesPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.1406947243":"","src.translations.components.TranslationsPagesPage.1406947243":"","src.translations.components.TranslationsProductsPage.1406947243":"","src.translations.components.TranslationsCollectionsPage.3055443821":"","src.translations.components.TranslationsCollectionsPage.2759199473":"","src.translations.components.TranslationsEntitiesList.49462429":"","src.translations.components.TranslationsEntitiesList.1136143456":"","src.translations.components.TranslationsEntitiesList.4176487406":"","src.translations.components.TranslationsEntitiesListPage.2105464697":"","src.translations.components.TranslationsEntitiesListPage.2559018090":"","src.translations.components.TranslationsEntitiesListPage.1163855804":"","src.translations.components.TranslationsLanguageListPage.1163855804":"","src.translations.components.TranslationsEntitiesListPage.2460580333":"","src.translations.components.TranslationsLanguageList.604081953":"","src.translations.components.TranslationsLanguageList.2966651157":"","src.translations.components.TranslationsPagesPage.2806429775":"","src.translations.components.TranslationsPagesPage.432157284":"","src.translations.components.TranslationsProductsPage.2713974050":"","src.translations.components.TranslationsProductTypesPage.1281101905":"","src.translations.components.TranslationsProductTypesPage.2510190956":"","src.translations.components.TranslationsProductTypesPage.2642976392":"","src.translations.components.TranslationsProductTypesPage.1567737068":"","src.translations.components.TranslationsProductTypesPage.3538502409":"","src.translations.components.TranslationsSalesPage.3731955064":"","src.translations.components.TranslationsSalesPage.898281424":"","src.translations.components.TranslationsVouchersPage.2447510181":"","src.translations.components.TranslationsVouchersPage.2599922713":""} \ No newline at end of file diff --git a/locale/zh-Hant.po b/locale/zh-Hant.po index 3e1b45380..f4249a8c9 100644 --- a/locale/zh-Hant.po +++ b/locale/zh-Hant.po @@ -3,7 +3,7 @@ # msgid "" msgstr "" -"POT-Creation-Date: 2019-09-06T13:56:36.897Z\n" +"POT-Creation-Date: 2019-09-16T15:25:09.340Z\n" "Last-Translator: Patryk Zawadzki , 2019\n" "Language-Team: Chinese Traditional (https://www.transifex.com/mirumee/teams/34782/zh-Hant/)\n" "MIME-Version: 1.0\n" @@ -141,22 +141,6 @@ msgctxt "create new menu item, header" msgid "Add Item" msgstr "" -#. [menuCreateDialogHeader] - dialog header -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json -msgctxt "dialog header" -msgid "Add Menu" -msgstr "" - -#. [menuListPageAddMenu] - button -#. defaultMessage is: -#. Add Menu -#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json -msgctxt "button" -msgid "Add Menu" -msgstr "" - #. [src.siteSettings.components.SiteSettingsKeyDialog.1238948746] - dialog #. header #. defaultMessage is: @@ -166,14 +150,6 @@ msgctxt "dialog header" msgid "Add New Authorization Key" msgstr "" -#. [src.pages.components.PageDetailsPage.755314116] - page header -#. defaultMessage is: -#. Add Page -#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json -msgctxt "page header" -msgid "Add Page" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.2892088870] - dialog header #. defaultMessage is: #. Add Price Rate @@ -182,38 +158,6 @@ msgctxt "dialog header" msgid "Add Price Rate" msgstr "" -#. [src.orders.components.OrderProductAddDialog.2775402904] - dialog header -#. defaultMessage is: -#. Add Product -#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json -msgctxt "dialog header" -msgid "Add Product" -msgstr "" - -#. [src.products.components.ProductListPage.2775402904] - button -#. defaultMessage is: -#. Add Product -#: build/locale/src/products/components/ProductListPage/ProductListPage.json -msgctxt "button" -msgid "Add Product" -msgstr "" - -#. [src.discounts.components.SaleListPage.1742771332] - button -#. defaultMessage is: -#. Add Sale -#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json -msgctxt "button" -msgid "Add Sale" -msgstr "" - -#. [src.staff.components.StaffAddMemberDialog.3490059488] - dialog header -#. defaultMessage is: -#. Add Staff Member -#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json -msgctxt "dialog header" -msgid "Add Staff Member" -msgstr "" - #. [src.attributes.components.AttributeValueEditDialog.1841790893] - add #. attribute value #. defaultMessage is: @@ -223,14 +167,6 @@ msgctxt "add attribute value" msgid "Add Value" msgstr "" -#. [src.products.views.2178905289] - header -#. defaultMessage is: -#. Add Variant -#: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "header" -msgid "Add Variant" -msgstr "" - #. [src.shipping.components.ShippingZoneRateDialog.1397795758] - add weight #. based shipping method, dialog header #. defaultMessage is: @@ -248,14 +184,6 @@ msgctxt "button" msgid "Add address" msgstr "" -#. [src.attributes.components.AttributeListPage.350498821] - button -#. defaultMessage is: -#. Add attribute -#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json -msgctxt "button" -msgid "Add attribute" -msgstr "新增屬性" - #. [src.siteSettings.components.SiteSettingsKeyDialog.50561933] - button #. defaultMessage is: #. Add authentication @@ -264,14 +192,6 @@ msgctxt "button" msgid "Add authentication" msgstr "" -#. [src.categories.components.CategoryListPage.228151782] - button -#. defaultMessage is: -#. Add category -#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json -msgctxt "button" -msgid "Add category" -msgstr "新增分類" - #. [src.collections.components.CollectionCreatePage.3958681866] - page header #. defaultMessage is: #. Add collection @@ -280,14 +200,6 @@ msgctxt "page header" msgid "Add collection" msgstr "" -#. [src.collections.components.CollectionListPage.3958681866] - button -#. defaultMessage is: -#. Add collection -#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json -msgctxt "button" -msgid "Add collection" -msgstr "" - #. [src.customers.components.CustomerCreatePage.1934221653] - page header #. defaultMessage is: #. Add customer @@ -320,14 +232,6 @@ msgctxt "button" msgid "Add key" msgstr "" -#. [menuItemsAddItem] - add new menu item -#. defaultMessage is: -#. Add new item -#: build/locale/src/navigation/components/MenuItems/MenuItems.json -msgctxt "add new menu item" -msgid "Add new item" -msgstr "" - #. [menuItemsPlaceholder] #. defaultMessage is: #. Add new menu item to begin creating menu @@ -362,14 +266,6 @@ msgctxt "button" msgid "Add or Edit Link" msgstr "" -#. [src.pages.components.PageListPage.1767905232] - button -#. defaultMessage is: -#. Add page -#: build/locale/src/pages/components/PageListPage/PageListPage.json -msgctxt "button" -msgid "Add page" -msgstr "" - #. [src.categories.components.CategoryProducts.3554578821] - button #. defaultMessage is: #. Add product @@ -378,14 +274,6 @@ msgctxt "button" msgid "Add product" msgstr "新增產品" -#. [src.productTypes.components.ProductTypeListPage.889729490] - button -#. defaultMessage is: -#. Add product type -#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json -msgctxt "button" -msgid "Add product type" -msgstr "新增產品類別" - #. [src.orders.components.OrderDraftDetails.2528459381] - button #. defaultMessage is: #. Add products @@ -394,14 +282,6 @@ msgctxt "button" msgid "Add products" msgstr "" -#. [src.shipping.components.ShippingZoneRates.352297149] - button -#. defaultMessage is: -#. Add rate -#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json -msgctxt "button" -msgid "Add rate" -msgstr "" - #. [src.categories.components.CategoryCreatePage.2563994280] #. defaultMessage is: #. Add search engine title and description to make this category easier to @@ -463,30 +343,6 @@ msgctxt "button" msgid "Add shipping carrier" msgstr "" -#. [src.shipping.components.ShippingZonesList.2474410767] - button -#. defaultMessage is: -#. Add shipping zone -#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json -msgctxt "button" -msgid "Add shipping zone" -msgstr "" - -#. [src.staff.components.StaffListPage.802625341] - button -#. defaultMessage is: -#. Add staff member -#: build/locale/src/staff/components/StaffListPage/StaffListPage.json -msgctxt "button" -msgid "Add staff member" -msgstr "新增員工" - -#. [src.categories.components.CategoryList.435697837] - button -#. defaultMessage is: -#. Add subcategory -#: build/locale/src/categories/components/CategoryList/CategoryList.json -msgctxt "button" -msgid "Add subcategory" -msgstr "" - #. [src.attributes.components.AttributeProperties.673770329] - add attribute #. as column in product list table #. defaultMessage is: @@ -514,35 +370,14 @@ msgctxt "dialog header" msgid "Add tracking code" msgstr "" -#. [src.attributes.components.AttributeValues.254756045] - add attribute value -#. button -#. defaultMessage is: -#. Add value -#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json -msgctxt "add attribute value button" -msgid "Add value" -msgstr "" - #. [src.products.components.ProductVariantNavigation.2845381934] - button #. defaultMessage is: #. Add variant -#. [src.products.components.ProductVariants.2845381934] - button -#. defaultMessage is: -#. Add variant #: build/locale/src/products/components/ProductVariantNavigation/ProductVariantNavigation.json -#: build/locale/src/products/components/ProductVariants/ProductVariants.json msgctxt "button" msgid "Add variant" msgstr "新增產品變種" -#. [src.discounts.components.VoucherListPage.1536809153] - button -#. defaultMessage is: -#. Add voucher -#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json -msgctxt "button" -msgid "Add voucher" -msgstr "" - #. [src.attributes.views.AttributeDetails.634268988] - added new attribute #. value #. defaultMessage is: @@ -600,14 +435,6 @@ msgctxt "description" msgid "Address line 2" msgstr "" -#. [src.customers.components.CustomerAddress.1320082647] - addres card header -#. defaultMessage is: -#. Address {addressNumber} -#: build/locale/src/customers/components/CustomerAddress/CustomerAddress.json -msgctxt "addres card header" -msgid "Address {addressNumber}" -msgstr "" - #. [src.attributes.components.AttributeValues.1565474525] - attribute values #. list: slug column header #. defaultMessage is: @@ -657,6 +484,46 @@ msgctxt "tax rate" msgid "Agricultural supplies" msgstr "" +#. [src.attributes.components.AttributeListPage.2417065806] - tab name +#. defaultMessage is: +#. All Attributes +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "tab name" +msgid "All Attributes" +msgstr "" + +#. [src.categories.components.CategoryListPage.4294878092] - tab name +#. defaultMessage is: +#. All Categories +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "tab name" +msgid "All Categories" +msgstr "" + +#. [src.collections.components.CollectionListPage.1631917001] - tab name +#. defaultMessage is: +#. All Collections +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "tab name" +msgid "All Collections" +msgstr "" + +#. [src.customers.components.CustomerListPage.477293306] - tab name +#. defaultMessage is: +#. All Customers +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "tab name" +msgid "All Customers" +msgstr "" + +#. [src.orders.components.OrderDraftListPage.551325728] - tab name +#. defaultMessage is: +#. All Drafts +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "tab name" +msgid "All Drafts" +msgstr "" + #. [src.orders.components.OrderListPage.875489544] - tab name #. defaultMessage is: #. All Orders @@ -674,22 +541,54 @@ msgctxt "section header" msgid "All Photos" msgstr "" -#. [src.products.components.ProductListPage.821159718] - tab name +#. [src.productTypes.components.ProductTypeListPage.1776073799] - tab name +#. defaultMessage is: +#. All Product Types +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "tab name" +msgid "All Product Types" +msgstr "" + +#. [src.products.components.ProductListFilter.821159718] - tab name #. defaultMessage is: #. All Products -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "tab name" msgid "All Products" msgstr "" -#. [src.categories.components.CategoryList.3229914152] - section header +#. [src.discounts.components.SaleListPage.3907768880] - tab name +#. defaultMessage is: +#. All Sales +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "tab name" +msgid "All Sales" +msgstr "" + +#. [src.staff.components.StaffListPage.2852350932] - tab name +#. defaultMessage is: +#. All Staff Members +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "tab name" +msgid "All Staff Members" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.3229914152] - section header #. defaultMessage is: #. All Subcategories -#: build/locale/src/categories/components/CategoryList/CategoryList.json +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json msgctxt "section header" msgid "All Subcategories" msgstr "" +#. [src.discounts.components.VoucherListPage.1112241061] - tab name +#. defaultMessage is: +#. All Vouchers +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "tab name" +msgid "All Vouchers" +msgstr "" + #. [src.taxes.components.TaxConfiguration.142803418] #. defaultMessage is: #. All products prices are entered with tax included @@ -797,6 +696,14 @@ msgctxt "description" msgid "Are you sure you want to delete collection's image?" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.36681973] +#. defaultMessage is: +#. Are you sure you want to delete draft #{number}? +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "description" +msgid "Are you sure you want to delete draft #{number}?" +msgstr "" + #. [menuDetailsDeleteMenuContent] #. defaultMessage is: #. Are you sure you want to delete menu {menuName}? @@ -813,6 +720,14 @@ msgctxt "description" msgid "Are you sure you want to delete this address from users address book?" msgstr "" +#. [src.products.views.2880386427] +#. defaultMessage is: +#. Are you sure you want to delete this image? +#: build/locale/src/products/views/ProductImage.json +msgctxt "description" +msgid "Are you sure you want to delete this image?" +msgstr "" + #. [src.attributes.components.AttributeDeleteDialog.3738429348] - dialog #. content #. defaultMessage is: @@ -863,12 +778,7 @@ msgstr "" #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this attribute} #. other{{displayQuantity} categories}}? -#. [src.categories.views.844574071] -#. defaultMessage is: -#. Are you sure you want to delete {counter,plural,one{this attribute} -#. other{{displayQuantity} categories}}? #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this attribute} " @@ -886,22 +796,33 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.2497542455] +#. [src.categories.views.CategoryList.2144707585] +#. defaultMessage is: +#. Are you sure you want to delete {counter,plural,one{this category} +#. other{{displayQuantity} categories}}? +#: build/locale/src/categories/views/CategoryList/CategoryList.json +msgctxt "description" +msgid "" +"Are you sure you want to delete {counter,plural,one{this category} " +"other{{displayQuantity} categories}}?" +msgstr "" + +#. [src.collections.views.CollectionList.2497542455] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this collection} " "other{{displayQuantity} collections}}?" msgstr "" -#. [src.customers.views.409347866] +#. [src.customers.views.CustomerList.409347866] #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this customer} #. other{{displayQuantity} customers}}? -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "description" msgid "" "Are you sure you want to delete {counter,plural,one{this customer} " @@ -919,11 +840,11 @@ msgid "" "other{{displayQuantity} menus}}?" msgstr "" -#. [src.orders.views.1389231130] - dialog content +#. [src.orders.views.OrderDraftList.1389231130] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this order draft} #. other{{displayQuantity} orderDrafts}}? -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this order draft} " @@ -941,11 +862,11 @@ msgid "" "other{{displayQuantity} pages}}?" msgstr "" -#. [src.productTypes.views.2294091098] - dialog content +#. [src.productTypes.views.ProductTypeList.2294091098] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this product type} #. other{{displayQuantity} product types}}? -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this product type} " @@ -963,11 +884,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.discounts.views.2516361175] - dialog content +#. [src.discounts.views.SaleList.2516361175] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this sale} #. other{{displayQuantity} sales}}? -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this sale} " @@ -996,17 +917,33 @@ msgid "" "other{{displayQuantity} variants}}?" msgstr "" -#. [src.discounts.views.1791926983] - dialog content +#. [src.discounts.views.VoucherList.1791926983] - dialog content #. defaultMessage is: #. Are you sure you want to delete {counter,plural,one{this voucher} #. other{{displayQuantity} vouchers}}? -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog content" msgid "" "Are you sure you want to delete {counter,plural,one{this voucher} " "other{{displayQuantity} vouchers}}?" msgstr "" +#. [src.shipping.views.ShippingZoneDetails.131963671] - unassign country +#. defaultMessage is: +#. Are you sure you want to delete {countryName} from this shipping zone? +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country" +msgid "Are you sure you want to delete {countryName} from this shipping zone?" +msgstr "" + +#. [src.staff.views.8878988] +#. defaultMessage is: +#. Are you sure you want to delete {email} from staff members? +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "description" +msgid "Are you sure you want to delete {email} from staff members?" +msgstr "" + #. [src.customers.views.1927691511] - delete customer, dialog content #. defaultMessage is: #. Are you sure you want to delete {email}? @@ -1121,11 +1058,11 @@ msgctxt "description" msgid "Are you sure you want to mark this order as paid?" msgstr "" -#. [src.collections.views.1348793822] +#. [src.collections.views.CollectionList.1348793822] #. defaultMessage is: #. Are you sure you want to publish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to publish {counter,plural,one{this collection} " @@ -1154,30 +1091,6 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.orders.components.OrderDraftCancelDialog.3199827590] -#. defaultMessage is: -#. Are you sure you want to remove draft #{number}? -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "description" -msgid "Are you sure you want to remove draft #{number}?" -msgstr "" - -#. [src.products.views.672103788] -#. defaultMessage is: -#. Are you sure you want to remove this image? -#: build/locale/src/products/views/ProductImage.json -msgctxt "description" -msgid "Are you sure you want to remove this image?" -msgstr "" - -#. [src.shipping.views.ShippingZoneDetails.1790261672] - unassign country -#. defaultMessage is: -#. Are you sure you want to remove {countryName} from this shipping zone? -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country" -msgid "Are you sure you want to remove {countryName} from this shipping zone?" -msgstr "" - #. [src.staff.views.3945766678] #. defaultMessage is: #. Are you sure you want to remove {email} avatar? @@ -1186,14 +1099,6 @@ msgctxt "description" msgid "Are you sure you want to remove {email} avatar?" msgstr "" -#. [src.staff.views.2728048444] -#. defaultMessage is: -#. Are you sure you want to remove {email} from staff members? -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "description" -msgid "Are you sure you want to remove {email} from staff members?" -msgstr "" - #. [src.productTypes.components.ProductTypeAttributeUnassignDialog.722498450] #. defaultMessage is: #. Are you sure you want to unassign {attributeName} from {productTypeName}? @@ -1274,11 +1179,11 @@ msgid "" "other{{displayQuantity} products}}?" msgstr "" -#. [src.collections.views.3944356444] +#. [src.collections.views.CollectionList.3944356444] #. defaultMessage is: #. Are you sure you want to unpublish {counter,plural,one{this collection} #. other{{displayQuantity} collections}}? -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "description" msgid "" "Are you sure you want to unpublish {counter,plural,one{this collection} " @@ -1439,6 +1344,15 @@ msgctxt "button" msgid "Assign products" msgstr "" +#. [src.attributes.components.AttributeValues.351422234] - assign attribute +#. value button +#. defaultMessage is: +#. Assign value +#: build/locale/src/attributes/components/AttributeValues/AttributeValues.json +msgctxt "assign attribute value button" +msgid "Assign value" +msgstr "" + #. [src.attributes.components.AttributeDetails.3605174225] - attribute's slug #. short code label #. defaultMessage is: @@ -1517,6 +1431,14 @@ msgctxt "product attributes, section header" msgid "Attributes" msgstr "屬性" +#. [src.configuration.2326418019] +#. defaultMessage is: +#. Attributes and Product Typess +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Attributes and Product Typess" +msgstr "" + #. [src.attributes.views.AttributeList.3218248395] - deleted multiple #. attributes #. defaultMessage is: @@ -2300,6 +2222,22 @@ msgctxt "description" msgid "Country area" msgstr "" +#. [menuCreateDialogHeader] - dialog header +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuCreateDialog/MenuCreateDialog.json +msgctxt "dialog header" +msgid "Create Menu" +msgstr "" + +#. [menuListPageAddMenu] - button +#. defaultMessage is: +#. Create Menu +#: build/locale/src/navigation/components/MenuListPage/MenuListPage.json +msgctxt "button" +msgid "Create Menu" +msgstr "" + #. [src.attributes.components.AttributePage.2855501559] - page title #. defaultMessage is: #. Create New Attribute @@ -2324,6 +2262,30 @@ msgctxt "header" msgid "Create New Shipping Zone" msgstr "" +#. [src.pages.components.PageDetailsPage.1068617485] - page header +#. defaultMessage is: +#. Create Page +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page header" +msgid "Create Page" +msgstr "" + +#. [src.orders.components.OrderProductAddDialog.1542417144] - dialog header +#. defaultMessage is: +#. Create Product +#: build/locale/src/orders/components/OrderProductAddDialog/OrderProductAddDialog.json +msgctxt "dialog header" +msgid "Create Product" +msgstr "" + +#. [src.products.components.ProductListPage.1542417144] - button +#. defaultMessage is: +#. Create Product +#: build/locale/src/products/components/ProductListPage/ProductListPage.json +msgctxt "button" +msgid "Create Product" +msgstr "" + #. [src.products.views.1542417144] - window title #. defaultMessage is: #. Create Product @@ -2356,11 +2318,19 @@ msgctxt "page header" msgid "Create Sale" msgstr "" -#. [src.products.views.2362587265] - window title +#. [src.discounts.components.SaleListPage.3866518732] - button +#. defaultMessage is: +#. Create Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +msgctxt "button" +msgid "Create Sale" +msgstr "" + +#. [src.products.views.2362587265] - header #. defaultMessage is: #. Create Variant #: build/locale/src/products/views/ProductVariantCreate.json -msgctxt "window title" +msgctxt "header" msgid "Create Variant" msgstr "" @@ -2372,6 +2342,22 @@ msgctxt "page header" msgid "Create Voucher" msgstr "" +#. [src.attributes.components.AttributeListPage.3824684885] - button +#. defaultMessage is: +#. Create attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "button" +msgid "Create attribute" +msgstr "" + +#. [src.categories.components.CategoryListPage.1140231710] - button +#. defaultMessage is: +#. Create category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +msgctxt "button" +msgid "Create category" +msgstr "" + #. [src.categories.views.1140231710] - window title #. defaultMessage is: #. Create category @@ -2380,6 +2366,14 @@ msgctxt "window title" msgid "Create category" msgstr "" +#. [src.collections.components.CollectionListPage.686910896] - button +#. defaultMessage is: +#. Create collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json +msgctxt "button" +msgid "Create collection" +msgstr "" + #. [src.collections.views.686910896] - window title #. defaultMessage is: #. Create collection @@ -2396,6 +2390,14 @@ msgctxt "window title" msgid "Create customer" msgstr "" +#. [menuItemsAddItem] - add new menu item +#. defaultMessage is: +#. Create new item +#: build/locale/src/navigation/components/MenuItems/MenuItems.json +msgctxt "add new menu item" +msgid "Create new item" +msgstr "" + #. [src.orders.components.OrderDraftListPage.2826235371] - button #. defaultMessage is: #. Create order @@ -2408,6 +2410,14 @@ msgctxt "button" msgid "Create order" msgstr "" +#. [src.pages.components.PageListPage.3785394515] - button +#. defaultMessage is: +#. Create page +#: build/locale/src/pages/components/PageListPage/PageListPage.json +msgctxt "button" +msgid "Create page" +msgstr "" + #. [src.pages.views.3785394515] - header #. defaultMessage is: #. Create page @@ -2419,11 +2429,55 @@ msgstr "" #. [src.shipping.components.ShippingZoneRateDialog.16061680] - button #. defaultMessage is: #. Create rate +#. [src.shipping.components.ShippingZoneRates.16061680] - button +#. defaultMessage is: +#. Create rate #: build/locale/src/shipping/components/ShippingZoneRateDialog/ShippingZoneRateDialog.json +#: build/locale/src/shipping/components/ShippingZoneRates/ShippingZoneRates.json msgctxt "button" msgid "Create rate" msgstr "" +#. [src.shipping.components.ShippingZonesList.2673544109] - button +#. defaultMessage is: +#. Create shipping zone +#: build/locale/src/shipping/components/ShippingZonesList/ShippingZonesList.json +msgctxt "button" +msgid "Create shipping zone" +msgstr "" + +#. [src.categories.components.CategoryUpdatePage.770296100] - button +#. defaultMessage is: +#. Create subcategory +#: build/locale/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.json +msgctxt "button" +msgid "Create subcategory" +msgstr "" + +#. [src.products.components.ProductVariants.3989383405] - button +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/components/ProductVariants/ProductVariants.json +msgctxt "button" +msgid "Create variant" +msgstr "" + +#. [src.products.views.3989383405] - window title +#. defaultMessage is: +#. Create variant +#: build/locale/src/products/views/ProductVariantCreate.json +msgctxt "window title" +msgid "Create variant" +msgstr "" + +#. [src.discounts.components.VoucherListPage.614836274] - button +#. defaultMessage is: +#. Create voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +msgctxt "button" +msgid "Create voucher" +msgstr "" + #. [src.collections.views.1597339737] #. defaultMessage is: #. Created collection @@ -2470,7 +2524,11 @@ msgstr "" #. [src.components.FilterBar.2340527467] #. defaultMessage is: #. Custom Filter +#. [src.components.SearchBar.2340527467] +#. defaultMessage is: +#. Custom Filter #: build/locale/src/components/FilterBar/FilterBar.json +#: build/locale/src/components/SearchBar/SearchBar.json msgctxt "description" msgid "Custom Filter" msgstr "" @@ -2726,10 +2784,18 @@ msgctxt "dialog title" msgid "Delete Collection" msgstr "" -#. [src.orders.views.1161115149] - dialog header +#. [src.products.views.1731766393] - dialog header +#. defaultMessage is: +#. Delete Image +#: build/locale/src/products/views/ProductImage.json +msgctxt "dialog header" +msgid "Delete Image" +msgstr "" + +#. [src.orders.views.OrderDraftList.1161115149] - dialog header #. defaultMessage is: #. Delete Order Drafts -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json msgctxt "dialog header" msgid "Delete Order Drafts" msgstr "" @@ -2767,10 +2833,10 @@ msgctxt "dialog header" msgid "Delete Product Type" msgstr "" -#. [src.productTypes.views.4080551769] - dialog header +#. [src.productTypes.views.ProductTypeList.4080551769] - dialog header #. defaultMessage is: #. Delete Product Types -#: build/locale/src/productTypes/views/ProductTypeList.json +#: build/locale/src/productTypes/views/ProductTypeList/ProductTypeList.json msgctxt "dialog header" msgid "Delete Product Types" msgstr "" @@ -2799,10 +2865,10 @@ msgctxt "dialog header" msgid "Delete Sale" msgstr "" -#. [src.discounts.views.2809303671] - dialog header +#. [src.discounts.views.SaleList.2809303671] - dialog header #. defaultMessage is: #. Delete Sales -#: build/locale/src/discounts/views/SaleList.json +#: build/locale/src/discounts/views/SaleList/SaleList.json msgctxt "dialog header" msgid "Delete Sales" msgstr "" @@ -2816,9 +2882,13 @@ msgctxt "custom search delete, dialog header" msgid "Delete Search" msgstr "" +#. [src.components.Filter.2173195312] - button +#. defaultMessage is: +#. Delete Search #. [src.components.TableFilter.2173195312] - button #. defaultMessage is: #. Delete Search +#: build/locale/src/components/Filter/FilterSearch.json #: build/locale/src/components/TableFilter/FilterChips.json msgctxt "button" msgid "Delete Search" @@ -2885,10 +2955,10 @@ msgctxt "dialog header" msgid "Delete Voucher" msgstr "" -#. [src.discounts.views.367317371] - dialog header +#. [src.discounts.views.VoucherList.367317371] - dialog header #. defaultMessage is: #. Delete Vouchers -#: build/locale/src/discounts/views/VoucherList.json +#: build/locale/src/discounts/views/VoucherList/VoucherList.json msgctxt "dialog header" msgid "Delete Vouchers" msgstr "" @@ -2922,11 +2992,11 @@ msgstr "" #. [src.categories.views.712767046] - dialog title #. defaultMessage is: #. Delete categories -#. [src.categories.views.712767046] - dialog title +#. [src.categories.views.CategoryList.712767046] - dialog title #. defaultMessage is: #. Delete categories #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "dialog title" msgid "Delete categories" msgstr "" @@ -2943,10 +3013,10 @@ msgctxt "dialog title" msgid "Delete category" msgstr "" -#. [src.collections.views.3817188998] - dialog title +#. [src.collections.views.CollectionList.3817188998] - dialog title #. defaultMessage is: #. Delete collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Delete collections" msgstr "" @@ -2959,14 +3029,31 @@ msgctxt "dialog header" msgid "Delete customer" msgstr "" -#. [src.customers.views.1946482599] - dialog header +#. [src.customers.views.CustomerList.1946482599] - dialog header #. defaultMessage is: #. Delete customers -#: build/locale/src/customers/views/CustomerList.json +#: build/locale/src/customers/views/CustomerList/CustomerList.json msgctxt "dialog header" msgid "Delete customers" msgstr "" +#. [src.orders.components.OrderDraftCancelDialog.632633254] - dialog header +#. defaultMessage is: +#. Delete draft order +#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json +msgctxt "dialog header" +msgid "Delete draft order" +msgstr "" + +#. [src.shipping.views.ShippingZoneDetails.1947090060] - unassign country, +#. dialog header +#. defaultMessage is: +#. Delete from shipping zone +#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json +msgctxt "unassign country, dialog header" +msgid "Delete from shipping zone" +msgstr "" + #. [src.collections.views.942133001] - dialog title #. defaultMessage is: #. Delete image @@ -3027,6 +3114,14 @@ msgctxt "description" msgid "Deleted collection" msgstr "" +#. [src.orders.views.OrderDraftList.1648805446] +#. defaultMessage is: +#. Deleted draft orders +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json +msgctxt "description" +msgid "Deleted draft orders" +msgstr "" + #. [menuListDeletedMenu] #. defaultMessage is: #. Deleted menu @@ -3626,14 +3721,6 @@ msgctxt "order history message" msgid "Fulfilled {quantity} items" msgstr "" -#. [src.orders.components.OrderListFilter.2943502192] - order -#. defaultMessage is: -#. Fulfillment Status -#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json -msgctxt "order" -msgid "Fulfillment Status" -msgstr "" - #. [src.orders.components.OrderHistory.3081292385] - order history message #. defaultMessage is: #. Fulfillment confirmation was sent to customer @@ -3790,12 +3877,12 @@ msgctxt "description" msgid "If empty, the preview shows what will be autogenerated." msgstr "" -#. [src.attributes.components.AttributeProperties.2519239682] +#. [src.attributes.components.AttributeProperties.4048785456] #. defaultMessage is: -#. If enable this attribute can be used as a column in product table. +#. If enabled this attribute can be used as a column in product table. #: build/locale/src/attributes/components/AttributeProperties/AttributeProperties.json msgctxt "description" -msgid "If enable this attribute can be used as a column in product table." +msgid "If enabled this attribute can be used as a column in product table." msgstr "" #. [src.attributes.components.AttributeProperties.787251583] @@ -3901,6 +3988,22 @@ msgctxt "product variant stock" msgid "Inventory" msgstr "" +#. [src.staff.components.StaffAddMemberDialog.1481503299] - dialog header +#. defaultMessage is: +#. Invite Staff Member +#: build/locale/src/staff/components/StaffAddMemberDialog/StaffAddMemberDialog.json +msgctxt "dialog header" +msgid "Invite Staff Member" +msgstr "" + +#. [src.staff.components.StaffListPage.797461521] - button +#. defaultMessage is: +#. Invite staff member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "button" +msgid "Invite staff member" +msgstr "" + #. [src.productTypes.components.ProductTypeShipping.2143413921] - switch #. button #. defaultMessage is: @@ -4253,6 +4356,14 @@ msgctxt "voucher requirement" msgid "Minimum quantity of items" msgstr "" +#. [src.configuration.1233229030] +#. defaultMessage is: +#. Miscellaneous +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Miscellaneous" +msgstr "" + #. [src.attributes.components.AttributeDetails.3334509011] - product attribute #. type #. defaultMessage is: @@ -5085,6 +5196,14 @@ msgctxt "description" msgid "Order History" msgstr "" +#. [src.orders.components.OrderListFilter.2222765704] +#. defaultMessage is: +#. Order Status +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +msgctxt "description" +msgid "Order Status" +msgstr "" + #. [src.orders.components.OrderHistory.1230178536] - order history message #. defaultMessage is: #. Order address was updated @@ -5101,13 +5220,13 @@ msgctxt "order history message" msgid "Order confirmation was sent to customer" msgstr "" -#. [src.orders.views.1872939752] +#. [src.orders.views.OrderDraftList.1872939752] #. defaultMessage is: #. Order draft succesfully created #. [src.orders.views.OrderList.1872939752] #. defaultMessage is: #. Order draft succesfully created -#: build/locale/src/orders/views/OrderDraftList.json +#: build/locale/src/orders/views/OrderDraftList/OrderDraftList.json #: build/locale/src/orders/views/OrderList/OrderList.json msgctxt "description" msgid "Order draft succesfully created" @@ -5772,6 +5891,14 @@ msgctxt "description" msgid "Product Name" msgstr "" +#. [src.configuration.3655543906] +#. defaultMessage is: +#. Product Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Product Settings" +msgstr "" + #. [src.discounts.components.DiscountProducts.4257289053] #. defaultMessage is: #. Product Type @@ -5930,12 +6057,12 @@ msgctxt "order history message" msgid "Products were added to draft order" msgstr "" -#. [src.orders.components.OrderHistory.2574162126] - order history message +#. [src.orders.components.OrderHistory.4067959693] - order history message #. defaultMessage is: -#. Products were removed from draft order +#. Products were deleted from draft order #: build/locale/src/orders/components/OrderHistory/OrderHistory.json msgctxt "order history message" -msgid "Products were removed from draft order" +msgid "Products were deleted from draft order" msgstr "" #. [src.properties] @@ -5962,10 +6089,10 @@ msgctxt "description" msgid "Provided email address does not exist in our database." msgstr "" -#. [src.collections.views.1547167026] - publish collections +#. [src.collections.views.CollectionList.1547167026] - publish collections #. defaultMessage is: #. Publish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "publish collections" msgid "Publish" msgstr "發佈" @@ -6002,10 +6129,10 @@ msgctxt "dialog header" msgid "Publish Products" msgstr "" -#. [src.collections.views.2823425739] - dialog title +#. [src.collections.views.CollectionList.2823425739] - dialog title #. defaultMessage is: #. Publish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Publish collections" msgstr "" @@ -6179,6 +6306,18 @@ msgctxt "shipping method price" msgid "Rate Price" msgstr "" +#. [src.orders.components.OrderListFilter.2415661583] - order status +#. defaultMessage is: +#. Ready to Capture +#. [src.orders.views.OrderList.readyToCapture] - order status +#. defaultMessage is: +#. Ready to Capture +#: build/locale/src/orders/components/OrderListFilter/OrderListFilter.json +#: build/locale/src/orders/views/OrderList/filters.json +msgctxt "order status" +msgid "Ready to Capture" +msgstr "" + #. [src.customers.components.CustomerOrders.3878642352] - section header #. defaultMessage is: #. Recent orders @@ -6227,22 +6366,14 @@ msgctxt "switch button" msgid "Release all stock allocated to this order" msgstr "" -#. [src.auth.components.LoginPage.3182284913] - login -#. defaultMessage is: -#. Remember me -#: build/locale/src/auth/components/LoginPage/LoginPage.json -msgctxt "login" -msgid "Remember me" -msgstr "" - #. [src.categories.views.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. -#. [src.categories.views.3488150607] +#. [src.categories.views.CategoryList.3488150607] #. defaultMessage is: #. Remember this will also delete all products assigned to this category. #: build/locale/src/categories/views/CategoryDetails.json -#: build/locale/src/categories/views/CategoryList.json +#: build/locale/src/categories/views/CategoryList/CategoryList.json msgctxt "description" msgid "Remember this will also delete all products assigned to this category." msgstr "" @@ -6255,39 +6386,6 @@ msgctxt "button" msgid "Remove" msgstr "刪除" -#. [src.products.views.490753666] - dialog header -#. defaultMessage is: -#. Remove Image -#: build/locale/src/products/views/ProductImage.json -msgctxt "dialog header" -msgid "Remove Image" -msgstr "" - -#. [src.orders.components.OrderDraftCancelDialog.500287069] - dialog header -#. defaultMessage is: -#. Remove draft order -#: build/locale/src/orders/components/OrderDraftCancelDialog/OrderDraftCancelDialog.json -msgctxt "dialog header" -msgid "Remove draft order" -msgstr "" - -#. [src.shipping.views.ShippingZoneDetails.254167659] - unassign country, -#. dialog header -#. defaultMessage is: -#. Remove from shipping zone -#: build/locale/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.json -msgctxt "unassign country, dialog header" -msgid "Remove from shipping zone" -msgstr "" - -#. [src.orders.views.3880993240] -#. defaultMessage is: -#. Removed draft orders -#: build/locale/src/orders/views/OrderDraftList.json -msgctxt "description" -msgid "Removed draft orders" -msgstr "" - #. [src.pages.views.1457312643] #. defaultMessage is: #. Removed page @@ -6453,6 +6551,18 @@ msgctxt "button" msgid "Save" msgstr "儲存" +#. [src.components.Filter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#. [src.components.TableFilter.1514415736] - button +#. defaultMessage is: +#. Save Custom Search +#: build/locale/src/components/Filter/FilterSearch.json +#: build/locale/src/components/TableFilter/FilterChips.json +msgctxt "button" +msgid "Save Custom Search" +msgstr "" + #. [src.components.SaveFilterTabDialog.1514415736] - save filter tab, header #. defaultMessage is: #. Save Custom Search @@ -6461,14 +6571,6 @@ msgctxt "save filter tab, header" msgid "Save Custom Search" msgstr "" -#. [src.components.TableFilter.1514415736] - button -#. defaultMessage is: -#. Save Custom Search -#: build/locale/src/components/TableFilter/FilterChips.json -msgctxt "button" -msgid "Save Custom Search" -msgstr "" - #. [src.products.components.ProductVariantCreatePage.2853608829] - button #. defaultMessage is: #. Save variant @@ -6485,6 +6587,14 @@ msgctxt "description" msgid "Saved changes" msgstr "" +#. [src.attributes.components.AttributeListPage.3916653510] +#. defaultMessage is: +#. Search Attribute +#: build/locale/src/attributes/components/AttributeListPage/AttributeListPage.json +msgctxt "description" +msgid "Search Attribute" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.902296540] #. defaultMessage is: #. Search Attributes @@ -6501,10 +6611,30 @@ msgctxt "description" msgid "Search Categories" msgstr "" +#. [src.categories.components.CategoryListPage.3841025483] +#. defaultMessage is: +#. Search Category +#. [src.translations.components.TranslationsEntitiesListPage.3841025483] +#. defaultMessage is: +#. Search Category +#: build/locale/src/categories/components/CategoryListPage/CategoryListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Category" +msgstr "" + +#. [src.collections.components.CollectionListPage.4057224233] +#. defaultMessage is: +#. Search Collection #. [src.components.AssignCollectionDialog.4057224233] #. defaultMessage is: #. Search Collection +#. [src.translations.components.TranslationsEntitiesListPage.4057224233] +#. defaultMessage is: +#. Search Collection +#: build/locale/src/collections/components/CollectionListPage/CollectionListPage.json #: build/locale/src/components/AssignCollectionDialog/AssignCollectionDialog.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json msgctxt "description" msgid "Search Collection" msgstr "" @@ -6517,6 +6647,14 @@ msgctxt "description" msgid "Search Countries" msgstr "" +#. [src.customers.components.CustomerListPage.1643417013] +#. defaultMessage is: +#. Search Customer +#: build/locale/src/customers/components/CustomerListPage/CustomerListPage.json +msgctxt "description" +msgid "Search Customer" +msgstr "" + #. [src.orders.components.OrderCustomer.2433460203] #. defaultMessage is: #. Search Customers @@ -6525,6 +6663,14 @@ msgctxt "description" msgid "Search Customers" msgstr "" +#. [src.orders.components.OrderDraftListPage.77765281] +#. defaultMessage is: +#. Search Draft +#: build/locale/src/orders/components/OrderDraftListPage/OrderDraftListPage.json +msgctxt "description" +msgid "Search Draft" +msgstr "" + #. [src.translations.components.TranslationsCategoriesPage.1406947243] #. defaultMessage is: #. Search Engine Description @@ -6605,6 +6751,34 @@ msgctxt "description" msgid "Search Orders..." msgstr "" +#. [src.translations.components.TranslationsEntitiesListPage.2559018090] +#. defaultMessage is: +#. Search Page +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Page" +msgstr "" + +#. [src.translations.components.TranslationsEntitiesListPage.2105464697] +#. defaultMessage is: +#. Search Product +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product" +msgstr "" + +#. [src.productTypes.components.ProductTypeListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#. [src.translations.components.TranslationsEntitiesListPage.3420445375] +#. defaultMessage is: +#. Search Product Type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Product Type" +msgstr "" + #. [src.components.AssignProductDialog.2850255786] #. defaultMessage is: #. Search Products @@ -6617,14 +6791,46 @@ msgctxt "description" msgid "Search Products" msgstr "" -#. [src.products.components.ProductListPage.3550330425] +#. [src.products.components.ProductListFilter.3550330425] #. defaultMessage is: #. Search Products... -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Search Products..." msgstr "" +#. [src.discounts.components.SaleListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#. [src.translations.components.TranslationsEntitiesListPage.1866913828] +#. defaultMessage is: +#. Search Sale +#: build/locale/src/discounts/components/SaleListPage/SaleListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Sale" +msgstr "" + +#. [src.staff.components.StaffListPage.61043583] +#. defaultMessage is: +#. Search Staff Member +#: build/locale/src/staff/components/StaffListPage/StaffListPage.json +msgctxt "description" +msgid "Search Staff Member" +msgstr "" + +#. [src.discounts.components.VoucherListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#. [src.translations.components.TranslationsEntitiesListPage.1930485532] +#. defaultMessage is: +#. Search Voucher +#: build/locale/src/discounts/components/VoucherListPage/VoucherListPage.json +#: build/locale/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.json +msgctxt "description" +msgid "Search Voucher" +msgstr "" + #. [src.productTypes.components.AssignAttributeDialog.524117994] #. defaultMessage is: #. Search by attribute name @@ -6731,10 +6937,10 @@ msgctxt "description" msgid "Select all orders where:" msgstr "" -#. [src.products.components.ProductListPage.1421689426] +#. [src.products.components.ProductListFilter.1421689426] #. defaultMessage is: #. Select all products where: -#: build/locale/src/products/components/ProductListPage/ProductListPage.json +#: build/locale/src/products/components/ProductListFilter/ProductListFilter.json msgctxt "description" msgid "Select all products where:" msgstr "" @@ -6820,6 +7026,14 @@ msgctxt "description" msgid "Set plugin as Active" msgstr "" +#. [src.components.VisibilityCard.292404896] +#. defaultMessage is: +#. Set publication date +#: build/locale/src/components/VisibilityCard/VisibilityCard.json +msgctxt "description" +msgid "Set publication date" +msgstr "" + #. [src.discounts.shipment] - voucher discount #. defaultMessage is: #. Shipment @@ -7085,6 +7299,14 @@ msgctxt "staff section name" msgid "Staff Members" msgstr "" +#. [src.configuration.3140151600] +#. defaultMessage is: +#. Staff Settings +#: build/locale/src/configuration/index.json +msgctxt "description" +msgid "Staff Settings" +msgstr "" + #. [src.standard] - tax rate #. defaultMessage is: #. Standard @@ -8069,10 +8291,10 @@ msgctxt "payment status" msgid "Unpaid" msgstr "" -#. [src.collections.views.2237014112] - unpublish collections +#. [src.collections.views.CollectionList.2237014112] - unpublish collections #. defaultMessage is: #. Unpublish -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "unpublish collections" msgid "Unpublish" msgstr "取消發佈" @@ -8109,10 +8331,10 @@ msgctxt "dialog header" msgid "Unpublish Products" msgstr "" -#. [src.collections.views.2637364047] - dialog title +#. [src.collections.views.CollectionList.2637364047] - dialog title #. defaultMessage is: #. Unpublish collections -#: build/locale/src/collections/views/CollectionList.json +#: build/locale/src/collections/views/CollectionList/CollectionList.json msgctxt "dialog title" msgid "Unpublish collections" msgstr "" @@ -8612,6 +8834,22 @@ msgctxt "description" msgid "ZIP / Postal code" msgstr "" +#. [src.productTypes.components.ProductTypeListPage.3479705616] - button +#. defaultMessage is: +#. create product type +#: build/locale/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.json +msgctxt "button" +msgid "create product type" +msgstr "" + +#. [src.staff.views.1308770978] - dialog header +#. defaultMessage is: +#. delete Staff User +#: build/locale/src/staff/views/StaffDetails.json +msgctxt "dialog header" +msgid "delete Staff User" +msgstr "" + #. [orderPaymentVATDoesNotApply] - vat not included in order price #. defaultMessage is: #. does not apply @@ -8685,19 +8923,35 @@ msgctxt "product status is set as" msgid "is set as" msgstr "" -#. [src.staff.views.2240444792] - dialog header -#. defaultMessage is: -#. remove Staff User -#: build/locale/src/staff/views/StaffDetails.json -msgctxt "dialog header" -msgid "remove Staff User" -msgstr "" - -#. [src.components.VisibilityCard.1815688500] +#. [src.collections.components.CollectionCreatePage.1815688500] - collection #. defaultMessage is: #. since {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.1815688500] - collection +#. defaultMessage is: +#. since {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "since {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.1815688500] - page +#. defaultMessage is: +#. since {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "since {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#. [src.products.components.ProductUpdatePage.1815688500] - product +#. defaultMessage is: +#. since {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "since {date}" msgstr "" @@ -8725,11 +8979,35 @@ msgctxt "weight" msgid "to {value} {unit}" msgstr "" -#. [src.components.VisibilityCard.2001551496] +#. [src.collections.components.CollectionCreatePage.2001551496] - collection #. defaultMessage is: #. will be visible from {date} -#: build/locale/src/components/VisibilityCard/VisibilityCard.json -msgctxt "description" +#. [src.collections.components.CollectionDetailsPage.2001551496] - collection +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/collections/components/CollectionCreatePage/CollectionCreatePage.json +#: build/locale/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.json +msgctxt "collection" +msgid "will be visible from {date}" +msgstr "" + +#. [src.pages.components.PageDetailsPage.2001551496] - page +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/pages/components/PageDetailsPage/PageDetailsPage.json +msgctxt "page" +msgid "will be visible from {date}" +msgstr "" + +#. [src.products.components.ProductCreatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#. [src.products.components.ProductUpdatePage.2001551496] - product +#. defaultMessage is: +#. will be visible from {date} +#: build/locale/src/products/components/ProductCreatePage/ProductCreatePage.json +#: build/locale/src/products/components/ProductUpdatePage/ProductUpdatePage.json +msgctxt "product" msgid "will be visible from {date}" msgstr "" From 05b13263de56c6858c73ab0fa79aa592b40b6e17 Mon Sep 17 00:00:00 2001 From: Krzysztof Bialoglowicz Date: Thu, 26 Sep 2019 14:40:32 +0200 Subject: [PATCH 08/23] Fix logo, hidding icons, arrow icon --- assets/images/logo-dark-small.svg | 2 +- assets/images/logo-dark.svg | 16 ++++++------ assets/images/menu-arrow-icon.svg | 4 +-- src/components/AppLayout/AppLayout.tsx | 16 +++++++----- src/components/AppLayout/MenuList.tsx | 26 +++++++++++++------ src/components/AppLayout/ResponsiveDrawer.tsx | 2 +- src/components/AppLayout/consts.ts | 2 +- src/config.ts | 2 +- 8 files changed, 42 insertions(+), 28 deletions(-) diff --git a/assets/images/logo-dark-small.svg b/assets/images/logo-dark-small.svg index 0b4929861..6a37f3b0a 100644 --- a/assets/images/logo-dark-small.svg +++ b/assets/images/logo-dark-small.svg @@ -1,4 +1,4 @@ - + diff --git a/assets/images/logo-dark.svg b/assets/images/logo-dark.svg index 9ee80f315..d0fe1c523 100644 --- a/assets/images/logo-dark.svg +++ b/assets/images/logo-dark.svg @@ -1,9 +1,9 @@ - - - - - - - - + + + + + + + + diff --git a/assets/images/menu-arrow-icon.svg b/assets/images/menu-arrow-icon.svg index d71344f32..db1ab906d 100644 --- a/assets/images/menu-arrow-icon.svg +++ b/assets/images/menu-arrow-icon.svg @@ -1,3 +1,3 @@ - - + + diff --git a/src/components/AppLayout/AppLayout.tsx b/src/components/AppLayout/AppLayout.tsx index f9ca5a792..0d3cbb4b6 100644 --- a/src/components/AppLayout/AppLayout.tsx +++ b/src/components/AppLayout/AppLayout.tsx @@ -88,7 +88,7 @@ const styles = (theme: Theme) => margin: "0 8px" }, "& svg": { - marginTop: 12, + marginTop: 8, transform: "rotate(180deg)" }, "&:hover": { @@ -115,17 +115,21 @@ const styles = (theme: Theme) => }, isMenuSmallHide: { "& svg": { + marginLeft: "3px", transform: "rotate(0deg)" } }, logo: { "& svg": { - padding: "20px 50px", - width: "256px" + left: "50%", + position: "absolute", + top: "50%", + transform: "translate(-50%,-50%)" }, background: theme.palette.secondary.main, display: "block", - height: 80 + height: 80, + position: "relative" }, logoDark: { "& path": { @@ -135,7 +139,7 @@ const styles = (theme: Theme) => }, logoSmall: { "& svg": { - margin: "20px 0", + margin: 0, padding: 0, width: "80px" } @@ -143,7 +147,7 @@ const styles = (theme: Theme) => menu: { background: theme.palette.background.paper, height: "100vh", - padding: 25 + padding: "25px 20px" }, menuIcon: { "& span": { diff --git a/src/components/AppLayout/MenuList.tsx b/src/components/AppLayout/MenuList.tsx index 1a1870b47..20dd06d7a 100644 --- a/src/components/AppLayout/MenuList.tsx +++ b/src/components/AppLayout/MenuList.tsx @@ -40,12 +40,16 @@ const styles = (theme: Theme) => fill: theme.palette.common.white } }, + menuIconSmall: { + left: -5 + }, menuIsActive: { boxShadow: "0px 0px 12px 1px rgba(0,0,0,0.2)" }, menuItemHover: { "& p": { - transition: "color 0.5s ease" + fontSize: 14, + transition: "color 0.5s ease, opacity 0.3s ease-out" }, "& path": { transition: "fill 0.5s ease" @@ -121,19 +125,22 @@ const styles = (theme: Theme) => "&:hover": { color: theme.palette.primary.main }, + bottom: 0, cursor: "pointer", - display: "inline-block", fontSize: "1rem", fontWeight: 500, + left: 30, opacity: 1, paddingLeft: 16, + position: "absolute", textTransform: "uppercase", - transition: `opacity ${theme.transitions.duration.shorter}ms ease 0.1s` + transition: "opacity 0.5s ease" }, menuListItemTextHide: { + bottom: 0, + left: 30, opacity: 0, - position: "absolute", - transition: `opacity ${theme.transitions.duration.shorter}ms ease` + position: "absolute" }, subMenu: { padding: "0 15px" @@ -263,7 +270,8 @@ const MenuList = withStyles(styles, { name: "MenuList" })( > @@ -308,7 +316,8 @@ const MenuList = withStyles(styles, { name: "MenuList" })(
@@ -333,7 +342,8 @@ const MenuList = withStyles(styles, { name: "MenuList" })(
diff --git a/src/components/AppLayout/ResponsiveDrawer.tsx b/src/components/AppLayout/ResponsiveDrawer.tsx index cc8e026c0..cf109c53b 100644 --- a/src/components/AppLayout/ResponsiveDrawer.tsx +++ b/src/components/AppLayout/ResponsiveDrawer.tsx @@ -18,7 +18,7 @@ const styles = (theme: Theme) => overflow: "visible", padding: 0, position: "fixed" as "fixed", - transition: "width 0.2s ease", + transition: "width 0.3s ease", width: drawerWidthExpanded }, drawerDesktopSmall: { diff --git a/src/components/AppLayout/consts.ts b/src/components/AppLayout/consts.ts index a6d98fbba..342ad7b55 100644 --- a/src/components/AppLayout/consts.ts +++ b/src/components/AppLayout/consts.ts @@ -1,4 +1,4 @@ -export const drawerWidthExpanded = 256; +export const drawerWidthExpanded = 210; export const drawerWidth = 80; export const navigationBarHeight = 64; export const appLoaderHeight = 4; diff --git a/src/config.ts b/src/config.ts index 7737bfe0d..ccd62a385 100644 --- a/src/config.ts +++ b/src/config.ts @@ -2,7 +2,7 @@ import { SearchQueryVariables } from "./containers/BaseSearch"; import { ListSettings, ListViews } from "./types"; export const APP_MOUNT_URI = process.env.APP_MOUNT_URI || "/"; -export const API_URI = process.env.API_URI || "/graphql/"; +export const API_URI = process.env.API_URI || "http://localhost:8008/graphql/"; export const DEFAULT_INITIAL_SEARCH_DATA: SearchQueryVariables = { after: null, From a703bea47ad288d298f37dcbf76a6384ce623392 Mon Sep 17 00:00:00 2001 From: Krzysztof Bialoglowicz Date: Thu, 26 Sep 2019 14:44:01 +0200 Subject: [PATCH 09/23] Update changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index d6de444ff..bfe10d724 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,3 +24,4 @@ All notable, unreleased changes to this project will be documented in this file. - Add search bars - #172 by @dominik-zeglen - Add sorting to product list - #173 by @dominik-zeglen - Add Heroku integration - #175 by @bogdal +- Fix navigation - #182 by @benekex2 From aa34168cd5456f924bc405605ed2731a82e2a2d8 Mon Sep 17 00:00:00 2001 From: Krzysztof Bialoglowicz Date: Thu, 26 Sep 2019 14:48:34 +0200 Subject: [PATCH 10/23] Fix hover active bar position --- src/components/AppLayout/MenuList.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/AppLayout/MenuList.tsx b/src/components/AppLayout/MenuList.tsx index 20dd06d7a..bd3e16ca9 100644 --- a/src/components/AppLayout/MenuList.tsx +++ b/src/components/AppLayout/MenuList.tsx @@ -65,7 +65,7 @@ const styles = (theme: Theme) => borderLeft: `solid 2px ${theme.palette.primary.main}`, content: "''", height: 33, - left: -25, + left: -20, position: "absolute", top: 8 }, @@ -115,7 +115,7 @@ const styles = (theme: Theme) => borderLeft: `solid 2px ${theme.palette.primary.main}`, content: "''", height: 33, - left: -25, + left: -20, position: "absolute", top: 8 }, From 5beddf73e2b8507c7e17374c4242517022742fdd Mon Sep 17 00:00:00 2001 From: Krzysztof Bialoglowicz Date: Thu, 26 Sep 2019 15:49:23 +0200 Subject: [PATCH 11/23] Fix config --- src/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.ts b/src/config.ts index ccd62a385..7737bfe0d 100644 --- a/src/config.ts +++ b/src/config.ts @@ -2,7 +2,7 @@ import { SearchQueryVariables } from "./containers/BaseSearch"; import { ListSettings, ListViews } from "./types"; export const APP_MOUNT_URI = process.env.APP_MOUNT_URI || "/"; -export const API_URI = process.env.API_URI || "http://localhost:8008/graphql/"; +export const API_URI = process.env.API_URI || "/graphql/"; export const DEFAULT_INITIAL_SEARCH_DATA: SearchQueryVariables = { after: null, From a20d6fe6d873ff21d499eefbe97007756c20f863 Mon Sep 17 00:00:00 2001 From: Krzysztof Bialoglowicz Date: Thu, 26 Sep 2019 16:23:51 +0200 Subject: [PATCH 12/23] Fix input error style --- src/theme.ts | 35 ++++++++++++++++++++++++++++------- 1 file changed, 28 insertions(+), 7 deletions(-) diff --git a/src/theme.ts b/src/theme.ts index 076ff5de7..52b6afb59 100644 --- a/src/theme.ts +++ b/src/theme.ts @@ -111,11 +111,6 @@ export default (colors: IThemeColors): Theme => MuiFormLabel: { filled: { color: [[colors.primary], "!important"] as any - }, - root: { - "&$focused": { - color: [[colors.font.gray], "!important"] as any - } } }, MuiIconButton: { @@ -154,6 +149,12 @@ export default (colors: IThemeColors): Theme => } }, MuiInputLabel: { + error: { + "&$focused": { + color: colors.error + }, + color: colors.error + }, formControl: { transform: "translate(0, 1.5px) scale(0.75)", transformOrigin: "top left" as "top left", @@ -171,7 +172,7 @@ export default (colors: IThemeColors): Theme => color: `${fade(colors.primary, 0.4)} !important` as any }, "&$focused": { - color: [[colors.primary], "!important"] as any + color: colors.primary }, color: colors.input.text }, @@ -223,6 +224,26 @@ export default (colors: IThemeColors): Theme => } }, MuiOutlinedInput: { + error: { + "&$focused": { + "& fieldset": { + borderColor: [[colors.error], "!important"] as any + }, + "& input": { + color: colors.error, + zIndex: 2 + } + }, + "&:hover": { + "& fieldset": { + borderColor: [[colors.error], "!important"] as any + }, + "& input": { + color: colors.error, + zIndex: 2 + } + } + }, input: { "&:-webkit-autofill": { boxShadow: `0 0 0px 1000px rgba(19, 190, 187, 0.1) inset`, @@ -246,7 +267,7 @@ export default (colors: IThemeColors): Theme => root: { "& fieldset": { background: colors.background.paper, - borderColor: [[colors.input.border], "!important"] as any + borderColor: colors.input.border }, "& legend": { display: "none" From f71b82d612f1354a5ed5932ae293efb77b95c92f Mon Sep 17 00:00:00 2001 From: Krzysztof Bialoglowicz Date: Thu, 26 Sep 2019 16:25:47 +0200 Subject: [PATCH 13/23] Update change log --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index c85282781..b271b978d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -25,3 +25,4 @@ All notable, unreleased changes to this project will be documented in this file. - Add sorting to product list - #173 by @dominik-zeglen - Add Heroku integration - #175 by @bogdal - Add testcafe tags to attributes, categories, collections and product types - #178 by @dominik-zeglen +- Fix input error style - #183 by @benekex2 From 96b1a445f02f85815b51234c168e76cd9a2edb96 Mon Sep 17 00:00:00 2001 From: Krzysztof Bialoglowicz Date: Thu, 26 Sep 2019 16:31:45 +0200 Subject: [PATCH 14/23] Remove unused importants --- src/theme.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/theme.ts b/src/theme.ts index 52b6afb59..07d12fcf1 100644 --- a/src/theme.ts +++ b/src/theme.ts @@ -227,7 +227,7 @@ export default (colors: IThemeColors): Theme => error: { "&$focused": { "& fieldset": { - borderColor: [[colors.error], "!important"] as any + borderColor: colors.error }, "& input": { color: colors.error, @@ -236,7 +236,7 @@ export default (colors: IThemeColors): Theme => }, "&:hover": { "& fieldset": { - borderColor: [[colors.error], "!important"] as any + borderColor: colors.error }, "& input": { color: colors.error, @@ -284,7 +284,7 @@ export default (colors: IThemeColors): Theme => }, "&$focused": { "& fieldset": { - borderColor: [[colors.primary], "!important"] as any + borderColor: colors.primary }, "& input": { "&::placeholder": { @@ -296,7 +296,7 @@ export default (colors: IThemeColors): Theme => }, "&:hover": { "& fieldset": { - borderColor: [[colors.primary], "!important"] as any + borderColor: colors.primary }, "& input": { color: colors.font.default, From 1bc91e0cfcf7d3bdf1d772270d5564e53697ddf4 Mon Sep 17 00:00:00 2001 From: dominik-zeglen Date: Thu, 26 Sep 2019 16:51:28 +0200 Subject: [PATCH 15/23] Fix input's hover effect when errored --- src/components/Theme/ThemeProvider.tsx | 2 ++ src/theme.ts | 47 ++++++++++++++++++++------ 2 files changed, 38 insertions(+), 11 deletions(-) diff --git a/src/components/Theme/ThemeProvider.tsx b/src/components/Theme/ThemeProvider.tsx index 793fbb574..cc45447e2 100644 --- a/src/components/Theme/ThemeProvider.tsx +++ b/src/components/Theme/ThemeProvider.tsx @@ -34,6 +34,7 @@ const dark: IThemeColors = { disabled: "#393939", disabledBackground: "#292A2D", disabledText: "#9D9D9D", + error: "#8C2054", text: "#FCFCFC", textHover: "#616161" }, @@ -69,6 +70,7 @@ const light: IThemeColors = { disabled: "#EAEAEA", disabledBackground: "#F4F4F4", disabledText: "#9D9D9D", + error: "#8C2054", text: "#3D3D3D", textHover: "#616161" }, diff --git a/src/theme.ts b/src/theme.ts index 07d12fcf1..6e9698d6e 100644 --- a/src/theme.ts +++ b/src/theme.ts @@ -34,6 +34,7 @@ export type IThemeColors = Record< | "disabled" | "disabledBackground" | "disabledText" + | "error" | "text" | "textHover", string @@ -110,7 +111,14 @@ export default (colors: IThemeColors): Theme => }, MuiFormLabel: { filled: { - color: [[colors.primary], "!important"] as any + "&&:not($error)": { + color: colors.primary + } + }, + root: { + "&&$focused:not($error)": { + color: colors.font.gray + } } }, MuiIconButton: { @@ -171,8 +179,13 @@ export default (colors: IThemeColors): Theme => "&$disabled": { color: `${fade(colors.primary, 0.4)} !important` as any }, - "&$focused": { - color: colors.primary + "&&$focused": { + "&$error": { + color: colors.error + }, + "&:not($error)": { + color: colors.primary + } }, color: colors.input.text }, @@ -266,8 +279,10 @@ export default (colors: IThemeColors): Theme => }, root: { "& fieldset": { - background: colors.background.paper, - borderColor: colors.input.border + "&&:not($error)": { + borderColor: colors.input.border + }, + background: colors.background.paper }, "& legend": { display: "none" @@ -283,24 +298,34 @@ export default (colors: IThemeColors): Theme => } }, "&$focused": { - "& fieldset": { - borderColor: colors.primary - }, "& input": { "&::placeholder": { opacity: [[1], "!important"] as any }, color: colors.font.default, zIndex: 2 + }, + "&&&": { + "& fieldset": { + borderColor: colors.primary + }, + "&$error fieldset": { + borderColor: colors.error + } } }, "&:hover": { - "& fieldset": { - borderColor: colors.primary - }, "& input": { color: colors.font.default, zIndex: 2 + }, + "&&&": { + "& fieldset": { + borderColor: colors.primary + }, + "&$error fieldset": { + borderColor: colors.input.error + } } }, borderColor: colors.input.border From 2b6b0f888ddf28f59315acf4da143c4229bee666 Mon Sep 17 00:00:00 2001 From: dominik-zeglen Date: Fri, 27 Sep 2019 12:25:39 +0200 Subject: [PATCH 16/23] Add tc tags --- src/components/ProductList/ProductList.tsx | 57 ++++++++++++------- .../ProductVariants/ProductVariants.tsx | 16 ++++-- .../__snapshots__/Stories.test.ts.snap | 16 ++++++ 3 files changed, 62 insertions(+), 27 deletions(-) diff --git a/src/components/ProductList/ProductList.tsx b/src/components/ProductList/ProductList.tsx index a0d91d610..b2fedbd03 100644 --- a/src/components/ProductList/ProductList.tsx +++ b/src/components/ProductList/ProductList.tsx @@ -243,11 +243,15 @@ export const ProductList = withStyles(styles, { name: "ProductList" })( product.thumbnail.url)} + data-tc="name" > {maybe(() => product.name, )} - + {product && product.productType ? ( product.productType.name ) : ( @@ -256,7 +260,11 @@ export const ProductList = withStyles(styles, { name: "ProductList" })( - + product.isAvailable)} + > {product && maybe(() => product.isAvailable !== undefined) ? ( - {gridAttributesFromSettings.map(gridAttribute => ( - - {maybe(() => { - const attribute = product.attributes.find( - attribute => - attribute.attribute.id === - getAttributeIdFromColumnValue(gridAttribute) - ); - if (attribute) { - return attribute.values - .map(value => value.name) - .join(", "); - } - return "-"; - }, )} - - ))} + {gridAttributesFromSettings.map(gridAttribute => { + const attribute = maybe(() => + product.attributes.find( + attribute => + attribute.attribute.id === + getAttributeIdFromColumnValue(gridAttribute) + ) + ); + const attributeValues = attribute + ? attribute.values.map(value => value.name).join(", ") + : "-"; + + return ( + attribute.attribute.id + )} + > + {attribute ? attributeValues : } + + ); + })} {maybe(() => product.basePrice) && diff --git a/src/products/components/ProductVariants/ProductVariants.tsx b/src/products/components/ProductVariants/ProductVariants.tsx index 445673717..6f69046f2 100644 --- a/src/products/components/ProductVariants/ProductVariants.tsx +++ b/src/products/components/ProductVariants/ProductVariants.tsx @@ -22,7 +22,7 @@ import Money from "@saleor/components/Money"; import Skeleton from "@saleor/components/Skeleton"; import StatusLabel from "@saleor/components/StatusLabel"; import TableHead from "@saleor/components/TableHead"; -import { renderCollection } from "../../../misc"; +import { renderCollection, maybe } from "../../../misc"; import { ListActions } from "../../../types"; import { ProductDetails_product_variants } from "../../types/ProductDetails"; import { ProductVariant_costPrice } from "../../types/ProductVariant"; @@ -186,10 +186,16 @@ export const ProductVariants = withStyles(styles, { name: "ProductVariants" })( onChange={() => toggle(variant.id)} /> - + {variant ? variant.name || variant.sku : } - + variant.stockQuantity > 0 + )} + > {variant ? ( )} - + {variant ? variant.sku : } - + {variant ? ( variant.priceOverride ? ( diff --git a/src/storybook/__snapshots__/Stories.test.ts.snap b/src/storybook/__snapshots__/Stories.test.ts.snap index cedf09a8c..e6afd2f19 100644 --- a/src/storybook/__snapshots__/Stories.test.ts.snap +++ b/src/storybook/__snapshots__/Stories.test.ts.snap @@ -88475,11 +88475,14 @@ Ctrl + K" Cordoba Oro
87192-94370 @@ -88513,11 +88517,14 @@ Ctrl + K" silver
69055-15190 @@ -91266,11 +91274,14 @@ Ctrl + K" Cordoba Oro
87192-94370 @@ -91304,11 +91316,14 @@ Ctrl + K" silver
69055-15190 From b9962f80da978fe29ccd58171a7e8b30aafe6ea1 Mon Sep 17 00:00:00 2001 From: dominik-zeglen Date: Fri, 27 Sep 2019 13:34:06 +0200 Subject: [PATCH 17/23] Sort imports --- src/products/components/ProductVariants/ProductVariants.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/products/components/ProductVariants/ProductVariants.tsx b/src/products/components/ProductVariants/ProductVariants.tsx index 6f69046f2..803b46e7f 100644 --- a/src/products/components/ProductVariants/ProductVariants.tsx +++ b/src/products/components/ProductVariants/ProductVariants.tsx @@ -22,7 +22,7 @@ import Money from "@saleor/components/Money"; import Skeleton from "@saleor/components/Skeleton"; import StatusLabel from "@saleor/components/StatusLabel"; import TableHead from "@saleor/components/TableHead"; -import { renderCollection, maybe } from "../../../misc"; +import { maybe, renderCollection } from "../../../misc"; import { ListActions } from "../../../types"; import { ProductDetails_product_variants } from "../../types/ProductDetails"; import { ProductVariant_costPrice } from "../../types/ProductVariant"; From d923d2d4831b622d542546742e370726316315d5 Mon Sep 17 00:00:00 2001 From: dominik-zeglen Date: Fri, 27 Sep 2019 15:27:04 +0200 Subject: [PATCH 18/23] Fix testcafe tags --- .../components/ProductList/ProductList.tsx | 23 +- .../__snapshots__/Stories.test.ts.snap | 203 ++++++++++++++++++ 2 files changed, 221 insertions(+), 5 deletions(-) diff --git a/src/products/components/ProductList/ProductList.tsx b/src/products/components/ProductList/ProductList.tsx index a69c7b877..35998e681 100644 --- a/src/products/components/ProductList/ProductList.tsx +++ b/src/products/components/ProductList/ProductList.tsx @@ -284,6 +284,8 @@ export const ProductList = withStyles(styles, { name: "ProductList" })( key={product ? product.id : "skeleton"} onClick={product && onRowClick(product.id)} className={classes.link} + data-tc="id" + data-tc-id={maybe(() => product.id)} > product.thumbnail.url)} + data-tc="name" > {maybe(() => product.name, )} @@ -303,7 +306,10 @@ export const ProductList = withStyles(styles, { name: "ProductList" })( column="productType" displayColumns={settings.columns} > - + {product && product.productType ? ( product.productType.name ) : ( @@ -315,7 +321,11 @@ export const ProductList = withStyles(styles, { name: "ProductList" })( column="isPublished" displayColumns={settings.columns} > - + product.isAvailable)} + > {product && maybe(() => product.isAvailable !== undefined) ? ( {maybe(() => { const attribute = product.attributes.find( diff --git a/src/storybook/__snapshots__/Stories.test.ts.snap b/src/storybook/__snapshots__/Stories.test.ts.snap index e6afd2f19..1406b47f9 100644 --- a/src/storybook/__snapshots__/Stories.test.ts.snap +++ b/src/storybook/__snapshots__/Stories.test.ts.snap @@ -94324,6 +94324,8 @@ exports[`Storyshots Views / Products / Product list default 1`] = ` > Paint
Paint
Paint
Juice
Juice
Juice
Juice
Juice
Juice
Juice
Juice
Top (clothing)
Top (clothing)
Top (clothing)
Top (clothing)
Top (clothing)
Top (clothing)
Top (clothing)
Top (clothing)
Cushion
Paint
Paint
Paint
Juice
Juice
Juice
Juice
Juice
Juice
Juice
Juice
Top (clothing)
Top (clothing)
Top (clothing)
Top (clothing)
Top (clothing)
Top (clothing)
Top (clothing)
Top (clothing)
Cushion
Date: Fri, 27 Sep 2019 15:27:11 +0200 Subject: [PATCH 19/23] Remove copied component --- src/components/ProductList/ProductList.tsx | 344 --------------------- src/components/ProductList/index.ts | 1 - 2 files changed, 345 deletions(-) delete mode 100644 src/components/ProductList/ProductList.tsx delete mode 100644 src/components/ProductList/index.ts diff --git a/src/components/ProductList/ProductList.tsx b/src/components/ProductList/ProductList.tsx deleted file mode 100644 index b2fedbd03..000000000 --- a/src/components/ProductList/ProductList.tsx +++ /dev/null @@ -1,344 +0,0 @@ -import { - createStyles, - Theme, - withStyles, - WithStyles -} from "@material-ui/core/styles"; -import Table from "@material-ui/core/Table"; -import TableBody from "@material-ui/core/TableBody"; -import TableCell from "@material-ui/core/TableCell"; -import TableFooter from "@material-ui/core/TableFooter"; -import TableRow from "@material-ui/core/TableRow"; -import classNames from "classnames"; -import React from "react"; -import { FormattedMessage, useIntl } from "react-intl"; - -import TableCellAvatar, { - AVATAR_MARGIN -} from "@saleor/components/TableCellAvatar"; -import { ProductListColumns } from "@saleor/config"; -import { maybe, renderCollection } from "@saleor/misc"; -import { - getAttributeIdFromColumnValue, - isAttributeColumnValue -} from "@saleor/products/components/ProductListPage/utils"; -import { AvailableInGridAttributes_grid_edges_node } from "@saleor/products/types/AvailableInGridAttributes"; -import { ProductList_products_edges_node } from "@saleor/products/types/ProductList"; -import { ListActions, ListProps } from "@saleor/types"; -import TDisplayColumn from "@saleor/utils/columns/DisplayColumn"; -import Checkbox from "../Checkbox"; -import Money from "../Money"; -import Skeleton from "../Skeleton"; -import StatusLabel from "../StatusLabel"; -import TableHead from "../TableHead"; -import TablePagination from "../TablePagination"; - -const styles = (theme: Theme) => - createStyles({ - [theme.breakpoints.up("lg")]: { - colName: { - width: "auto" - }, - colPrice: { - width: 200 - }, - colPublished: { - width: 200 - }, - colType: { - width: 200 - } - }, - colAttribute: { - width: 150 - }, - colFill: { - padding: 0, - width: "100%" - }, - colName: { - "&$colNameFixed": { - width: 250 - }, - paddingLeft: 0 - }, - colNameFixed: {}, - colNameHeader: { - marginLeft: AVATAR_MARGIN - }, - colPrice: { - textAlign: "right" - }, - colPublished: {}, - colType: {}, - link: { - cursor: "pointer" - }, - table: { - tableLayout: "fixed" - }, - tableContainer: { - overflowX: "scroll" - }, - textLeft: { - textAlign: "left" - }, - textRight: { - textAlign: "right" - } - }); - -interface ProductListProps - extends ListProps, - ListActions, - WithStyles { - gridAttributes: AvailableInGridAttributes_grid_edges_node[]; - products: ProductList_products_edges_node[]; -} - -export const ProductList = withStyles(styles, { name: "ProductList" })( - ({ - classes, - settings, - disabled, - isChecked, - gridAttributes, - pageInfo, - products, - selected, - toggle, - toggleAll, - toolbar, - onNextPage, - onPreviousPage, - onUpdateListSettings, - onRowClick - }: ProductListProps) => { - const intl = useIntl(); - - const DisplayColumn: React.FC<{ column: ProductListColumns }> = props => ( - - ); - - const gridAttributesFromSettings = settings.columns.filter( - isAttributeColumnValue - ); - const numberOfColumns = 2 + settings.columns.length; - - return ( -
- - - - - - - - - - - {gridAttributesFromSettings.map(gridAttribute => ( - - ))} - - - - - - 4 - })} - > - - - - - - - - - - - - - - - {gridAttributesFromSettings.map(gridAttributeFromSettings => ( - - {maybe( - () => - gridAttributes.find( - gridAttribute => - getAttributeIdFromColumnValue( - gridAttributeFromSettings - ) === gridAttribute.id - ).name, - - )} - - ))} - - - - - - - - - - - - - {renderCollection( - products, - product => { - const isSelected = product ? isChecked(product.id) : false; - - return ( - - - toggle(product.id)} - /> - - product.thumbnail.url)} - data-tc="name" - > - {maybe(() => product.name, )} - - - - {product && product.productType ? ( - product.productType.name - ) : ( - - )} - - - - product.isAvailable)} - > - {product && - maybe(() => product.isAvailable !== undefined) ? ( - - ) : ( - - )} - - - {gridAttributesFromSettings.map(gridAttribute => { - const attribute = maybe(() => - product.attributes.find( - attribute => - attribute.attribute.id === - getAttributeIdFromColumnValue(gridAttribute) - ) - ); - const attributeValues = attribute - ? attribute.values.map(value => value.name).join(", ") - : "-"; - - return ( - attribute.attribute.id - )} - > - {attribute ? attributeValues : } - - ); - })} - - - {maybe(() => product.basePrice) && - maybe(() => product.basePrice.amount) !== undefined && - maybe(() => product.basePrice.currency) !== - undefined ? ( - - ) : ( - - )} - - - - ); - }, - () => ( - - - - - - ) - )} - -
-
- ); - } -); -ProductList.displayName = "ProductList"; -export default ProductList; diff --git a/src/components/ProductList/index.ts b/src/components/ProductList/index.ts deleted file mode 100644 index 17fd4319e..000000000 --- a/src/components/ProductList/index.ts +++ /dev/null @@ -1 +0,0 @@ -export { default } from "./ProductList"; From eb68e2c0fc918a0c0d715ddf11a959f1a93f1335 Mon Sep 17 00:00:00 2001 From: dominik-zeglen Date: Fri, 27 Sep 2019 15:42:16 +0200 Subject: [PATCH 20/23] Pass props to TableCell --- .../TableCellAvatar/TableCellAvatar.tsx | 5 ++- .../__snapshots__/Stories.test.ts.snap | 41 +++++++++++++++++++ 2 files changed, 44 insertions(+), 2 deletions(-) diff --git a/src/components/TableCellAvatar/TableCellAvatar.tsx b/src/components/TableCellAvatar/TableCellAvatar.tsx index 893ebcc8a..e35d9c8d0 100644 --- a/src/components/TableCellAvatar/TableCellAvatar.tsx +++ b/src/components/TableCellAvatar/TableCellAvatar.tsx @@ -52,9 +52,10 @@ const TableCellAvatar = withStyles(styles, { name: "TableCellAvatar" })( children, className, thumbnail, - avatarProps + avatarProps, + ...props }: TableCellAvatarProps) => ( - +
{thumbnail === undefined ? ( diff --git a/src/storybook/__snapshots__/Stories.test.ts.snap b/src/storybook/__snapshots__/Stories.test.ts.snap index 1406b47f9..21cfb6bbc 100644 --- a/src/storybook/__snapshots__/Stories.test.ts.snap +++ b/src/storybook/__snapshots__/Stories.test.ts.snap @@ -94344,6 +94344,7 @@ exports[`Storyshots Views / Products / Product list default 1`] = `
Date: Mon, 30 Sep 2019 13:25:04 +0200 Subject: [PATCH 21/23] Fix staff return link --- src/staff/views/StaffList/StaffList.tsx | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/staff/views/StaffList/StaffList.tsx b/src/staff/views/StaffList/StaffList.tsx index 0c07ecb56..01322054a 100644 --- a/src/staff/views/StaffList/StaffList.tsx +++ b/src/staff/views/StaffList/StaffList.tsx @@ -1,4 +1,5 @@ import React from "react"; +import urlJoin from "url-join"; import useListSettings from "@saleor/hooks/useListSettings"; import useNavigator from "@saleor/hooks/useNavigator"; @@ -8,10 +9,12 @@ import usePaginator, { } from "@saleor/hooks/usePaginator"; import { useIntl } from "react-intl"; +import { newPasswordUrl } from "@saleor/auth/urls"; import DeleteFilterTabDialog from "@saleor/components/DeleteFilterTabDialog"; import SaveFilterTabDialog, { SaveFilterTabDialogFormData } from "@saleor/components/SaveFilterTabDialog"; +import { APP_MOUNT_URI } from "@saleor/config"; import { configurationMenuUrl } from "@saleor/configuration"; import { commonMessages } from "@saleor/intl"; import { getMutationState, maybe } from "@saleor/misc"; @@ -146,6 +149,11 @@ export const StaffList: React.StatelessComponent = ({ permissions: variables.fullAccess ? data.shop.permissions.map(perm => perm.code) : undefined, + redirectUrl: urlJoin( + window.location.origin, + APP_MOUNT_URI === "/" ? "" : APP_MOUNT_URI, + newPasswordUrl().replace(/\?/, "") + ), sendPasswordEmail: true } } From 4a7323e35701070b6246885c30e1ec55ffb09393 Mon Sep 17 00:00:00 2001 From: dominik-zeglen Date: Mon, 30 Sep 2019 13:27:14 +0200 Subject: [PATCH 22/23] Update changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ad9b3bb7b..aaca9b4b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -27,3 +27,4 @@ All notable, unreleased changes to this project will be documented in this file. - Fix navigation - #182 by @benekex2 - Add testcafe tags to attributes, categories, collections and product types - #178 by @dominik-zeglen - Fix input error style - #183 by @benekex2 +- Fix staff return link - #190 by @dominik-zeglen From 0f06004286ad6e183e902dc68c4a53931b55d361 Mon Sep 17 00:00:00 2001 From: dominik-zeglen Date: Mon, 30 Sep 2019 13:33:50 +0200 Subject: [PATCH 23/23] Fix weight based shipping adding --- .../views/ShippingZoneDetails/ShippingZoneDetailsDialogs.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.tsx b/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.tsx index 6f97178d8..f0b7a4ea4 100644 --- a/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.tsx +++ b/src/shipping/views/ShippingZoneDetails/ShippingZoneDetailsDialogs.tsx @@ -151,7 +151,7 @@ const ShippingZoneDetailsDialogs: React.StatelessComponent< name: formData.name, price: formData.isFree ? 0 : parseFloat(formData.price), shippingZone: id, - type: ShippingMethodTypeEnum.PRICE + type: params.type } }) }