@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,41 @@
|
|
|
1
|
+
{
|
|
2
|
+
"health": {
|
|
3
|
+
"title": "System status",
|
|
4
|
+
"updated": "Last update:",
|
|
5
|
+
"status": "General status:",
|
|
6
|
+
"details": "Service details",
|
|
7
|
+
"refresh": "Refresh",
|
|
8
|
+
"refreshing": "Refresh",
|
|
9
|
+
"error": {
|
|
10
|
+
"title": "Unable to retrieve status",
|
|
11
|
+
"description": "There was a problem connecting to the status service.",
|
|
12
|
+
"button": "Try again"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"jobs": {
|
|
16
|
+
"title": "Work",
|
|
17
|
+
"live": "Live update",
|
|
18
|
+
"allStates": "All states",
|
|
19
|
+
"allNames": "All names",
|
|
20
|
+
"states": {
|
|
21
|
+
"pending": "In progress",
|
|
22
|
+
"running": "In progress",
|
|
23
|
+
"completed": "Completed",
|
|
24
|
+
"retrying": "Re-attempt",
|
|
25
|
+
"failed": "Failed",
|
|
26
|
+
"cancelled": "Cancelled"
|
|
27
|
+
},
|
|
28
|
+
"table": {
|
|
29
|
+
"id": "ID",
|
|
30
|
+
"queueName": "Queue name",
|
|
31
|
+
"status": "Status",
|
|
32
|
+
"created": "Created",
|
|
33
|
+
"started": "Started",
|
|
34
|
+
"settled": "Completed",
|
|
35
|
+
"duration": "Duration",
|
|
36
|
+
"jobData": "Work data",
|
|
37
|
+
"jobResult": "Job outcome",
|
|
38
|
+
"remove": "Delete task"
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
}
|
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
{
|
|
2
|
+
"types": {
|
|
3
|
+
"filter": "Filter type",
|
|
4
|
+
"select": "Select type"
|
|
5
|
+
},
|
|
6
|
+
"withSelected": "After selecting {{amount}}",
|
|
7
|
+
"clearSelected": "Remove the selection",
|
|
8
|
+
"removeSelected": "Deselected",
|
|
9
|
+
"true": "True",
|
|
10
|
+
"false": "False",
|
|
11
|
+
"from": "From",
|
|
12
|
+
"to": "To",
|
|
13
|
+
"value": "Value",
|
|
14
|
+
"create": "Create",
|
|
15
|
+
"bulk": {
|
|
16
|
+
"delete": {
|
|
17
|
+
"title": {
|
|
18
|
+
"plural": "Are you sure you want to delete these records?",
|
|
19
|
+
"singular": "Are you sure you want to delete this record?"
|
|
20
|
+
},
|
|
21
|
+
"description": "This action cannot be undone.",
|
|
22
|
+
"cancel": "Cancel",
|
|
23
|
+
"confirm": "Delete {{amount}} records"
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
"filterLabels": {
|
|
27
|
+
"active": "Active",
|
|
28
|
+
"additionalInformation": "Additional information",
|
|
29
|
+
"code": "Code",
|
|
30
|
+
"createdAt": "Established in",
|
|
31
|
+
"currencyCode": "Currency code",
|
|
32
|
+
"customerLastName": "Customer name",
|
|
33
|
+
"id": "Id",
|
|
34
|
+
"orderPlacedAt": "Order placed at",
|
|
35
|
+
"shipping": "Shipping",
|
|
36
|
+
"shippingWithTax": "Shipping with tax",
|
|
37
|
+
"state": "State",
|
|
38
|
+
"subTotal": "Subtotal",
|
|
39
|
+
"subTotalWithTax": "Sub-total with tax",
|
|
40
|
+
"token": "Token",
|
|
41
|
+
"total": "total",
|
|
42
|
+
"totalQuantity": "Total quantity",
|
|
43
|
+
"totalWithTax": "Total incl. tax",
|
|
44
|
+
"transactionId": "Transaction ID",
|
|
45
|
+
"type": "Type",
|
|
46
|
+
"updatedAt": "Updated by",
|
|
47
|
+
"aggregateOrderId": "Aggregate order identifier",
|
|
48
|
+
"getProforma": "Download proforma",
|
|
49
|
+
"registeredOnCheckout": "Registered at checkout",
|
|
50
|
+
"enabled": "Included",
|
|
51
|
+
"name": "Name",
|
|
52
|
+
"firstName": "Name",
|
|
53
|
+
"phoneNumber": "Telephone number",
|
|
54
|
+
"emailAddress": "E-mail address",
|
|
55
|
+
"slug": "Short name (slug)",
|
|
56
|
+
"description": "Description",
|
|
57
|
+
"isPrivate": "Is private",
|
|
58
|
+
"inheritFilters": "Filter inheritance",
|
|
59
|
+
"position": "Position",
|
|
60
|
+
"parentId": "Parent identifier",
|
|
61
|
+
"usedForProductCreations": "It is used to create products",
|
|
62
|
+
"usedForColors": "It is used for colours",
|
|
63
|
+
"colorsCollection": "Is a collection of colours",
|
|
64
|
+
"zone": "Zone",
|
|
65
|
+
"value": "Rate",
|
|
66
|
+
"customerGroup": "Customer group",
|
|
67
|
+
"category": "Category",
|
|
68
|
+
"modalTitle": "Modal title",
|
|
69
|
+
"_and": "and",
|
|
70
|
+
"_or": "or"
|
|
71
|
+
},
|
|
72
|
+
"buttons": {
|
|
73
|
+
"add": "Add",
|
|
74
|
+
"apply": "Use",
|
|
75
|
+
"create": "Create",
|
|
76
|
+
"reset": "Reset",
|
|
77
|
+
"cancel": "Cancel"
|
|
78
|
+
},
|
|
79
|
+
"operators": {
|
|
80
|
+
"eq": "Equals",
|
|
81
|
+
"in": "W",
|
|
82
|
+
"notIn": "Not in",
|
|
83
|
+
"isNull": "Is null",
|
|
84
|
+
"notEq": "Is not equal to",
|
|
85
|
+
"contains": "Contains",
|
|
86
|
+
"notContains": "Does not contain",
|
|
87
|
+
"before": "Before",
|
|
88
|
+
"regex": "Matches a regular expression",
|
|
89
|
+
"after": "After",
|
|
90
|
+
"between": "Between",
|
|
91
|
+
"lt": "Lower than",
|
|
92
|
+
"lte": "Lower or equal to",
|
|
93
|
+
"gt": "Greater than",
|
|
94
|
+
"gte": "Greater than or equal to"
|
|
95
|
+
},
|
|
96
|
+
"placeholders": {
|
|
97
|
+
"columnsDropdown": "Select columns",
|
|
98
|
+
"operatorInput": "Input value",
|
|
99
|
+
"search": "Search by {{fields}}"
|
|
100
|
+
},
|
|
101
|
+
"columns": {
|
|
102
|
+
"id": "ID",
|
|
103
|
+
"createdAt": "Established in",
|
|
104
|
+
"updatedAt": "Updated by",
|
|
105
|
+
"featuredAsset": "Assets",
|
|
106
|
+
"name": "Name",
|
|
107
|
+
"slug": "Short name (slug)",
|
|
108
|
+
"customerLastName": "Customer surname",
|
|
109
|
+
"enabled": "Included",
|
|
110
|
+
"sku": "SKU",
|
|
111
|
+
"description": "Description",
|
|
112
|
+
"channels": "Channels",
|
|
113
|
+
"permissions": "Entitlements",
|
|
114
|
+
"price": "Price",
|
|
115
|
+
"priceWithTax": "Price with tax",
|
|
116
|
+
"verified": "Verified",
|
|
117
|
+
"fullName": "Name",
|
|
118
|
+
"payments": "Payments",
|
|
119
|
+
"shippingAddress": "Shipping address",
|
|
120
|
+
"customer": "Client",
|
|
121
|
+
"state": "State",
|
|
122
|
+
"totalWithTax": "Total",
|
|
123
|
+
"code": "Code",
|
|
124
|
+
"total": "Total",
|
|
125
|
+
"type": "Type",
|
|
126
|
+
"shipping": "Delivery",
|
|
127
|
+
"orderPlacedAt": "Submitted o",
|
|
128
|
+
"firstName": "Name",
|
|
129
|
+
"lastName": "Surname",
|
|
130
|
+
"emailAddress": "Email",
|
|
131
|
+
"phoneNumber": "Tel. no.",
|
|
132
|
+
"values": "Values",
|
|
133
|
+
"isPrivate": "Private",
|
|
134
|
+
"token": "Token",
|
|
135
|
+
"members": "Members",
|
|
136
|
+
"isDefault": "Default",
|
|
137
|
+
"value": "Value",
|
|
138
|
+
"customerGroup": "Customer group",
|
|
139
|
+
"taxCategory": "Tax category",
|
|
140
|
+
"zone": "Zone",
|
|
141
|
+
"active": "Active",
|
|
142
|
+
"currencyCode": "Currency",
|
|
143
|
+
"totalQuantity": "Number",
|
|
144
|
+
"postalCode": "Postcode",
|
|
145
|
+
"image": "Image",
|
|
146
|
+
"preview": "Preview",
|
|
147
|
+
"tags": "Tags",
|
|
148
|
+
"title": "Title",
|
|
149
|
+
"facetValueId": "Facets",
|
|
150
|
+
"stockOnHand": "Stock on hand",
|
|
151
|
+
"stockAllocated": "Stock allocated",
|
|
152
|
+
"stock": "Stock"
|
|
153
|
+
},
|
|
154
|
+
"actionsMenu": {
|
|
155
|
+
"title": "Activities",
|
|
156
|
+
"open": "Open",
|
|
157
|
+
"copyId": "Copy ID",
|
|
158
|
+
"view": "View",
|
|
159
|
+
"delete": "Delete",
|
|
160
|
+
"label": "Order in the table"
|
|
161
|
+
},
|
|
162
|
+
"filterDialog": {
|
|
163
|
+
"title": "Filters",
|
|
164
|
+
"apply": "Apply the filter",
|
|
165
|
+
"reset": "Reset filters",
|
|
166
|
+
"add": "Add filter",
|
|
167
|
+
"allFiltersApplied": "All filters have already been applied",
|
|
168
|
+
"where": "where",
|
|
169
|
+
"noFieldsFound": "No fields found",
|
|
170
|
+
"searchFields": "Search",
|
|
171
|
+
"noFiltersApplied": "No filters were used",
|
|
172
|
+
"emptyState": "Add filters to narrow the results.",
|
|
173
|
+
"operatorPlaceholder": "selection operator"
|
|
174
|
+
},
|
|
175
|
+
"entities": {
|
|
176
|
+
"administrator": "administrator",
|
|
177
|
+
"product": "products",
|
|
178
|
+
"customer": "customers",
|
|
179
|
+
"customerGroup": "customer groups",
|
|
180
|
+
"customerGroupList": "customer groups",
|
|
181
|
+
"productVariant": "product variants",
|
|
182
|
+
"collection": "collections",
|
|
183
|
+
"order": "orders",
|
|
184
|
+
"facet": "aspects of",
|
|
185
|
+
"channel": "channels",
|
|
186
|
+
"globalSettings": "global settings",
|
|
187
|
+
"role": "roles",
|
|
188
|
+
"admin": "administrators",
|
|
189
|
+
"stock": "storage locations",
|
|
190
|
+
"seller": "retailers",
|
|
191
|
+
"asset": "assets",
|
|
192
|
+
"zone": "zones",
|
|
193
|
+
"promotion": "promotions",
|
|
194
|
+
"country": "countries",
|
|
195
|
+
"paymentMethod": "payment methods",
|
|
196
|
+
"shippingMethod": "shipping methods",
|
|
197
|
+
"taxCategory": "tax categories",
|
|
198
|
+
"taxRate": "tax rates",
|
|
199
|
+
"stockLocation": "storage locations"
|
|
200
|
+
}
|
|
201
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
{
|
|
2
|
+
"create": "Create a tax category",
|
|
3
|
+
"edit": "Edit tax category",
|
|
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
|
+
"isDefault": "Is the default",
|
|
14
|
+
"createdAt": "Established in",
|
|
15
|
+
"updatedAt": "Updated by",
|
|
16
|
+
"openMenu": "Open menu",
|
|
17
|
+
"copyId": "Copy identifier",
|
|
18
|
+
"viewTaxCategory": "Display tax category",
|
|
19
|
+
"columns": "Columns"
|
|
20
|
+
},
|
|
21
|
+
"details": {
|
|
22
|
+
"basic": {
|
|
23
|
+
"title": "Basic information",
|
|
24
|
+
"name": "Name",
|
|
25
|
+
"isDefault": "Default"
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
"toasts": {
|
|
29
|
+
"taxCategoryLoadingError": "Failed to load tax category with identifier {{value}}",
|
|
30
|
+
"taxCategoryUpdateSuccess": "Tax category has been successfully updated",
|
|
31
|
+
"taxCategoryUpdateError": "An error occurred:",
|
|
32
|
+
"taxCategoryCreatedSuccess": "Tax category was successfully created",
|
|
33
|
+
"taxCategoryCreatedError": "Failed to create tax category",
|
|
34
|
+
"taxCategoryDeleteSuccess": "Tax category was successfully deleted",
|
|
35
|
+
"taxCategoryDeleteError": "The tax category could not be removed successfully. It is probably in use",
|
|
36
|
+
"taxCategoryDeleteAllError": "Some tax categories have not been deleted. They are probably in use"
|
|
37
|
+
},
|
|
38
|
+
"deleteTaxCategory": {
|
|
39
|
+
"title": "Delete a tax category",
|
|
40
|
+
"description": "Are you sure you want to delete this tax category?",
|
|
41
|
+
"successMessage": "The tax category has been removed.",
|
|
42
|
+
"deleteOrCancel": "Delete/Cancel option selected"
|
|
43
|
+
},
|
|
44
|
+
"validation": {
|
|
45
|
+
"nameRequired": "Name is required"
|
|
46
|
+
}
|
|
47
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
{
|
|
2
|
+
"create": "Creation of the tax rate",
|
|
3
|
+
"edit": "Editing a tax rate",
|
|
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
|
+
"enabled": "Included",
|
|
14
|
+
"taxCategory": "Tax category",
|
|
15
|
+
"zone": "Zone",
|
|
16
|
+
"value": "Rate",
|
|
17
|
+
"customerGroup": "Customer group",
|
|
18
|
+
"createdAt": "Established in",
|
|
19
|
+
"updatedAt": "Updated by",
|
|
20
|
+
"openMenu": "Open menu",
|
|
21
|
+
"copyId": "Copy identifier",
|
|
22
|
+
"viewTaxRate": "Display tax rate",
|
|
23
|
+
"columns": "Columns"
|
|
24
|
+
},
|
|
25
|
+
"details": {
|
|
26
|
+
"basic": {
|
|
27
|
+
"title": "Basic information",
|
|
28
|
+
"name": "Name",
|
|
29
|
+
"enabled": "Included",
|
|
30
|
+
"taxCategory": "Tax category",
|
|
31
|
+
"zone": "Zone",
|
|
32
|
+
"value": "Value"
|
|
33
|
+
}
|
|
34
|
+
},
|
|
35
|
+
"toasts": {
|
|
36
|
+
"taxRateLoadingError": "Failed to load tax rate with identifier {{value}}",
|
|
37
|
+
"taxRateUpdateSuccess": "Tax rate has been successfully updated",
|
|
38
|
+
"taxRateUpdateError": "An error occurred:",
|
|
39
|
+
"taxRateCreatedSuccess": "Tax rate was successfully created",
|
|
40
|
+
"taxRateCreatedError": "Tax rate could not be created",
|
|
41
|
+
"taxRateDeleteSuccess": "Tax rate was successfully deleted",
|
|
42
|
+
"taxRateDeleteError": "Tax rate could not be deleted"
|
|
43
|
+
},
|
|
44
|
+
"deleteTaxRate": {
|
|
45
|
+
"title": "Delete tax rate",
|
|
46
|
+
"description": "Are you sure you want to delete this tax rate?",
|
|
47
|
+
"successMessage": "The tax rate has been removed.",
|
|
48
|
+
"deleteOrCancel": "Delete/Cancel option selected"
|
|
49
|
+
},
|
|
50
|
+
"validation": {
|
|
51
|
+
"taxCategoryRequired": "Tax category is required",
|
|
52
|
+
"zoneRequired": "Zone is required",
|
|
53
|
+
"nameRequired": "Name is required",
|
|
54
|
+
"valueRequired": "Value is required"
|
|
55
|
+
}
|
|
56
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
{
|
|
2
|
+
"create": "Create zone",
|
|
3
|
+
"edit": "Edit zone",
|
|
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
|
+
"members": "Members",
|
|
14
|
+
"createdAt": "Established in",
|
|
15
|
+
"updatedAt": "Updated by",
|
|
16
|
+
"openMenu": "Open menu",
|
|
17
|
+
"copyId": "Copy identifier",
|
|
18
|
+
"viewZone": "View zone",
|
|
19
|
+
"columns": "Columns"
|
|
20
|
+
},
|
|
21
|
+
"details": {
|
|
22
|
+
"basic": {
|
|
23
|
+
"title": "Basic information",
|
|
24
|
+
"name": "Name",
|
|
25
|
+
"members": "Members",
|
|
26
|
+
"memberPlaceholder": "Add member"
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
"toasts": {
|
|
30
|
+
"zoneLoadingError": "Failed to load zone with identifier {{value}}",
|
|
31
|
+
"zoneUpdateSuccess": "Zone has been successfully updated",
|
|
32
|
+
"zoneUpdateError": "An error occurred:",
|
|
33
|
+
"zoneCreatedSuccess": "Zone was successfully created",
|
|
34
|
+
"zoneCreatedError": "Zone could not be created",
|
|
35
|
+
"zoneDeleteSuccess": "Zone was successfully deleted",
|
|
36
|
+
"zoneDeleteError": "Zone could not be deleted"
|
|
37
|
+
},
|
|
38
|
+
"deleteZone": {
|
|
39
|
+
"title": "Delete zone",
|
|
40
|
+
"description": "Are you sure you want to delete this zone?",
|
|
41
|
+
"successMessage": "The zone has been deleted.",
|
|
42
|
+
"deleteOrCancel": "Delete/Cancel option selected"
|
|
43
|
+
},
|
|
44
|
+
"validation": {
|
|
45
|
+
"nameRequired": "Zone name required"
|
|
46
|
+
}
|
|
47
|
+
}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
{
|
|
2
|
+
"create": "Utwórz administratora",
|
|
3
|
+
"edit": "Edycja administratora",
|
|
4
|
+
"baseInfoCode": "Kod: {{value}}",
|
|
5
|
+
"baseInfoId": "Id: {{value}}",
|
|
6
|
+
"baseInfoCreated": "Utworzono: {{value}}",
|
|
7
|
+
"baseInfoUpdated": "Zaktualizowano: {{value}}",
|
|
8
|
+
"buttonDisabledTooltip": "Wypełnij wszystkie wymagane pola",
|
|
9
|
+
"noChangesTooltip": "Nie wprowadzono żadnych zmian",
|
|
10
|
+
"table": {
|
|
11
|
+
"id": "Id",
|
|
12
|
+
"name": "Nazwa",
|
|
13
|
+
"emailAddress": "Email",
|
|
14
|
+
"role": "Rola",
|
|
15
|
+
"createdAt": "Utworzona w",
|
|
16
|
+
"updatedAt": "Zaktualizowano o",
|
|
17
|
+
"openMenu": "Otwórz menu",
|
|
18
|
+
"copyId": "Kopiuj identyfikator",
|
|
19
|
+
"viewAdmin": "Wyświetl administratora",
|
|
20
|
+
"columns": "Kolumny"
|
|
21
|
+
},
|
|
22
|
+
"details": {
|
|
23
|
+
"basic": {
|
|
24
|
+
"title": "Podstawowe informacje",
|
|
25
|
+
"firstName": "Imię",
|
|
26
|
+
"lastName": "Nazwisko",
|
|
27
|
+
"emailAddress": "Adres e-mail",
|
|
28
|
+
"password": "Hasło"
|
|
29
|
+
},
|
|
30
|
+
"roles": {
|
|
31
|
+
"title": "Role",
|
|
32
|
+
"placeholder": "Dodawanie ról do użytkownika"
|
|
33
|
+
}
|
|
34
|
+
},
|
|
35
|
+
"toasts": {
|
|
36
|
+
"adminLoadingError": "Nie udało się załadować administratora o identyfikatorze {{value}}",
|
|
37
|
+
"adminUpdateSuccess": "Administrator został pomyślnie zaktualizowany",
|
|
38
|
+
"adminUpdateError": "Wystąpił błąd:",
|
|
39
|
+
"adminCreatedSuccess": "Administrator został pomyślnie utworzony",
|
|
40
|
+
"adminCreatedError": "Nie udało się utworzyć administratora",
|
|
41
|
+
"adminDeleteSuccess": "Administrator został pomyślnie usunięty",
|
|
42
|
+
"adminDeleteError": "Nie udało się usunąć administratora"
|
|
43
|
+
},
|
|
44
|
+
"deleteAdmin": {
|
|
45
|
+
"title": "Usuń administratora",
|
|
46
|
+
"description": "Czy na pewno chcesz usunąć tego administratora?",
|
|
47
|
+
"successMessage": "Administrator został usunięty.",
|
|
48
|
+
"deleteOrCancel": "Wybrano opcję Usuń/Anuluj"
|
|
49
|
+
},
|
|
50
|
+
"selectedValue": "wybrano {{from}} z {{to}} wierszy",
|
|
51
|
+
"validation": {
|
|
52
|
+
"firstNameRequired": "Imię jest wymagane",
|
|
53
|
+
"lastNameRequired": "Nazwisko jest wymagane",
|
|
54
|
+
"passwordRequired": "Wymagane jest hasło",
|
|
55
|
+
"rolesRequired": "Wybierz co najmniej jedną rolę"
|
|
56
|
+
}
|
|
57
|
+
}
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
{
|
|
2
|
+
"assetDetails": "Szczegóły dotyczące aktywów",
|
|
3
|
+
"close": "Zamknij",
|
|
4
|
+
"delete": "Usuń",
|
|
5
|
+
"edit": "Edytuj",
|
|
6
|
+
"cancel": "Anuluj",
|
|
7
|
+
"uploading": "Ładowanie...",
|
|
8
|
+
"upload": "Załaduj",
|
|
9
|
+
"save": "Zapisz",
|
|
10
|
+
"deleteSuccess": "Zasób został pomyślnie usunięty",
|
|
11
|
+
"deleteFail": "Zasób nie został usunięty",
|
|
12
|
+
"editSuccess": "Zasób został edytowany",
|
|
13
|
+
"editFail": "Zasób nie był edytowany",
|
|
14
|
+
"createFailed": "Nie udało się utworzyć zasobu",
|
|
15
|
+
"createSuccess": "Zasób utworzony",
|
|
16
|
+
"dropzone": "Upuść plik tutaj lub kliknij, aby go przejrzeć.",
|
|
17
|
+
"filesSelected": " wybrane pliki",
|
|
18
|
+
"noFilesSelected": "Nie wybrano żadnych plików",
|
|
19
|
+
"invalidFileTypes": "Nieprawidłowe typy plików",
|
|
20
|
+
"browseAssets": "Przeglądaj zasoby",
|
|
21
|
+
"uploadAssets": "Wgraj zasób",
|
|
22
|
+
"preview": "Obraz",
|
|
23
|
+
"name": "Nazwa",
|
|
24
|
+
"actions": "Akcje",
|
|
25
|
+
"copyURL": "Kopiuj URL",
|
|
26
|
+
"open": "Otwórz",
|
|
27
|
+
"detailsTable": {
|
|
28
|
+
"id": "Identyfikator",
|
|
29
|
+
"name": "Nazwa",
|
|
30
|
+
"fileSize": "Rozmiar pliku",
|
|
31
|
+
"createdAt": "Utworzony",
|
|
32
|
+
"updatedAt": "Zmodyfikowany",
|
|
33
|
+
"size": "Rozmiar",
|
|
34
|
+
"width": "Szerokość",
|
|
35
|
+
"height": "Wysokość",
|
|
36
|
+
"mimeType": "Typ MIME",
|
|
37
|
+
"source": "Ścieżka",
|
|
38
|
+
"preview": "Podgląd",
|
|
39
|
+
"focalPoint": "Punkt centralny",
|
|
40
|
+
"type": "Typ",
|
|
41
|
+
"tags": "Tagi"
|
|
42
|
+
},
|
|
43
|
+
"dialogs": {
|
|
44
|
+
"title": "Załaduj zasób",
|
|
45
|
+
"dragAndDrop": "Przeciągnij i upuść",
|
|
46
|
+
"browse": "Albo kliknij, żeby przeglądać i wybrać",
|
|
47
|
+
"selectFile": "Wybierz plik",
|
|
48
|
+
"focal": "Punkt centralny",
|
|
49
|
+
"focalStop": "Przestań edytować punkt centralny",
|
|
50
|
+
"focalEdit": "Wybierz punkt centralny",
|
|
51
|
+
"noFocal": "Brak punktu centralnego",
|
|
52
|
+
"details": "Szczegóły zasobu",
|
|
53
|
+
"noTags": "Nie dodano tagów",
|
|
54
|
+
"addTag": "Dodaj tagi",
|
|
55
|
+
"add": "Dodaj",
|
|
56
|
+
"noFile": "Nie wybrano pliku",
|
|
57
|
+
"invalidType": "Nieprawidłowy typ",
|
|
58
|
+
"uploadFail": "Błąd w ładowaniu obrazka",
|
|
59
|
+
"linkCopied": "Link skopiowany",
|
|
60
|
+
"createdSuccess": "Zasób utworzony pomyślnie",
|
|
61
|
+
"createdFail": "Błąd przy tworzeniu zasobu",
|
|
62
|
+
"editedSuccess": "Zasób utworzony pomyślnie",
|
|
63
|
+
"editedFail": "Błąd przy tworzeniu zasobu"
|
|
64
|
+
},
|
|
65
|
+
"types": {
|
|
66
|
+
"IMAGE": "obraz",
|
|
67
|
+
"VIDEO": "wideo"
|
|
68
|
+
}
|
|
69
|
+
}
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
{
|
|
2
|
+
"create": "Utwórz kanał",
|
|
3
|
+
"edit": "Edytuj kanał",
|
|
4
|
+
"baseInfoCode": "Kod: {{value}}",
|
|
5
|
+
"baseInfoId": "Id: {{value}}",
|
|
6
|
+
"baseInfoCreated": "Utworzono: {{value}}",
|
|
7
|
+
"baseInfoUpdated": "Zaktualizowano: {{value}}",
|
|
8
|
+
"defaultChannel": "Kanał domyślny",
|
|
9
|
+
"buttonDisabledTooltip": "Wypełnij wszystkie wymagane pola",
|
|
10
|
+
"noChangesTooltip": "Nie wprowadzono żadnych zmian",
|
|
11
|
+
"assignToChannel": "Przypisz do kanału",
|
|
12
|
+
"table": {
|
|
13
|
+
"id": "Id",
|
|
14
|
+
"code": "Kod",
|
|
15
|
+
"token": "Token",
|
|
16
|
+
"createdAt": "Utworzona w",
|
|
17
|
+
"updatedAt": "Zaktualizowano o",
|
|
18
|
+
"openMenu": "Otwórz menu",
|
|
19
|
+
"copyId": "Kopiuj identyfikator",
|
|
20
|
+
"viewChannel": "Wyświetl kanał",
|
|
21
|
+
"columns": "Kolumny"
|
|
22
|
+
},
|
|
23
|
+
"details": {
|
|
24
|
+
"basic": {
|
|
25
|
+
"title": "Podstawowe informacje",
|
|
26
|
+
"code": "Kod",
|
|
27
|
+
"token": "Token",
|
|
28
|
+
"seller": "Sprzedawca",
|
|
29
|
+
"languages": "Dostępne języki",
|
|
30
|
+
"languagePlaceholder": "Dodaj język",
|
|
31
|
+
"currencies": "Dostępne waluty",
|
|
32
|
+
"currencyPlaceholder": "Dodaj walutę"
|
|
33
|
+
},
|
|
34
|
+
"defaults": {
|
|
35
|
+
"title": "Domyślne",
|
|
36
|
+
"defaultLanguage": "Domyślny język",
|
|
37
|
+
"defaultCurrency": "Domyślna waluta",
|
|
38
|
+
"defaultTaxZone": "Domyślna strefa podatkowa",
|
|
39
|
+
"defaultShippingZone": "Domyślna strefa wysyłki",
|
|
40
|
+
"includeTax": "Ceny zawierają podatek dla domyślnej strefy"
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
"toasts": {
|
|
44
|
+
"channelLoadingError": "Nie udało się załadować kanału o identyfikatorze {{value}}",
|
|
45
|
+
"channelUpdateSuccess": "Kanał został pomyślnie zaktualizowany",
|
|
46
|
+
"channelUpdateError": "Wystąpił błąd:",
|
|
47
|
+
"channelCreatedSuccess": "Kanał został pomyślnie utworzony",
|
|
48
|
+
"channelCreatedError": "Nie udało się utworzyć kanału",
|
|
49
|
+
"channelDeleteSuccess": "Kanał został pomyślnie usunięty",
|
|
50
|
+
"channelDeleteError": "Nie udało się usunąć kanału"
|
|
51
|
+
},
|
|
52
|
+
"deleteChannel": {
|
|
53
|
+
"title": "Usuń kanał",
|
|
54
|
+
"description": "Czy na pewno chcesz usunąć ten kanał?",
|
|
55
|
+
"successMessage": "Kanał został usunięty.",
|
|
56
|
+
"deleteOrCancel": "Wybrano opcję Usuń/Anuluj"
|
|
57
|
+
},
|
|
58
|
+
"selectedValue": "wybrano {{from}} z {{to}} wierszy",
|
|
59
|
+
"validation": {
|
|
60
|
+
"codeRequired": "Kod jest wymagany",
|
|
61
|
+
"tokenRequired": "Token jest wymagany",
|
|
62
|
+
"langCodeRequired": "Wymagany jest domyślny kod języka",
|
|
63
|
+
"shippingZoneRequired": "Domyślna strefa wysyłki jest wymagana",
|
|
64
|
+
"taxZoneRequired": "Domyślna strefa podatkowa jest wymagana"
|
|
65
|
+
}
|
|
66
|
+
}
|