@deenruv/admin-dashboard 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +23 -0
- package/README.md +30 -0
- package/dist/@types/resources.js +51 -0
- package/dist/DeenruvAdminPanel.js +118 -0
- package/dist/DeenruvDeveloperIndicator.js +57 -0
- package/dist/components/Aexol.js +4 -0
- package/dist/components/BrandLogo.js +22 -0
- package/dist/components/CanLeaveRouteDialog.js +8 -0
- package/dist/components/DataTable.js +13 -0
- package/dist/components/DeleteDialog.js +6 -0
- package/dist/components/DuplicateEntry.js +46 -0
- package/dist/components/GlobalSearch.js +134 -0
- package/dist/components/History/AddEntryForm.js +29 -0
- package/dist/components/History/DeleteEntryDialog.js +25 -0
- package/dist/components/History/EditEntryDialog.js +32 -0
- package/dist/components/History/History.js +13 -0
- package/dist/components/History/ModifyHistoryInfo.js +6 -0
- package/dist/components/History/Timeline.js +53 -0
- package/dist/components/History/index.js +5 -0
- package/dist/components/Menu/ActiveAdmins.js +24 -0
- package/dist/components/Menu/ChannelSwitcher.js +20 -0
- package/dist/components/Menu/LanguagesDropdown.js +26 -0
- package/dist/components/Menu/Navigation.js +270 -0
- package/dist/components/Menu/NavigationFooter.js +12 -0
- package/dist/components/Menu/Notifications.js +90 -0
- package/dist/components/Menu/index.js +67 -0
- package/dist/components/index.js +6 -0
- package/dist/graphql/base.js +95 -0
- package/dist/graphql/collections.js +94 -0
- package/dist/graphql/draft_order.js +307 -0
- package/dist/graphql/orders.js +157 -0
- package/dist/graphql/products.js +230 -0
- package/dist/graphql/scalars.js +22 -0
- package/dist/i18.js +13 -0
- package/dist/index.css +161 -0
- package/dist/index.d.ts +11 -0
- package/dist/index.js +1 -0
- package/dist/locales/en/admins.json +57 -0
- package/dist/locales/en/assets.json +69 -0
- package/dist/locales/en/channels.json +66 -0
- package/dist/locales/en/collections.json +145 -0
- package/dist/locales/en/common.json +1127 -0
- package/dist/locales/en/countries.json +50 -0
- package/dist/locales/en/customerGroups.json +6 -0
- package/dist/locales/en/customers.json +109 -0
- package/dist/locales/en/dashboard.json +34 -0
- package/dist/locales/en/facets.json +78 -0
- package/dist/locales/en/globalSettings.json +15 -0
- package/dist/locales/en/index.js +52 -0
- package/dist/locales/en/orders.json +932 -0
- package/dist/locales/en/paymentMethods.json +59 -0
- package/dist/locales/en/permissions.json +94 -0
- package/dist/locales/en/products.json +194 -0
- package/dist/locales/en/promotions.json +65 -0
- package/dist/locales/en/roles.json +59 -0
- package/dist/locales/en/sellers.json +41 -0
- package/dist/locales/en/shippingMethods.json +84 -0
- package/dist/locales/en/stockLocations.json +40 -0
- package/dist/locales/en/system.json +41 -0
- package/dist/locales/en/table.json +201 -0
- package/dist/locales/en/taxCategories.json +47 -0
- package/dist/locales/en/taxRates.json +56 -0
- package/dist/locales/en/zones.json +47 -0
- package/dist/locales/index.js +2 -0
- package/dist/locales/pl/admins.json +57 -0
- package/dist/locales/pl/assets.json +69 -0
- package/dist/locales/pl/channels.json +66 -0
- package/dist/locales/pl/collections.json +145 -0
- package/dist/locales/pl/common.json +1128 -0
- package/dist/locales/pl/countries.json +50 -0
- package/dist/locales/pl/customerGroups.json +6 -0
- package/dist/locales/pl/customers.json +109 -0
- package/dist/locales/pl/dashboard.json +34 -0
- package/dist/locales/pl/facets.json +78 -0
- package/dist/locales/pl/globalSettings.json +15 -0
- package/dist/locales/pl/index.js +52 -0
- package/dist/locales/pl/orders.json +932 -0
- package/dist/locales/pl/paymentMethods.json +59 -0
- package/dist/locales/pl/permissions.json +94 -0
- package/dist/locales/pl/products.json +194 -0
- package/dist/locales/pl/promotions.json +65 -0
- package/dist/locales/pl/roles.json +59 -0
- package/dist/locales/pl/sellers.json +41 -0
- package/dist/locales/pl/shippingMethods.json +84 -0
- package/dist/locales/pl/stockLocations.json +40 -0
- package/dist/locales/pl/system.json +41 -0
- package/dist/locales/pl/table.json +201 -0
- package/dist/locales/pl/taxCategories.json +47 -0
- package/dist/locales/pl/taxRates.json +56 -0
- package/dist/locales/pl/zones.json +47 -0
- package/dist/notifications/OrderStatusNotification.js +47 -0
- package/dist/notifications/SystemStatusNotification.js +19 -0
- package/dist/pages/Custom404.js +5 -0
- package/dist/pages/LoginScreen.js +37 -0
- package/dist/pages/Root.js +252 -0
- package/dist/pages/admins/Detail.js +72 -0
- package/dist/pages/admins/List.js +56 -0
- package/dist/pages/admins/_components/AdminDetailView.js +34 -0
- package/dist/pages/admins/_components/RolesCard.js +31 -0
- package/dist/pages/admins/index.js +2 -0
- package/dist/pages/assets/List.js +82 -0
- package/dist/pages/assets/_components/Asset.js +114 -0
- package/dist/pages/assets/_components/AssetListView.js +29 -0
- package/dist/pages/assets/_components/EditAssetDialog.js +85 -0
- package/dist/pages/assets/_components/UploadAssetDialog.js +133 -0
- package/dist/pages/assets/_components/UploadProgress.js +20 -0
- package/dist/pages/assets/index.js +1 -0
- package/dist/pages/channels/Detail.js +149 -0
- package/dist/pages/channels/List.js +46 -0
- package/dist/pages/channels/_components/ChannelDetailView.js +51 -0
- package/dist/pages/channels/_components/DefaultsCard.js +25 -0
- package/dist/pages/channels/index.js +2 -0
- package/dist/pages/collections/Detail.js +61 -0
- package/dist/pages/collections/List.js +135 -0
- package/dist/pages/collections/_components/CollectionDetailView.js +52 -0
- package/dist/pages/collections/_components/CollectionProductVariantsDrawer.js +28 -0
- package/dist/pages/collections/_components/CombinationMode.js +6 -0
- package/dist/pages/collections/_components/ContentsCard.js +43 -0
- package/dist/pages/collections/_components/ContentsTable.js +102 -0
- package/dist/pages/collections/_components/DeleteCollectionsFromChannel.js +36 -0
- package/dist/pages/collections/_components/FacetsSelector.js +30 -0
- package/dist/pages/collections/_components/FiltersCard.js +101 -0
- package/dist/pages/collections/_components/MoveCollectionsToCollections.js +107 -0
- package/dist/pages/collections/_components/MoveEntityToChannels.js +115 -0
- package/dist/pages/collections/_components/PageHeader.js +11 -0
- package/dist/pages/collections/_components/SelectedCollectionsModal.js +22 -0
- package/dist/pages/collections/_components/VariantsSelector.js +43 -0
- package/dist/pages/collections/consts.js +7 -0
- package/dist/pages/collections/index.js +2 -0
- package/dist/pages/countries/Detail.js +57 -0
- package/dist/pages/countries/List.js +47 -0
- package/dist/pages/countries/_components/CountryDetailView.js +28 -0
- package/dist/pages/countries/index.js +2 -0
- package/dist/pages/customer-groups/Detail.js +76 -0
- package/dist/pages/customer-groups/List.js +41 -0
- package/dist/pages/customer-groups/_components/CustomerGroupsDetailView.js +21 -0
- package/dist/pages/customer-groups/index.js +2 -0
- package/dist/pages/customers/Detail.js +75 -0
- package/dist/pages/customers/List.js +60 -0
- package/dist/pages/customers/_components/Address.js +59 -0
- package/dist/pages/customers/_components/AddressDialog.js +56 -0
- package/dist/pages/customers/_components/AddressForm.js +77 -0
- package/dist/pages/customers/_components/AddressesCard.js +9 -0
- package/dist/pages/customers/_components/CustomerDetailSidebar.js +9 -0
- package/dist/pages/customers/_components/CustomerDetailView.js +41 -0
- package/dist/pages/customers/_components/CustomerGroupsCard.js +46 -0
- package/dist/pages/customers/_components/HistoryTab.js +65 -0
- package/dist/pages/customers/_components/OrdersTab.js +46 -0
- package/dist/pages/customers/_components/PersonalDataCard.js +6 -0
- package/dist/pages/customers/_components/VerifiedCard.js +6 -0
- package/dist/pages/customers/index.js +2 -0
- package/dist/pages/dashboard/Dashboard.js +10 -0
- package/dist/pages/dashboard/index.js +1 -0
- package/dist/pages/extensions/Extensions.js +74 -0
- package/dist/pages/extensions/index.js +1 -0
- package/dist/pages/facets/Detail.js +56 -0
- package/dist/pages/facets/List.js +48 -0
- package/dist/pages/facets/_components/AddFacetValueDialog.js +105 -0
- package/dist/pages/facets/_components/ColorSample.js +18 -0
- package/dist/pages/facets/_components/FacetDetailView.js +98 -0
- package/dist/pages/facets/index.js +2 -0
- package/dist/pages/global-settings/GlobalSettingsComponent.js +30 -0
- package/dist/pages/global-settings/index.js +71 -0
- package/dist/pages/index.js +25 -0
- package/dist/pages/orders/Detail.js +21 -0
- package/dist/pages/orders/List.js +132 -0
- package/dist/pages/orders/_components/AddPaymentDialog.js +50 -0
- package/dist/pages/orders/_components/AddressCard.js +260 -0
- package/dist/pages/orders/_components/CancelAndRefundDialog.js +29 -0
- package/dist/pages/orders/_components/ChangesRegister.js +68 -0
- package/dist/pages/orders/_components/ChangesRegisterTable.js +18 -0
- package/dist/pages/orders/_components/CouponCodesCard.js +85 -0
- package/dist/pages/orders/_components/CustomComponent.js +21 -0
- package/dist/pages/orders/_components/CustomerSelectCard.js +117 -0
- package/dist/pages/orders/_components/EditNoteButton.js +10 -0
- package/dist/pages/orders/_components/FulfillmentModal.js +85 -0
- package/dist/pages/orders/_components/LineItem.js +7 -0
- package/dist/pages/orders/_components/ManualOrderChangeModal.js +47 -0
- package/dist/pages/orders/_components/ModifyAcceptModal.js +22 -0
- package/dist/pages/orders/_components/ModifyingCard.js +77 -0
- package/dist/pages/orders/_components/OrderHistory.js +59 -0
- package/dist/pages/orders/_components/OrderLineActionModal/ActionQuantityPrice.js +58 -0
- package/dist/pages/orders/_components/OrderLineActionModal/index.js +7 -0
- package/dist/pages/orders/_components/OrderLineActionModal/types.js +1 -0
- package/dist/pages/orders/_components/OrderLineCustomFields.js +26 -0
- package/dist/pages/orders/_components/OrderSummary.js +10 -0
- package/dist/pages/orders/_components/PaymentMetadata.js +6 -0
- package/dist/pages/orders/_components/Payments.js +113 -0
- package/dist/pages/orders/_components/PossibleOrderStates.js +54 -0
- package/dist/pages/orders/_components/PriceChangedInfo.js +16 -0
- package/dist/pages/orders/_components/ProductsCard.js +308 -0
- package/dist/pages/orders/_components/ProductsTable.js +29 -0
- package/dist/pages/orders/_components/PromotionsList.js +73 -0
- package/dist/pages/orders/_components/RealizationCard.js +98 -0
- package/dist/pages/orders/_components/RefundCard.js +11 -0
- package/dist/pages/orders/_components/RefundPaymentCard.js +13 -0
- package/dist/pages/orders/_components/ShippingMethod.js +112 -0
- package/dist/pages/orders/_components/SpecialLineItem.js +7 -0
- package/dist/pages/orders/_components/SurchargeCard.js +99 -0
- package/dist/pages/orders/_components/SurchargeTable.js +8 -0
- package/dist/pages/orders/_components/TaxSummary.js +11 -0
- package/dist/pages/orders/_components/ToRealizationForm.js +64 -0
- package/dist/pages/orders/_components/TopActions.js +219 -0
- package/dist/pages/orders/_components/index.js +25 -0
- package/dist/pages/orders/index.js +2 -0
- package/dist/pages/payment-methods/Detail.js +67 -0
- package/dist/pages/payment-methods/List.js +41 -0
- package/dist/pages/payment-methods/_components/OptionsCard.js +60 -0
- package/dist/pages/payment-methods/_components/PaymentMethodDetailView.js +53 -0
- package/dist/pages/payment-methods/index.js +2 -0
- package/dist/pages/product-variants/Detail.js +4 -0
- package/dist/pages/product-variants/List.js +76 -0
- package/dist/pages/product-variants/index.js +2 -0
- package/dist/pages/products/Detail.js +75 -0
- package/dist/pages/products/List.js +79 -0
- package/dist/pages/products/_components/AddOptionGroupDialog.js +65 -0
- package/dist/pages/products/_components/AssetsCard.js +35 -0
- package/dist/pages/products/_components/BasicFieldsCard.js +6 -0
- package/dist/pages/products/_components/ChannelsCard.js +6 -0
- package/dist/pages/products/_components/CollectionsCard.js +6 -0
- package/dist/pages/products/_components/Container.js +4 -0
- package/dist/pages/products/_components/DiscountRatingCard.js +6 -0
- package/dist/pages/products/_components/FacetValuesCard.js +6 -0
- package/dist/pages/products/_components/ImagesCard.js +6 -0
- package/dist/pages/products/_components/OptionGroup.js +93 -0
- package/dist/pages/products/_components/OptionValueCard.js +59 -0
- package/dist/pages/products/_components/OptionsCard.js +38 -0
- package/dist/pages/products/_components/OptionsTab.js +40 -0
- package/dist/pages/products/_components/PriceCard.js +27 -0
- package/dist/pages/products/_components/ProductDetailSidebar.js +30 -0
- package/dist/pages/products/_components/ProductDetailView.js +54 -0
- package/dist/pages/products/_components/SettingsCard.js +6 -0
- package/dist/pages/products/_components/StockCard.js +40 -0
- package/dist/pages/products/_components/Variant.js +149 -0
- package/dist/pages/products/_components/VariantsTab.js +46 -0
- package/dist/pages/products/index.js +2 -0
- package/dist/pages/promotions/Detail.js +80 -0
- package/dist/pages/promotions/List.js +38 -0
- package/dist/pages/promotions/_components/ActionsCard.js +67 -0
- package/dist/pages/promotions/_components/BasicFieldsCard.js +6 -0
- package/dist/pages/promotions/_components/ConditionsCard.js +70 -0
- package/dist/pages/promotions/_components/CustomerGroupsSelector.js +25 -0
- package/dist/pages/promotions/_components/EnabledCard.js +6 -0
- package/dist/pages/promotions/_components/OptionsCard.js +6 -0
- package/dist/pages/promotions/_components/PromotionDetailSidebar.js +15 -0
- package/dist/pages/promotions/_components/PromotionDetailView.js +66 -0
- package/dist/pages/promotions/_components/PromotionFieldRender.js +4 -0
- package/dist/pages/promotions/index.js +2 -0
- package/dist/pages/roles/Detail.js +72 -0
- package/dist/pages/roles/List.js +70 -0
- package/dist/pages/roles/_components/PermissionsCard.js +7 -0
- package/dist/pages/roles/_components/PermissionsTable.js +42 -0
- package/dist/pages/roles/_components/RoleDetailView.js +49 -0
- package/dist/pages/roles/index.js +2 -0
- package/dist/pages/sellers/Detail.js +48 -0
- package/dist/pages/sellers/List.js +37 -0
- package/dist/pages/sellers/_components/SellerDetailView.js +20 -0
- package/dist/pages/sellers/index.js +2 -0
- package/dist/pages/shipping-methods/Detail.js +105 -0
- package/dist/pages/shipping-methods/List.js +40 -0
- package/dist/pages/shipping-methods/_components/CalculatorCard.js +79 -0
- package/dist/pages/shipping-methods/_components/CheckerCard.js +76 -0
- package/dist/pages/shipping-methods/_components/Lines.js +20 -0
- package/dist/pages/shipping-methods/_components/ShippingMethodDetailView.js +67 -0
- package/dist/pages/shipping-methods/_components/TestCard.js +62 -0
- package/dist/pages/shipping-methods/index.js +2 -0
- package/dist/pages/status/Status.js +6 -0
- package/dist/pages/status/_components/FilterToolbar.js +29 -0
- package/dist/pages/status/_components/Health.js +21 -0
- package/dist/pages/status/_components/JobResultPopover.js +8 -0
- package/dist/pages/status/_components/Jobs.js +199 -0
- package/dist/pages/status/_components/JsonExplorer.js +44 -0
- package/dist/pages/status/_components/JsonPopup.js +8 -0
- package/dist/pages/status/index.js +1 -0
- package/dist/pages/stock-locations/Detail.js +77 -0
- package/dist/pages/stock-locations/List.js +38 -0
- package/dist/pages/stock-locations/_components/StockLocationDetailView.js +22 -0
- package/dist/pages/stock-locations/index.js +2 -0
- package/dist/pages/tax-categories/Detail.js +85 -0
- package/dist/pages/tax-categories/List.js +46 -0
- package/dist/pages/tax-categories/_components/TaxCategoryDetailView.js +24 -0
- package/dist/pages/tax-categories/index.js +2 -0
- package/dist/pages/tax-rates/Detail.js +62 -0
- package/dist/pages/tax-rates/List.js +64 -0
- package/dist/pages/tax-rates/_components/TaxRateDetailView.js +64 -0
- package/dist/pages/tax-rates/index.js +2 -0
- package/dist/pages/zones/Detail.js +86 -0
- package/dist/pages/zones/List.js +52 -0
- package/dist/pages/zones/_components/ZoneDetailView.js +49 -0
- package/dist/pages/zones/index.js +2 -0
- package/dist/version.js +1 -0
- package/package.json +122 -0
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
{
|
|
2
|
+
"create": "Create a payment method",
|
|
3
|
+
"edit": "Edit payment method",
|
|
4
|
+
"baseInfoCode": "Code: {{value}}",
|
|
5
|
+
"baseInfoId": "Id: {{value}}",
|
|
6
|
+
"baseInfoCreated": "Created: {{value}}",
|
|
7
|
+
"baseInfoUpdated": "Updated: {{value}}",
|
|
8
|
+
"buttonDisabledTooltip": "Fill in all required fields",
|
|
9
|
+
"noChangesTooltip": "No changes have been made",
|
|
10
|
+
"table": {
|
|
11
|
+
"id": "Id",
|
|
12
|
+
"name": "Name",
|
|
13
|
+
"code": "Code",
|
|
14
|
+
"enabled": "Included",
|
|
15
|
+
"modalTitle": "Modal title",
|
|
16
|
+
"createdAt": "Established in",
|
|
17
|
+
"updatedAt": "Updated by",
|
|
18
|
+
"columns": "Columns"
|
|
19
|
+
},
|
|
20
|
+
"details": {
|
|
21
|
+
"basic": {
|
|
22
|
+
"title": "Basic information",
|
|
23
|
+
"name": "Name",
|
|
24
|
+
"description": "Description",
|
|
25
|
+
"code": "Code",
|
|
26
|
+
"enabled": "Included"
|
|
27
|
+
},
|
|
28
|
+
"modal": {
|
|
29
|
+
"title": "Modal",
|
|
30
|
+
"name": "Modal title",
|
|
31
|
+
"description": "Module description",
|
|
32
|
+
"additionalDescription": "Modal additional description"
|
|
33
|
+
},
|
|
34
|
+
"options": {
|
|
35
|
+
"title": "Options",
|
|
36
|
+
"handler": "Payment processing",
|
|
37
|
+
"checker": "Payment eligibility check module"
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
"toasts": {
|
|
41
|
+
"paymentMethodLoadingError": "Failed to load payment method with identifier {{value}}",
|
|
42
|
+
"paymentMethodUpdateSuccess": "Payment method has been successfully updated",
|
|
43
|
+
"paymentMethodUpdateError": "An error occurred:",
|
|
44
|
+
"paymentMethodCreatedSuccess": "Payment method was successfully created",
|
|
45
|
+
"paymentMethodCreatedError": "Payment method could not be created",
|
|
46
|
+
"paymentMethodDeleteSuccess": "Payment method was successfully deleted",
|
|
47
|
+
"paymentMethodDeleteError": "Payment method could not be deleted"
|
|
48
|
+
},
|
|
49
|
+
"deletePaymentMethod": {
|
|
50
|
+
"title": "Remove payment method",
|
|
51
|
+
"description": "Are you sure you want to delete this payment method?",
|
|
52
|
+
"successMessage": "The payment method has been deleted."
|
|
53
|
+
},
|
|
54
|
+
"validation": {
|
|
55
|
+
"codeRequired": "The code is required",
|
|
56
|
+
"handlerCodeRequired": "Payment processing is required",
|
|
57
|
+
"handlerArgsRequired": "Fill in all fields"
|
|
58
|
+
}
|
|
59
|
+
}
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
{
|
|
2
|
+
"GlobalSettings": {
|
|
3
|
+
"title": "Global settings",
|
|
4
|
+
"description": "Grants rights to GlobalSettings"
|
|
5
|
+
},
|
|
6
|
+
"Catalog": {
|
|
7
|
+
"title": "Catalogue",
|
|
8
|
+
"description": "Grants rights to products, aspects, resources, collections"
|
|
9
|
+
},
|
|
10
|
+
"Settings": {
|
|
11
|
+
"title": "Settings",
|
|
12
|
+
"description": "Grants rights to PaymentMethods, ShippingMethods, TaxCategories, TaxRates, Zones, Countries, System and GlobalSettings"
|
|
13
|
+
},
|
|
14
|
+
"Administrator": {
|
|
15
|
+
"title": "Administrator",
|
|
16
|
+
"description": "Grants administrator privileges"
|
|
17
|
+
},
|
|
18
|
+
"Asset": {
|
|
19
|
+
"title": "Assets",
|
|
20
|
+
"description": "Grants rights to an asset"
|
|
21
|
+
},
|
|
22
|
+
"Channel": {
|
|
23
|
+
"title": "Channel",
|
|
24
|
+
"description": "Grants channel rights"
|
|
25
|
+
},
|
|
26
|
+
"Collection": {
|
|
27
|
+
"title": "Collection",
|
|
28
|
+
"description": "Grants rights to collections"
|
|
29
|
+
},
|
|
30
|
+
"Country": {
|
|
31
|
+
"title": "Country",
|
|
32
|
+
"description": "Grants country entitlements"
|
|
33
|
+
},
|
|
34
|
+
"Customer": {
|
|
35
|
+
"title": "Client",
|
|
36
|
+
"description": "Grants rights to the client"
|
|
37
|
+
},
|
|
38
|
+
"CustomerGroup": {
|
|
39
|
+
"title": "CustomerGroup",
|
|
40
|
+
"description": "Grants rights to CustomerGroup"
|
|
41
|
+
},
|
|
42
|
+
"Facet": {
|
|
43
|
+
"title": "Guy",
|
|
44
|
+
"description": "Grants authority to Facet"
|
|
45
|
+
},
|
|
46
|
+
"Order": {
|
|
47
|
+
"title": "Order",
|
|
48
|
+
"description": "Grants entitlement to order"
|
|
49
|
+
},
|
|
50
|
+
"PaymentMethod": {
|
|
51
|
+
"title": "PaymentMethod",
|
|
52
|
+
"description": "Grants rights to PaymentMethod"
|
|
53
|
+
},
|
|
54
|
+
"Product": {
|
|
55
|
+
"title": "Product",
|
|
56
|
+
"description": "Grants product entitlement"
|
|
57
|
+
},
|
|
58
|
+
"Promotion": {
|
|
59
|
+
"title": "Promotion",
|
|
60
|
+
"description": "Granting of promotion authorisations"
|
|
61
|
+
},
|
|
62
|
+
"ShippingMethod": {
|
|
63
|
+
"title": "ShippingMethod",
|
|
64
|
+
"description": "Grants permissions to ShippingMethod"
|
|
65
|
+
},
|
|
66
|
+
"Tag": {
|
|
67
|
+
"title": "Tag",
|
|
68
|
+
"description": "Grants rights to the tag"
|
|
69
|
+
},
|
|
70
|
+
"TaxCategory": {
|
|
71
|
+
"title": "TaxCategory",
|
|
72
|
+
"description": "Grants rights to TaxCategory"
|
|
73
|
+
},
|
|
74
|
+
"TaxRate": {
|
|
75
|
+
"title": "TaxRate",
|
|
76
|
+
"description": "Grants rights on TaxRate"
|
|
77
|
+
},
|
|
78
|
+
"Seller": {
|
|
79
|
+
"title": "Vendor",
|
|
80
|
+
"description": "Grants powers to the vendor"
|
|
81
|
+
},
|
|
82
|
+
"StockLocation": {
|
|
83
|
+
"title": "StockLocation",
|
|
84
|
+
"description": "Grants rights to StockLocation"
|
|
85
|
+
},
|
|
86
|
+
"System": {
|
|
87
|
+
"title": "System",
|
|
88
|
+
"description": "Grants rights to the System"
|
|
89
|
+
},
|
|
90
|
+
"Zone": {
|
|
91
|
+
"title": "Zone",
|
|
92
|
+
"description": "Grants zone entitlement"
|
|
93
|
+
}
|
|
94
|
+
}
|
|
@@ -0,0 +1,194 @@
|
|
|
1
|
+
{
|
|
2
|
+
"add": "Dodaj produkt",
|
|
3
|
+
"assets": "Aktywa",
|
|
4
|
+
"baseInfoId": "Id: {{value}}",
|
|
5
|
+
"baseInfoCreated": "Utworzono: {{value}}",
|
|
6
|
+
"baseInfoUpdated": "Zaktualizowano: {{value}}",
|
|
7
|
+
"facetPlaceholder": "Dodaj aspekty",
|
|
8
|
+
"group": "Grupa opcji",
|
|
9
|
+
"image": "Obraz",
|
|
10
|
+
"name": "Nazwa",
|
|
11
|
+
"slug": "Skrócona nazwa (slug)",
|
|
12
|
+
"product": "Produkt",
|
|
13
|
+
"variants": "Warianty",
|
|
14
|
+
"enabled": "Włączone",
|
|
15
|
+
"facets": "Aspekty",
|
|
16
|
+
"collections": "Kolekcje",
|
|
17
|
+
"channels": "Kanały",
|
|
18
|
+
"options": "Opcje",
|
|
19
|
+
"optionGroups": "Grupy opcji",
|
|
20
|
+
"editOptions": "Edycja opcji",
|
|
21
|
+
"editOption": "Opcja edycji",
|
|
22
|
+
"sku": "sku",
|
|
23
|
+
"price": "cena",
|
|
24
|
+
"tax_category": "kategoria podatkowa",
|
|
25
|
+
"taxes": "podatki",
|
|
26
|
+
"editProduct": "Edytuj produkt",
|
|
27
|
+
"deleteProduct": "Usuń produkt",
|
|
28
|
+
"addPrice": "Dodaj cenę",
|
|
29
|
+
"seo": "SEO",
|
|
30
|
+
"color": "Kolor",
|
|
31
|
+
"colors": "Kolory",
|
|
32
|
+
"colorPalettes": "Palety kolorów",
|
|
33
|
+
"otherOptions": "Inne opcje",
|
|
34
|
+
"isNew": "Nowość",
|
|
35
|
+
"isHidden": "Ukryty",
|
|
36
|
+
"products": "Produkty",
|
|
37
|
+
"forms": {
|
|
38
|
+
"create": "Utwórz produkt",
|
|
39
|
+
"update": "Aktualizuj produkt",
|
|
40
|
+
"createVariant": "Utwórz wariant",
|
|
41
|
+
"updateVariant": "Aktualizacja wariantu",
|
|
42
|
+
"removeVariant": "Usuń wariant",
|
|
43
|
+
"removeVariantFromChannel": "Usuń wariant z kanału"
|
|
44
|
+
},
|
|
45
|
+
"optionsTab": {
|
|
46
|
+
"placeholder": "Wpisz, aby dodać nową wartość opcji",
|
|
47
|
+
"groupName": "Nazwa grupy",
|
|
48
|
+
"values": "Wartości opcji",
|
|
49
|
+
"emptyState": {
|
|
50
|
+
"title": "Nic tutaj nie ma",
|
|
51
|
+
"description": "Nie ma jeszcze grup opcji. Użyj przycisku powyżej, aby je dodać."
|
|
52
|
+
},
|
|
53
|
+
"noOptionValues": "Dodaj opcje powyżej, aby znaleźć je tutaj"
|
|
54
|
+
},
|
|
55
|
+
"variantsTab": {
|
|
56
|
+
"emptyState": {
|
|
57
|
+
"title": "Nic tutaj nie ma",
|
|
58
|
+
"description": "Nie ma jeszcze żadnych wariantów. Użyj przycisku powyżej, aby je dodać, pod warunkiem, że dodałeś już jakieś opcje. Jeśli nie, utwórz je najpierw w zakładce Opcje."
|
|
59
|
+
}
|
|
60
|
+
},
|
|
61
|
+
"table": {
|
|
62
|
+
"featuredAsset": "Obraz",
|
|
63
|
+
"id": "ID",
|
|
64
|
+
"createdAt": "Utworzono w",
|
|
65
|
+
"updatedAt": "Zaktualizowano w",
|
|
66
|
+
"name": "Nazwa",
|
|
67
|
+
"slug": "Skrócona nazwa (slug)",
|
|
68
|
+
"variants": "Liczba wariantów",
|
|
69
|
+
"collections": "W kolekcjach",
|
|
70
|
+
"inValueCollections": "W kolekcjach {{value}}",
|
|
71
|
+
"openMenu": "Otwórz menu",
|
|
72
|
+
"actions": "Działania",
|
|
73
|
+
"copyId": "Kopiuj id",
|
|
74
|
+
"delete": "Usuń produkt",
|
|
75
|
+
"allVariantsStock": "Zapasy wszystkich wariantów",
|
|
76
|
+
"allocated": "przydzielony",
|
|
77
|
+
"stockOnHand": "Stan magazynowy",
|
|
78
|
+
"stockAllocated": "Zablokowany stan magazynowy",
|
|
79
|
+
"stock": "Stan magazynowy"
|
|
80
|
+
},
|
|
81
|
+
"deleteProductDialog": {
|
|
82
|
+
"button": "Usuń produkt",
|
|
83
|
+
"title": "Czy na pewno?",
|
|
84
|
+
"description": "Produkt zostanie trwale usunięty.",
|
|
85
|
+
"confirm": "Usuń produkt",
|
|
86
|
+
"cancel": "Anuluj"
|
|
87
|
+
},
|
|
88
|
+
"columns": "Kolumny",
|
|
89
|
+
"toasts": {
|
|
90
|
+
"deletionProductErrorToast": "Usunięcie produktu nie powiodło się",
|
|
91
|
+
"deletionProductSuccessToast": "Produkt został pomyślnie usunięty",
|
|
92
|
+
"updateProductErrorToast": "Nie udało się edytować produktu",
|
|
93
|
+
"updateProductSuccessToast": "Produkt został pomyślnie zaktualizowany",
|
|
94
|
+
"createProductSuccessToast": "Produkt utworzony pomyślnie",
|
|
95
|
+
"createProductErrorToast": "Nie udało się utworzyć produktu",
|
|
96
|
+
"fetchProductErrorToast": "Nie udało się pobrać produktu",
|
|
97
|
+
"createProductVariantSuccessToast": "Wariant został utworzony",
|
|
98
|
+
"createProductVariantErrorToast": "Nie udało się utworzyć wariantu",
|
|
99
|
+
"updateProductVariantSuccessToast": "Wariant został zaktualizowany",
|
|
100
|
+
"updateProductVariantErrorToast": "Nie udało się zaktualizować wariantu",
|
|
101
|
+
"deleteProductVariantSuccessToast": "Wariant został usunięty",
|
|
102
|
+
"deleteProductVariantErrorToast": "Nie udało się usunąć wariantu",
|
|
103
|
+
"removeFromChannelProductVariantErrorToast": "Nie udało się usunąć wariantu z kanału",
|
|
104
|
+
"removeFromChannelProductVariantSuccessToast": "Wariant został usunięty z kanału",
|
|
105
|
+
"createOptionSuccessToast": "Wariant utworzony pomyślnie",
|
|
106
|
+
"createOptionInUseToast": "Opcja jest używana przez niektóre warianty. Usuń je najpierw.",
|
|
107
|
+
"createOptionErrorToast": "Nie udało się utworzyć opcji",
|
|
108
|
+
"deleteOptionSuccessToast": "Opcja usunięta pomyślnie",
|
|
109
|
+
"deleteOptionErrorToast": "Nie udało się usunąć opcji",
|
|
110
|
+
"updateOptionSuccessToast": "Opcja została zaktualizowana",
|
|
111
|
+
"updateOptionErrorToast": "Nie udało się zaktualizować opcji",
|
|
112
|
+
"deletionOptionSuccessToast": "Grupa opcji została pomyślnie usunięta",
|
|
113
|
+
"deletionOptionErrorToast": "Nie udało się usunąć grupy opcji",
|
|
114
|
+
"createOptionGroupSuccessToast": "Grupa opcji utworzona pomyślnie",
|
|
115
|
+
"createOptionGroupErrorToast": "Nie udało się utworzyć grupy opcji"
|
|
116
|
+
},
|
|
117
|
+
"details": {
|
|
118
|
+
"addStockLocation": "Dodaj lokalizację zapasów",
|
|
119
|
+
"basicInfo": "Podstawowe informacje",
|
|
120
|
+
"settings": "Ustawienia",
|
|
121
|
+
"customFields": "Pola niestandardowe",
|
|
122
|
+
"facetValues": "Wartość aspektu",
|
|
123
|
+
"image": "Obraz",
|
|
124
|
+
"price": "Cena",
|
|
125
|
+
"featuredAsset": "Polecane aktywa",
|
|
126
|
+
"otherAssets": "Inne aktywa",
|
|
127
|
+
"noFeaturedAsset": "Nie ustalono",
|
|
128
|
+
"noAssets": "Nie ma jeszcze żadnych aktywów",
|
|
129
|
+
"setAsFeatured": "Ustaw jako polecane",
|
|
130
|
+
"editAsset": "Edytuj zdjęcie",
|
|
131
|
+
"removeAsset": "Usuń zasób",
|
|
132
|
+
"usedForColorsDesc": "Użyj tego atrybutu dla facetów, którzy są kolorami",
|
|
133
|
+
"colorsCollectionDesc": "Użyj tego dla ścieżek produktu w KOLORZE (BLAT/CORPUS)",
|
|
134
|
+
"usedForProductCreationsDesc": "Użyj tego atrybutu podczas tworzenia kolekcji kolorów",
|
|
135
|
+
"valueDeleteSuccess": "Wartość zasobu została pomyślnie usunięta",
|
|
136
|
+
"valueDeleteFail": "Wystąpił błąd:",
|
|
137
|
+
"taxRateDescription": "Zawiera podatek w:",
|
|
138
|
+
"stockLevels": "Poziomy zapasów",
|
|
139
|
+
"trackInventory": "Śledzenie stanów magazynowych",
|
|
140
|
+
"track": "Śledzenie",
|
|
141
|
+
"notTrack": "Nie śledź",
|
|
142
|
+
"inherit": "Dziedziczenie z ustawień globalnych",
|
|
143
|
+
"outThreshold": "Próg wyczerpania zapasów",
|
|
144
|
+
"useGlobal": "Użyj wartości globalnej",
|
|
145
|
+
"defaultStock1": "Całkowity poziom zapasów",
|
|
146
|
+
"defaultStock2": "Całkowity poziom zapasów: Przydzielony"
|
|
147
|
+
},
|
|
148
|
+
"customFields": {
|
|
149
|
+
"seo": {
|
|
150
|
+
"title": "Tytuł SEO",
|
|
151
|
+
"description": "Opis SEO",
|
|
152
|
+
"facebookImage": "Obraz SEO na Facebooku",
|
|
153
|
+
"twitterImage": "Obraz SEO na Twitterze"
|
|
154
|
+
},
|
|
155
|
+
"images": {
|
|
156
|
+
"mainImage": "Główny obraz produktu",
|
|
157
|
+
"hoverImage": "Obraz produktu po najechaniu kursorem"
|
|
158
|
+
},
|
|
159
|
+
"textCards": {
|
|
160
|
+
"completionDate": "Data zakończenia",
|
|
161
|
+
"delivery": "Dostawa",
|
|
162
|
+
"payment": "Płatność",
|
|
163
|
+
"materials": "Materiały",
|
|
164
|
+
"finish": "Wykończenie",
|
|
165
|
+
"sizes": "Rozmiary"
|
|
166
|
+
},
|
|
167
|
+
"discountRating": {
|
|
168
|
+
"title": "Ogólne",
|
|
169
|
+
"discountedBy": "Zdyskontowane przez",
|
|
170
|
+
"rating": "Wynik oceny"
|
|
171
|
+
}
|
|
172
|
+
},
|
|
173
|
+
"addOptionGroupDialog": {
|
|
174
|
+
"title": "Dodaj grupę opcji",
|
|
175
|
+
"name": "Nazwa",
|
|
176
|
+
"code": "Kod",
|
|
177
|
+
"cancel": "Anuluj",
|
|
178
|
+
"add": "Dodaj"
|
|
179
|
+
},
|
|
180
|
+
"addVariantDialog": {
|
|
181
|
+
"title": "Dodaj wariant produktu",
|
|
182
|
+
"name": "Nazwa",
|
|
183
|
+
"sku": "SKU",
|
|
184
|
+
"cancel": "Anuluj",
|
|
185
|
+
"add": "Dodaj wariant",
|
|
186
|
+
"new": "Nowy wariant",
|
|
187
|
+
"selectOption": "Wybierz opcję",
|
|
188
|
+
"createBasic": "Dane podstawowe",
|
|
189
|
+
"createOptions": "Opcje"
|
|
190
|
+
},
|
|
191
|
+
"validation": {
|
|
192
|
+
"nameSlugRequired": "Pola nazwy i slug są wymagane"
|
|
193
|
+
}
|
|
194
|
+
}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
{
|
|
2
|
+
"basicInfo": {
|
|
3
|
+
"header": "Basic data",
|
|
4
|
+
"name": "Name",
|
|
5
|
+
"description": "Description"
|
|
6
|
+
},
|
|
7
|
+
"options": {
|
|
8
|
+
"header": "Options",
|
|
9
|
+
"pickDate": "Select date",
|
|
10
|
+
"startsAt": "Start date",
|
|
11
|
+
"endsAt": "End date",
|
|
12
|
+
"couponCode": "Voucher code",
|
|
13
|
+
"usageLimit": "Use limit",
|
|
14
|
+
"perCustomerUsageLimit": "Usage limit per customer"
|
|
15
|
+
},
|
|
16
|
+
"conditions": {
|
|
17
|
+
"header": "Conditions",
|
|
18
|
+
"add": "Add a new condition",
|
|
19
|
+
"emptyState": "There are no conditions yet. Add some.",
|
|
20
|
+
"codes": {
|
|
21
|
+
"customer_group": "The customer is a member of a specific group",
|
|
22
|
+
"minimum_order_amount": "If the order total is greater than X",
|
|
23
|
+
"at_least_n_with_facets": "Buy at least X products with the specified aspects",
|
|
24
|
+
"contains_products": "Buy at least X specified products",
|
|
25
|
+
"buy_x_get_y_free": "Buy X products, get Y products for free"
|
|
26
|
+
},
|
|
27
|
+
"labels": {
|
|
28
|
+
"amount": "Amount",
|
|
29
|
+
"taxInclusive": "Including tax",
|
|
30
|
+
"minimum": "Minimum",
|
|
31
|
+
"amountX": "Amount X",
|
|
32
|
+
"amountY": "Amount Y",
|
|
33
|
+
"Buy amountX of these variants": "Buy X amount of these variants",
|
|
34
|
+
"Get amountY of these variants for free": "Get Y quantity of these variants for free"
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
"actions": {
|
|
38
|
+
"header": "Activities",
|
|
39
|
+
"add": "Add a new activity",
|
|
40
|
+
"emptyState": "There are no actions yet. Add some.",
|
|
41
|
+
"codes": {
|
|
42
|
+
"free_shipping": "Free shipping",
|
|
43
|
+
"order_fixed_discount": "Order discount according to set amount",
|
|
44
|
+
"order_percentage_discount": "Order discount by X%",
|
|
45
|
+
"facet_based_discount": "Discount on products with these aspects by X%",
|
|
46
|
+
"products_percentage_discount": "Discount on certain products by X%",
|
|
47
|
+
"buy_x_get_y_free": "Buy X products, get Y products for free"
|
|
48
|
+
},
|
|
49
|
+
"labels": {
|
|
50
|
+
"discount": "Discount",
|
|
51
|
+
"taxInclusive": "Including tax",
|
|
52
|
+
"minimum": "Minimum",
|
|
53
|
+
"amountX": "Amount X",
|
|
54
|
+
"amountY": "Amount Y",
|
|
55
|
+
"Buy amountX of these variants": "Buy X amount of these variants",
|
|
56
|
+
"Get amountY of these variants for free": "Get Y quantity of these variants for free"
|
|
57
|
+
}
|
|
58
|
+
},
|
|
59
|
+
"validation": {
|
|
60
|
+
"conditionsCode": "At least one condition is required",
|
|
61
|
+
"conditionsArgs": "Fill in all fields",
|
|
62
|
+
"actionsCode": "At least one action is required",
|
|
63
|
+
"actionsArgs": "Fill in all fields"
|
|
64
|
+
}
|
|
65
|
+
}
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
{
|
|
2
|
+
"create": "Create a role",
|
|
3
|
+
"edit": "Edit the role",
|
|
4
|
+
"baseInfoCode": "Code: {{value}}",
|
|
5
|
+
"baseInfoId": "Id: {{value}}",
|
|
6
|
+
"baseInfoCreated": "Created: {{value}}",
|
|
7
|
+
"baseInfoUpdated": "Updated: {{value}}",
|
|
8
|
+
"defaultChannel": "Default channel",
|
|
9
|
+
"buttonDisabledTooltip": "Fill in all required fields",
|
|
10
|
+
"noChangesTooltip": "No changes have been made",
|
|
11
|
+
"table": {
|
|
12
|
+
"id": "Id",
|
|
13
|
+
"name": "Name",
|
|
14
|
+
"description": "Description",
|
|
15
|
+
"code": "Code",
|
|
16
|
+
"permissions": "Entitlements",
|
|
17
|
+
"channels": "Channels",
|
|
18
|
+
"createdAt": "Established in",
|
|
19
|
+
"updatedAt": "Updated by",
|
|
20
|
+
"openMenu": "Open menu",
|
|
21
|
+
"copyId": "Copy identifier",
|
|
22
|
+
"viewRole": "Display role",
|
|
23
|
+
"columns": "Columns",
|
|
24
|
+
"defaultRoleInfo": "This is the default role and cannot be modified"
|
|
25
|
+
},
|
|
26
|
+
"details": {
|
|
27
|
+
"basic": {
|
|
28
|
+
"title": "Basic information",
|
|
29
|
+
"description": "Name",
|
|
30
|
+
"code": "Code",
|
|
31
|
+
"channels": "Channels",
|
|
32
|
+
"channelsPlaceholder": "Add channel"
|
|
33
|
+
},
|
|
34
|
+
"permissions": {
|
|
35
|
+
"title": "Entitlements"
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
"toasts": {
|
|
39
|
+
"roleLoadingError": "Failed to load role with ID {{value}}",
|
|
40
|
+
"roleUpdateSuccess": "The role has been successfully updated",
|
|
41
|
+
"roleUpdateError": "An error occurred:",
|
|
42
|
+
"roleCreatedSuccess": "The role was successfully created",
|
|
43
|
+
"roleCreatedError": "Failed to create role",
|
|
44
|
+
"roleDeleteSuccess": "The role was successfully deleted",
|
|
45
|
+
"roleDeleteError": "Role could not be deleted"
|
|
46
|
+
},
|
|
47
|
+
"deleteRole": {
|
|
48
|
+
"title": "Delete role",
|
|
49
|
+
"description": "Are you sure you want to delete this role?",
|
|
50
|
+
"successMessage": "The role has been removed.",
|
|
51
|
+
"deleteOrCancel": "Delete/Cancel option selected"
|
|
52
|
+
},
|
|
53
|
+
"selectedValue": "{{from}} of {{to}} lines selected",
|
|
54
|
+
"validation": {
|
|
55
|
+
"nameRequired": "Name is required",
|
|
56
|
+
"permissionsRequired": "Select at least one entitlement",
|
|
57
|
+
"codeRequired": "The code is required"
|
|
58
|
+
}
|
|
59
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
{
|
|
2
|
+
"create": "Create vendor",
|
|
3
|
+
"edit": "Edit vendor",
|
|
4
|
+
"baseInfoCode": "Code: {{value}}",
|
|
5
|
+
"baseInfoId": "Id: {{value}}",
|
|
6
|
+
"baseInfoCreated": "Created: {{value}}",
|
|
7
|
+
"baseInfoUpdated": "Updated: {{value}}",
|
|
8
|
+
"buttonDisabledTooltip": "Fill in all required fields",
|
|
9
|
+
"noChangesTooltip": "No changes have been made",
|
|
10
|
+
"table": {
|
|
11
|
+
"id": "Id",
|
|
12
|
+
"name": "Name",
|
|
13
|
+
"createdAt": "Established in",
|
|
14
|
+
"updatedAt": "Updated by",
|
|
15
|
+
"openMenu": "Open menu",
|
|
16
|
+
"copyId": "Copy identifier",
|
|
17
|
+
"viewSeller": "Display vendor",
|
|
18
|
+
"columns": "Columns"
|
|
19
|
+
},
|
|
20
|
+
"details": {
|
|
21
|
+
"basic": {
|
|
22
|
+
"title": "Basic information",
|
|
23
|
+
"name": "Name",
|
|
24
|
+
"memberPlaceholder": "Add member"
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
"toasts": {
|
|
28
|
+
"sellerLoadingError": "Failed to load vendor with ID {{value}}",
|
|
29
|
+
"sellerUpdateSuccess": "Vendor has been successfully updated",
|
|
30
|
+
"sellerUpdateError": "An error occurred:",
|
|
31
|
+
"sellerCreatedSuccess": "Vendor has been successfully created",
|
|
32
|
+
"sellerCreatedError": "Failed to create vendor",
|
|
33
|
+
"sellerDeleteSuccess": "Vendor was successfully deleted",
|
|
34
|
+
"sellerDeleteError": "Unsuccessful deletion of vendor"
|
|
35
|
+
},
|
|
36
|
+
"deleteSeller": {
|
|
37
|
+
"title": "Delete vendor",
|
|
38
|
+
"description": "Are you sure you want to delete this vendor?",
|
|
39
|
+
"successMessage": "The seller has been removed."
|
|
40
|
+
}
|
|
41
|
+
}
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
{
|
|
2
|
+
"create": "Create shipping method",
|
|
3
|
+
"edit": "Edit shipping method",
|
|
4
|
+
"baseInfoCode": "Code: {{value}}",
|
|
5
|
+
"baseInfoId": "Id: {{value}}",
|
|
6
|
+
"baseInfoCreated": "Created: {{value}}",
|
|
7
|
+
"baseInfoUpdated": "Updated: {{value}}",
|
|
8
|
+
"buttonDisabledTooltip": "Fill in all required fields",
|
|
9
|
+
"noChangesTooltip": "No changes have been made",
|
|
10
|
+
"table": {
|
|
11
|
+
"id": "Id",
|
|
12
|
+
"name": "Name",
|
|
13
|
+
"code": "Code",
|
|
14
|
+
"modalTitle": "Modal title",
|
|
15
|
+
"createdAt": "Established in",
|
|
16
|
+
"updatedAt": "Updated by",
|
|
17
|
+
"columns": "Columns"
|
|
18
|
+
},
|
|
19
|
+
"details": {
|
|
20
|
+
"basic": {
|
|
21
|
+
"title": "Basic information",
|
|
22
|
+
"name": "Name",
|
|
23
|
+
"description": "Description",
|
|
24
|
+
"code": "Code",
|
|
25
|
+
"enabled": "Included",
|
|
26
|
+
"fulfillmentHandler": "Implementation support"
|
|
27
|
+
},
|
|
28
|
+
"modal": {
|
|
29
|
+
"title": "Modal",
|
|
30
|
+
"name": "Modal title",
|
|
31
|
+
"description": "Module description",
|
|
32
|
+
"additionalDescription": "Modal additional description"
|
|
33
|
+
},
|
|
34
|
+
"options": {
|
|
35
|
+
"title": "Shipping eligibility checker tool",
|
|
36
|
+
"checker": "Shipping eligibility checker tool"
|
|
37
|
+
},
|
|
38
|
+
"calculator": {
|
|
39
|
+
"title": "Shipping calculator",
|
|
40
|
+
"type": "Calculator type"
|
|
41
|
+
},
|
|
42
|
+
"test": {
|
|
43
|
+
"title": "Test shipping method",
|
|
44
|
+
"city": "City",
|
|
45
|
+
"province": "Province",
|
|
46
|
+
"postalCode": "Postcode",
|
|
47
|
+
"country": "Country",
|
|
48
|
+
"button": "Test",
|
|
49
|
+
"eligible": "Eligible",
|
|
50
|
+
"notEligible": "Not eligible"
|
|
51
|
+
},
|
|
52
|
+
"lines": {
|
|
53
|
+
"placeholder": "Product search",
|
|
54
|
+
"product": "Product",
|
|
55
|
+
"price": "Price",
|
|
56
|
+
"quantity": "Number",
|
|
57
|
+
"total": "Total",
|
|
58
|
+
"noItems": "Add products"
|
|
59
|
+
}
|
|
60
|
+
},
|
|
61
|
+
"toasts": {
|
|
62
|
+
"shippingMethodLoadingError": "Failed to load shipping method with identifier {{value}}",
|
|
63
|
+
"shippingMethodUpdateSuccess": "Dispatch method has been successfully updated",
|
|
64
|
+
"shippingMethodUpdateError": "An error occurred:",
|
|
65
|
+
"shippingMethodCreatedSuccess": "The dispatch method was successfully created",
|
|
66
|
+
"shippingMethodCreatedError": "Failed to create dispatch method",
|
|
67
|
+
"shippingMethodDeleteSuccess": "Dispatch method was successfully deleted",
|
|
68
|
+
"shippingMethodDeleteError": "Shipping method could not be deleted"
|
|
69
|
+
},
|
|
70
|
+
"validation": {
|
|
71
|
+
"checkerCodeRequired": "Shipping authorisation check code required",
|
|
72
|
+
"checkerArgsRequired": "Dispatch eligibility check arguments required",
|
|
73
|
+
"calculatorCodeRequired": "Shipping calculator code required",
|
|
74
|
+
"calculatorArgsRequired": "Shipping calculator arguments required",
|
|
75
|
+
"required": "Field is required",
|
|
76
|
+
"fulfillmentHandlerRequired": "Fulfillment handler is required",
|
|
77
|
+
"nameRequired": "Name is required"
|
|
78
|
+
},
|
|
79
|
+
"deleteShippingMethod": {
|
|
80
|
+
"title": "Remove shipping method",
|
|
81
|
+
"description": "Are you sure you want to delete this shipping method?",
|
|
82
|
+
"successMessage": "The shipping method has been removed."
|
|
83
|
+
}
|
|
84
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
{
|
|
2
|
+
"create": "Create a stock location",
|
|
3
|
+
"edit": "Edit stock location",
|
|
4
|
+
"baseInfoCode": "Code: {{value}}",
|
|
5
|
+
"baseInfoId": "Id: {{value}}",
|
|
6
|
+
"baseInfoCreated": "Created: {{value}}",
|
|
7
|
+
"baseInfoUpdated": "Updated: {{value}}",
|
|
8
|
+
"table": {
|
|
9
|
+
"id": "Id",
|
|
10
|
+
"name": "Name",
|
|
11
|
+
"description": "Description",
|
|
12
|
+
"createdAt": "Established in",
|
|
13
|
+
"updatedAt": "Updated by",
|
|
14
|
+
"openMenu": "Open menu",
|
|
15
|
+
"copyId": "Copy identifier",
|
|
16
|
+
"viewStockLocation": "Display stock location",
|
|
17
|
+
"columns": "Columns"
|
|
18
|
+
},
|
|
19
|
+
"details": {
|
|
20
|
+
"basic": {
|
|
21
|
+
"title": "Basic information",
|
|
22
|
+
"name": "Name",
|
|
23
|
+
"description": "Description"
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
"toasts": {
|
|
27
|
+
"stockLocationLoadingError": "Failed to load storage location with identifier {{value}}",
|
|
28
|
+
"stockLocationUpdateSuccess": "Stock location successfully updated",
|
|
29
|
+
"stockLocationUpdateError": "An error occurred:",
|
|
30
|
+
"stockLocationCreatedSuccess": "Storage location was successfully created",
|
|
31
|
+
"stockLocationCreatedError": "Creation of storage location failed",
|
|
32
|
+
"stockLocationDeleteSuccess": "Storage location was successfully deleted",
|
|
33
|
+
"stockLocationDeleteError": "Warehouse location could not be deleted"
|
|
34
|
+
},
|
|
35
|
+
"deleteStockLocation": {
|
|
36
|
+
"title": "Delete stock location",
|
|
37
|
+
"description": "Are you sure you want to delete this storage location?",
|
|
38
|
+
"successMessage": "The storage location has been removed."
|
|
39
|
+
}
|
|
40
|
+
}
|