@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,1127 @@
|
|
|
1
|
+
{
|
|
2
|
+
"elementów zostało przypisanych do kanału": "{{count}} items have been assigned to the channel",
|
|
3
|
+
"elementów zostało przypisanych do kanału z mnożnikiem": "{{count}} items have been assigned to the channel with a multiplier",
|
|
4
|
+
"elementów nie można przenieść do kanału, ponieważ są używane": "{{count}} items cannot be moved to the channel because they are used",
|
|
5
|
+
"Elementy zostały przypisane do kanału, a ich cena została zaktualizowana": "Items have been assigned to the channel and their price has been updated",
|
|
6
|
+
"Elementy zostały przypisane do kanału": "Items have been assigned to the channel",
|
|
7
|
+
"Przenieś do kanału": "Move to channel",
|
|
8
|
+
"Usuń z kanału": "Remove from channel",
|
|
9
|
+
"Nie zatwierdzono akcji": "Action not confirmed",
|
|
10
|
+
"Nie udało się przypisać elementów z kanału": "Failed to assign items from channel",
|
|
11
|
+
"Nie udało się usunąć elementów z kanału": "Failed to remove items from channel",
|
|
12
|
+
"Zatwierdź": "Confirm",
|
|
13
|
+
"Anuluj": "Cancel",
|
|
14
|
+
"Wybierz produkt": "Choose product",
|
|
15
|
+
"Wybierz wariant": "Choose variant",
|
|
16
|
+
"Wybierz produkty": "Choose products",
|
|
17
|
+
"Wybierz warianty": "Choose variants",
|
|
18
|
+
"Szukaj": "Search...",
|
|
19
|
+
"Brak produktów": "No products found",
|
|
20
|
+
"Zaznaczonych": "selected",
|
|
21
|
+
"title": "{{name}} - Deenruv",
|
|
22
|
+
"table": {
|
|
23
|
+
"id": "ID",
|
|
24
|
+
"name": "Name",
|
|
25
|
+
"slug": "Short name (slug)",
|
|
26
|
+
"code": "Code"
|
|
27
|
+
},
|
|
28
|
+
"moveEntitiesToChannels": {
|
|
29
|
+
"moveEntities": "Transferring entities",
|
|
30
|
+
"move": "Move",
|
|
31
|
+
"selected": "Selected",
|
|
32
|
+
"availableChannels": "Available channels",
|
|
33
|
+
"searchByCode": "Search by code",
|
|
34
|
+
"searchByToken": "Search by token...",
|
|
35
|
+
"priceFactor": "Price factor",
|
|
36
|
+
"table": {
|
|
37
|
+
"token": "Token",
|
|
38
|
+
"code": "Code",
|
|
39
|
+
"active": "Active",
|
|
40
|
+
"priceBefore": "Price before",
|
|
41
|
+
"priceAfter": "Price after"
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
"removeEntitiesToChannels": {
|
|
45
|
+
"removeEntities": "Removing entities from channels",
|
|
46
|
+
"remove": "Remove",
|
|
47
|
+
"selected": "Selected",
|
|
48
|
+
"availableChannels": "Available channels",
|
|
49
|
+
"searchByCode": "Search by code",
|
|
50
|
+
"searchByToken": "Search by token...",
|
|
51
|
+
"table": {
|
|
52
|
+
"token": "Token",
|
|
53
|
+
"code": "Code",
|
|
54
|
+
"active": "Active",
|
|
55
|
+
"priceBefore": "Price before",
|
|
56
|
+
"priceAfter": "Price after"
|
|
57
|
+
}
|
|
58
|
+
},
|
|
59
|
+
"entity": {
|
|
60
|
+
"address_zero": "Addresses",
|
|
61
|
+
"address_one": "Address",
|
|
62
|
+
"address_few": "Addresses",
|
|
63
|
+
"address_other": "Addresses",
|
|
64
|
+
"addresses_zero": "Addresses",
|
|
65
|
+
"addresses_one": "Address",
|
|
66
|
+
"addresses_few": "Addresses",
|
|
67
|
+
"addresses_other": "Addresses",
|
|
68
|
+
"admin_zero": "Administrators",
|
|
69
|
+
"admin_one": "Administrator",
|
|
70
|
+
"admin_few": "Administrators",
|
|
71
|
+
"admin_other": "Administrators",
|
|
72
|
+
"admins_zero": "Administrators",
|
|
73
|
+
"admins_one": "Administrator",
|
|
74
|
+
"admins_few": "Administrators",
|
|
75
|
+
"admins_other": "Administrators",
|
|
76
|
+
"administrator_zero": "Administrators",
|
|
77
|
+
"administrator_one": "Administrator",
|
|
78
|
+
"administrator_few": "Administrators",
|
|
79
|
+
"administrator_other": "Administrators",
|
|
80
|
+
"administrators_zero": "Administrators",
|
|
81
|
+
"administrators_one": "Administrator",
|
|
82
|
+
"administrators_few": "Administrators",
|
|
83
|
+
"administrators_other": "Administrators",
|
|
84
|
+
"anonymousSession_zero": "Anonymous sessions",
|
|
85
|
+
"anonymousSession_one": "Anonymous session",
|
|
86
|
+
"anonymousSession_few": "Anonymous sessions",
|
|
87
|
+
"anonymousSession_other": "Anonymous sessions",
|
|
88
|
+
"anonymousSessions_zero": "Anonymous sessions",
|
|
89
|
+
"anonymousSessions_one": "Anonymous session",
|
|
90
|
+
"anonymousSessions_few": "Anonymous sessions",
|
|
91
|
+
"anonymousSessions_other": "Anonymous sessions",
|
|
92
|
+
"asset_zero": "Resources",
|
|
93
|
+
"asset_one": "Resource",
|
|
94
|
+
"asset_few": "Resource",
|
|
95
|
+
"asset_other": "Resources",
|
|
96
|
+
"assets_zero": "Resources",
|
|
97
|
+
"assets_one": "Resource",
|
|
98
|
+
"assets_few": "Resource",
|
|
99
|
+
"assets_other": "Resources",
|
|
100
|
+
"authenticatedSession_zero": "Session",
|
|
101
|
+
"authenticatedSession_one": "Session",
|
|
102
|
+
"authenticatedSession_few": "Sessions",
|
|
103
|
+
"authenticatedSession_other": "Session",
|
|
104
|
+
"authenticatedSessions_zero": "Session",
|
|
105
|
+
"authenticatedSessions_one": "Session",
|
|
106
|
+
"authenticatedSessions_few": "Sessions",
|
|
107
|
+
"authenticatedSessions_other": "Session",
|
|
108
|
+
"authenticationMethod_zero": "Authentication methods",
|
|
109
|
+
"authenticationMethod_one": "Authentication method",
|
|
110
|
+
"authenticationMethod_few": "Authentication methods",
|
|
111
|
+
"authenticationMethod_other": "Authentication methods",
|
|
112
|
+
"authenticationMethods_zero": "Authentication methods",
|
|
113
|
+
"authenticationMethods_one": "Authentication method",
|
|
114
|
+
"authenticationMethods_few": "Authentication methods",
|
|
115
|
+
"authenticationMethods_other": "Authentication methods",
|
|
116
|
+
"channel_zero": "Channels",
|
|
117
|
+
"channel_one": "Channel",
|
|
118
|
+
"channel_few": "Channels",
|
|
119
|
+
"channel_other": "Channels",
|
|
120
|
+
"channels_zero": "Channels",
|
|
121
|
+
"channels_one": "Channel",
|
|
122
|
+
"channels_few": "Channels",
|
|
123
|
+
"channels_other": "Channels",
|
|
124
|
+
"collection_zero": "Collection",
|
|
125
|
+
"collection_one": "Collection",
|
|
126
|
+
"collection_few": "Collections",
|
|
127
|
+
"collection_other": "Collection",
|
|
128
|
+
"collections_zero": "Collection",
|
|
129
|
+
"collections_one": "Collection",
|
|
130
|
+
"collections_few": "Collections",
|
|
131
|
+
"collections_other": "Collection",
|
|
132
|
+
"country_zero": "Countries",
|
|
133
|
+
"country_one": "Country",
|
|
134
|
+
"country_few": "Countries",
|
|
135
|
+
"country_other": "Countries",
|
|
136
|
+
"countries_zero": "Countries",
|
|
137
|
+
"countries_one": "Country",
|
|
138
|
+
"countries_few": "Countries",
|
|
139
|
+
"countries_other": "Countries",
|
|
140
|
+
"customerGroup_zero": "Customer groups",
|
|
141
|
+
"customerGroup_one": "Customer group",
|
|
142
|
+
"customerGroup_few": "Customer groups",
|
|
143
|
+
"customerGroup_other": "Customer groups",
|
|
144
|
+
"customerGroups_zero": "Customer groups",
|
|
145
|
+
"customerGroups_one": "Customer group",
|
|
146
|
+
"customerGroups_few": "Customer groups",
|
|
147
|
+
"customerGroups_other": "Customer groups",
|
|
148
|
+
"customerHistoryEntry_zero": "Customer history entries",
|
|
149
|
+
"customerHistoryEntry_one": "Customer history entry",
|
|
150
|
+
"customerHistoryEntry_few": "Customer history entries",
|
|
151
|
+
"customerHistoryEntry_other": "Customer history entries",
|
|
152
|
+
"customer_zero": "Customers",
|
|
153
|
+
"customer_one": "Client",
|
|
154
|
+
"customer_few": "Customers",
|
|
155
|
+
"customer_other": "Customers",
|
|
156
|
+
"customers_zero": "Customers",
|
|
157
|
+
"customers_one": "Client",
|
|
158
|
+
"customers_few": "Customers",
|
|
159
|
+
"customers_other": "Customers",
|
|
160
|
+
"facetValue_zero": "Facet values",
|
|
161
|
+
"facetValue_one": "Facet value",
|
|
162
|
+
"facetValue_few": "Facet values",
|
|
163
|
+
"facetValue_other": "Facet values",
|
|
164
|
+
"facetValues_zero": "Facet values",
|
|
165
|
+
"facetValues_one": "Facet value",
|
|
166
|
+
"facetValues_few": "Facet values",
|
|
167
|
+
"facetValues_other": "Facet values",
|
|
168
|
+
"facet_zero": "Faset",
|
|
169
|
+
"facet_one": "Facet",
|
|
170
|
+
"facet_few": "Facets",
|
|
171
|
+
"facet_other": "Faset",
|
|
172
|
+
"facets_zero": "Faset",
|
|
173
|
+
"facets_one": "Facet",
|
|
174
|
+
"facets_few": "Facets",
|
|
175
|
+
"facets_other": "Faset",
|
|
176
|
+
"fulfillment_zero": "Realisations",
|
|
177
|
+
"fulfillment_one": "Implementation",
|
|
178
|
+
"fulfillment_few": "Realisations",
|
|
179
|
+
"fulfillment_other": "Realisations",
|
|
180
|
+
"fulfillments_zero": "Realisations",
|
|
181
|
+
"fulfillments_one": "Implementation",
|
|
182
|
+
"fulfillments_few": "Realisations",
|
|
183
|
+
"fulfillments_other": "Realisations",
|
|
184
|
+
"globalSettings_zero": "Global settings",
|
|
185
|
+
"globalSettings_one": "Global setting",
|
|
186
|
+
"globalSettings_few": "Global settings",
|
|
187
|
+
"globalSettings_other": "Global settings",
|
|
188
|
+
"historyEntry_zero": "History entries",
|
|
189
|
+
"historyEntry_one": "History entry",
|
|
190
|
+
"historyEntry_few": "History entries",
|
|
191
|
+
"historyEntry_other": "History entries",
|
|
192
|
+
"channelAware_zero": "Channel elements",
|
|
193
|
+
"channelAware_one": "Channel element",
|
|
194
|
+
"channelAware_few": "Channel elements",
|
|
195
|
+
"channelAware_other": "Channel elements",
|
|
196
|
+
"orderHistoryEntry_zero": "Order history entries",
|
|
197
|
+
"orderHistoryEntry_one": "Order history entry",
|
|
198
|
+
"orderHistoryEntry_few": "Order history entries",
|
|
199
|
+
"orderHistoryEntry_other": "Order history entries",
|
|
200
|
+
"orderHistoryEntries_zero": "Order history entries",
|
|
201
|
+
"orderHistoryEntries_one": "Order history entry",
|
|
202
|
+
"orderHistoryEntries_few": "Order history entries",
|
|
203
|
+
"orderHistoryEntries_other": "Order history entries",
|
|
204
|
+
"fulfillmentLine_zero": "Implementation position",
|
|
205
|
+
"fulfillmentLine_one": "Implementation position",
|
|
206
|
+
"fulfillmentLine_few": "Implementation items",
|
|
207
|
+
"fulfillmentLine_other": "Implementation position",
|
|
208
|
+
"fulfillmentLines_zero": "Implementation position",
|
|
209
|
+
"fulfillmentLines_one": "Implementation position",
|
|
210
|
+
"fulfillmentLines_few": "Implementation items",
|
|
211
|
+
"fulfillmentLines_other": "Implementation position",
|
|
212
|
+
"orderLine_zero": "Order items",
|
|
213
|
+
"orderLine_one": "Order item",
|
|
214
|
+
"orderLine_few": "Order items",
|
|
215
|
+
"orderLine_other": "Order items",
|
|
216
|
+
"orderLines_zero": "Order items",
|
|
217
|
+
"orderLines_one": "Order item",
|
|
218
|
+
"orderLines_few": "Order items",
|
|
219
|
+
"orderLines_other": "Order items",
|
|
220
|
+
"orderModification_zero": "Order modifications",
|
|
221
|
+
"orderModification_one": "Order modification",
|
|
222
|
+
"orderModification_few": "Order modifications",
|
|
223
|
+
"orderModification_other": "Order modifications",
|
|
224
|
+
"orderModifications_zero": "Order modifications",
|
|
225
|
+
"orderModifications_one": "Order modification",
|
|
226
|
+
"orderModifications_few": "Order modifications",
|
|
227
|
+
"orderModifications_other": "Order modifications",
|
|
228
|
+
"order_zero": "Orders",
|
|
229
|
+
"order_one": "Order",
|
|
230
|
+
"order_few": "Orders",
|
|
231
|
+
"order_other": "Orders",
|
|
232
|
+
"orders_zero": "Orders",
|
|
233
|
+
"orders_one": "Order",
|
|
234
|
+
"orders_few": "Orders",
|
|
235
|
+
"orders_other": "Orders",
|
|
236
|
+
"orderableAsset_zero": "Available resources",
|
|
237
|
+
"orderableAsset_one": "Orderable resource",
|
|
238
|
+
"orderableAsset_few": "Orderable resource",
|
|
239
|
+
"orderableAsset_other": "Available resources",
|
|
240
|
+
"orderableAssest_zero": "Available resources",
|
|
241
|
+
"orderableAssets_one": "Orderable resource",
|
|
242
|
+
"orderableAssets_few": "Orderable resource",
|
|
243
|
+
"orderableAssets_other": "Available resources",
|
|
244
|
+
"paymentMethod_zero": "Payment methods",
|
|
245
|
+
"paymentMethod_one": "Payment method",
|
|
246
|
+
"paymentMethod_few": "Payment methods",
|
|
247
|
+
"paymentMethod_other": "Payment methods",
|
|
248
|
+
"paymentMethods_zero": "Payment methods",
|
|
249
|
+
"paymentMethods_one": "Payment method",
|
|
250
|
+
"paymentMethods_few": "Payment methods",
|
|
251
|
+
"paymentMethods_other": "Payment methods",
|
|
252
|
+
"payment_zero": "Payments",
|
|
253
|
+
"payment_one": "Payment",
|
|
254
|
+
"payment_few": "Payments",
|
|
255
|
+
"payment_other": "Payments",
|
|
256
|
+
"payments_zero": "Payments",
|
|
257
|
+
"payments_one": "Payment",
|
|
258
|
+
"payments_few": "Payments",
|
|
259
|
+
"payments_other": "Payments",
|
|
260
|
+
"productOptionGroup_zero": "Product option groups",
|
|
261
|
+
"productOptionGroup_one": "Product option group",
|
|
262
|
+
"productOptionGroup_few": "Product option groups",
|
|
263
|
+
"productOptionGroup_other": "Product option groups",
|
|
264
|
+
"productOptionsGroup_zero": "Product option groups",
|
|
265
|
+
"productOptionsGroup_one": "Product option group",
|
|
266
|
+
"productOptionsGroup_few": "Product option groups",
|
|
267
|
+
"productOptionsGroup_other": "Product option groups",
|
|
268
|
+
"productOption_zero": "Product options",
|
|
269
|
+
"productOption_one": "Product option",
|
|
270
|
+
"productOption_few": "Product options",
|
|
271
|
+
"productOption_other": "Product options",
|
|
272
|
+
"productOptions_zero": "Product options",
|
|
273
|
+
"productOptions_one": "Product option",
|
|
274
|
+
"productOptions_few": "Product options",
|
|
275
|
+
"productOptions_other": "Product options",
|
|
276
|
+
"productVariantPrice_zero": "Prices of product variants",
|
|
277
|
+
"productVariantPrice_one": "Price of product variant",
|
|
278
|
+
"productVariantPrice_few": "Prices of product variants",
|
|
279
|
+
"productVariantPrice_other": "Prices of product variants",
|
|
280
|
+
"productVariantPrices_zero": "Prices of product variants",
|
|
281
|
+
"productVariantPrices_one": "Price of product variant",
|
|
282
|
+
"productVariantPrices_few": "Prices of product variants",
|
|
283
|
+
"productVariantPrices_other": "Prices of product variants",
|
|
284
|
+
"productVariant_zero": "Product variants",
|
|
285
|
+
"productVariant_one": "Product variant",
|
|
286
|
+
"productVariant_few": "Product variants",
|
|
287
|
+
"productVariant_other": "Product variants",
|
|
288
|
+
"productVariants_zero": "Product variants",
|
|
289
|
+
"productVariants_one": "Product variant",
|
|
290
|
+
"productVariants_few": "Product variants",
|
|
291
|
+
"productVariants_other": "Product variants",
|
|
292
|
+
"product_zero": "Products",
|
|
293
|
+
"product_one": "Product",
|
|
294
|
+
"product_few": "Products",
|
|
295
|
+
"product_other": "Products",
|
|
296
|
+
"products_zero": "Products",
|
|
297
|
+
"products_one": "Product",
|
|
298
|
+
"products_few": "Products",
|
|
299
|
+
"products_other": "Products",
|
|
300
|
+
"promotion_zero": "Promotions",
|
|
301
|
+
"promotion_one": "Promotion",
|
|
302
|
+
"promotion_few": "Promotions",
|
|
303
|
+
"promotion_other": "Promotions",
|
|
304
|
+
"promotions_zero": "Promotions",
|
|
305
|
+
"promotions_one": "Promotion",
|
|
306
|
+
"promotions_few": "Promotions",
|
|
307
|
+
"promotions_other": "Promotions",
|
|
308
|
+
"province_zero": "Provinces",
|
|
309
|
+
"province_one": "Province",
|
|
310
|
+
"province_few": "Provinces",
|
|
311
|
+
"province_other": "Provinces",
|
|
312
|
+
"provinces_zero": "Provinces",
|
|
313
|
+
"provinces_one": "Province",
|
|
314
|
+
"provinces_few": "Provinces",
|
|
315
|
+
"provinces_other": "Provinces",
|
|
316
|
+
"refund_zero": "Returns",
|
|
317
|
+
"refund_one": "Returns",
|
|
318
|
+
"refund_few": "Returns",
|
|
319
|
+
"refund_other": "Returns",
|
|
320
|
+
"refunds_zero": "Returns",
|
|
321
|
+
"refunds_one": "Returns",
|
|
322
|
+
"refunds_few": "Returns",
|
|
323
|
+
"refunds_other": "Returns",
|
|
324
|
+
"region_zero": "Regions",
|
|
325
|
+
"region_one": "Region",
|
|
326
|
+
"region_few": "Regions",
|
|
327
|
+
"region_other": "Regions",
|
|
328
|
+
"regions_zero": "Regions",
|
|
329
|
+
"regions_one": "Region",
|
|
330
|
+
"regions_few": "Regions",
|
|
331
|
+
"regions_other": "Regions",
|
|
332
|
+
"role_zero": "Ról",
|
|
333
|
+
"role_one": "Role",
|
|
334
|
+
"role_few": "Roles",
|
|
335
|
+
"role_other": "Ról",
|
|
336
|
+
"roles_zero": "Ról",
|
|
337
|
+
"roles_one": "Role",
|
|
338
|
+
"roles_few": "Roles",
|
|
339
|
+
"roles_other": "Ról",
|
|
340
|
+
"seller_zero": "Vendors",
|
|
341
|
+
"seller_one": "Vendor",
|
|
342
|
+
"seller_few": "Vendors",
|
|
343
|
+
"seller_other": "Vendors",
|
|
344
|
+
"sellers_zero": "Vendors",
|
|
345
|
+
"sellers_one": "Vendor",
|
|
346
|
+
"sellers_few": "Vendors",
|
|
347
|
+
"sellers_other": "Vendors",
|
|
348
|
+
"session_zero": "Session",
|
|
349
|
+
"session_one": "Session",
|
|
350
|
+
"session_few": "Sessions",
|
|
351
|
+
"session_other": "Session",
|
|
352
|
+
"sessions_zero": "Session",
|
|
353
|
+
"sessions_one": "Session",
|
|
354
|
+
"sessions_few": "Sessions",
|
|
355
|
+
"sessions_other": "Session",
|
|
356
|
+
"shippingLine_zero": "Delivery item",
|
|
357
|
+
"shippingLine_one": "Delivery item",
|
|
358
|
+
"shippingLine_few": "Delivery items",
|
|
359
|
+
"shippingLine_other": "Delivery item",
|
|
360
|
+
"shippingLines_zero": "Delivery item",
|
|
361
|
+
"shippingLines_one": "Delivery item",
|
|
362
|
+
"shippingLines_few": "Delivery items",
|
|
363
|
+
"shippingLines_other": "Delivery item",
|
|
364
|
+
"shippingMethod_zero": "Delivery methods",
|
|
365
|
+
"shippingMethod_one": "Delivery method",
|
|
366
|
+
"shippingMethod_few": "Delivery methods",
|
|
367
|
+
"shippingMethod_other": "Delivery methods",
|
|
368
|
+
"shippingMethods_zero": "Delivery methods",
|
|
369
|
+
"shippingMethods_one": "Delivery method",
|
|
370
|
+
"shippingMethods_few": "Delivery methods",
|
|
371
|
+
"shippingMethods_other": "Delivery methods",
|
|
372
|
+
"stockLevel_zero": "Stock levels",
|
|
373
|
+
"stockLevel_one": "Stock levels",
|
|
374
|
+
"stockLevel_few": "Stock levels",
|
|
375
|
+
"stockLevel_other": "Stock levels",
|
|
376
|
+
"stockLevels_zero": "Stock levels",
|
|
377
|
+
"stockLevels_one": "Stock levels",
|
|
378
|
+
"stockLevels_few": "Stock levels",
|
|
379
|
+
"stockLevels_other": "Stock levels",
|
|
380
|
+
"stockLocation_zero": "Storage locations",
|
|
381
|
+
"stockLocation_one": "Storage location",
|
|
382
|
+
"stockLocation_few": "Warehouse locations",
|
|
383
|
+
"stockLocation_other": "Storage locations",
|
|
384
|
+
"stockLocations_zero": "Storage locations",
|
|
385
|
+
"stockLocations_one": "Storage location",
|
|
386
|
+
"stockLocations_few": "Warehouse locations",
|
|
387
|
+
"stockLocations_other": "Storage locations",
|
|
388
|
+
"stockMovement_zero": "Storage movements",
|
|
389
|
+
"stockMovement_one": "Warehouse movement",
|
|
390
|
+
"stockMovement_few": "Storage movements",
|
|
391
|
+
"stockMovement_other": "Storage movements",
|
|
392
|
+
"stockMovements_zero": "Storage movements",
|
|
393
|
+
"stockMovements_one": "Warehouse movement",
|
|
394
|
+
"stockMovements_few": "Storage movements",
|
|
395
|
+
"stockMovements_other": "Storage movements",
|
|
396
|
+
"surcharge_zero": "Surcharge",
|
|
397
|
+
"surcharge_one": "Surcharge",
|
|
398
|
+
"surcharge_few": "Surcharges",
|
|
399
|
+
"surcharge_other": "Surcharge",
|
|
400
|
+
"surcharges_zero": "Surcharge",
|
|
401
|
+
"surcharges_one": "Surcharge",
|
|
402
|
+
"surcharges_few": "Surcharges",
|
|
403
|
+
"surcharges_other": "Surcharge",
|
|
404
|
+
"tag_zero": "Tags",
|
|
405
|
+
"tag_one": "Tag",
|
|
406
|
+
"tag_few": "Tags",
|
|
407
|
+
"tag_other": "Tags",
|
|
408
|
+
"tags_zero": "Tags",
|
|
409
|
+
"tags_one": "Tag",
|
|
410
|
+
"tags_few": "Tags",
|
|
411
|
+
"tags_other": "Tags",
|
|
412
|
+
"taxCategory_zero": "Tax categories",
|
|
413
|
+
"taxCategory_one": "Tax category",
|
|
414
|
+
"taxCategory_few": "Tax categories",
|
|
415
|
+
"taxCategory_other": "Tax categories",
|
|
416
|
+
"taxCategories_zero": "Tax categories",
|
|
417
|
+
"taxCategories_one": "Tax category",
|
|
418
|
+
"taxCategories_few": "Tax categories",
|
|
419
|
+
"taxCategories_other": "Tax categories",
|
|
420
|
+
"taxRate_zero": "Tax rates",
|
|
421
|
+
"taxRate_one": "Tax rate",
|
|
422
|
+
"taxRate_few": "Tax rates",
|
|
423
|
+
"taxRate_other": "Tax rates",
|
|
424
|
+
"taxRates_zero": "Tax rates",
|
|
425
|
+
"taxRates_one": "Tax rate",
|
|
426
|
+
"taxRates_few": "Tax rates",
|
|
427
|
+
"taxRates_other": "Tax rates",
|
|
428
|
+
"user_zero": "Users",
|
|
429
|
+
"user_one": "User",
|
|
430
|
+
"user_few": "Users",
|
|
431
|
+
"user_other": "Users",
|
|
432
|
+
"users_zero": "Users",
|
|
433
|
+
"users_one": "User",
|
|
434
|
+
"users_few": "Users",
|
|
435
|
+
"users_other": "Users",
|
|
436
|
+
"deenruvEntity_zero": "Entities",
|
|
437
|
+
"deenruvEntity_one": "Entity",
|
|
438
|
+
"deenruvEntity_few": "Entities",
|
|
439
|
+
"deenruvEntity_other": "Entities",
|
|
440
|
+
"zone_zero": "Zones",
|
|
441
|
+
"zone_one": "Zone",
|
|
442
|
+
"zone_few": "Zones",
|
|
443
|
+
"zone_other": "Zones",
|
|
444
|
+
"zones_zero": "Zones",
|
|
445
|
+
"zones_one": "Zone",
|
|
446
|
+
"zones_few": "Zones",
|
|
447
|
+
"zones_other": "Zones"
|
|
448
|
+
},
|
|
449
|
+
"Utwórz": "Create {{value}}",
|
|
450
|
+
"Zobacz wszystkie": "See all {{value}}",
|
|
451
|
+
"notificationsBox": {
|
|
452
|
+
"toggleNotifications": "Switch notifications",
|
|
453
|
+
"notifications": "Notifications",
|
|
454
|
+
"recentNotifications": "Latest notifications",
|
|
455
|
+
"markAllAsRead": "Mark all as read",
|
|
456
|
+
"clearAll": "Clear all",
|
|
457
|
+
"emptyStateMessage": "You do not have any notifications yet",
|
|
458
|
+
"emptyStateDescription": "Notifications will appear here when something happens",
|
|
459
|
+
"titleStart": "Job {{name}} started",
|
|
460
|
+
"descriptionStart": "Job {{name}} job queue started",
|
|
461
|
+
"titleComplete": "Job {{name}} completed",
|
|
462
|
+
"descriptionComplete": "Job {{name}} completed"
|
|
463
|
+
},
|
|
464
|
+
"update": "Update",
|
|
465
|
+
"create": "Create",
|
|
466
|
+
"save": "Save",
|
|
467
|
+
"remove": "Remove",
|
|
468
|
+
"upload": "Uploading",
|
|
469
|
+
"cancel": "Cancel",
|
|
470
|
+
"back": "Return",
|
|
471
|
+
"accept": "Accept",
|
|
472
|
+
"show": "Show",
|
|
473
|
+
"content": "Content",
|
|
474
|
+
"copyURL": "Copy URL",
|
|
475
|
+
"open": "Open",
|
|
476
|
+
"edit": "Edit",
|
|
477
|
+
"rebuildSerachIndex": "Rebuild search index",
|
|
478
|
+
"fastLinks": "Quick links",
|
|
479
|
+
"systemStatus": "System status",
|
|
480
|
+
"globalSettings": "Global settings",
|
|
481
|
+
"delete": "Delete",
|
|
482
|
+
"preview": "Preview",
|
|
483
|
+
"details": "Details",
|
|
484
|
+
"customFields": "Non-standard fields",
|
|
485
|
+
"defaultChannel": "Default channel",
|
|
486
|
+
"buttonDisabledTooltip": "Add correct changes to save",
|
|
487
|
+
"confirmationDialog": {
|
|
488
|
+
"title": "Confirm operation",
|
|
489
|
+
"description": "Are you sure you want to perform this action? It may be irreversible",
|
|
490
|
+
"confirmBtn": "Confirm",
|
|
491
|
+
"cancelBtn": "Cancel"
|
|
492
|
+
},
|
|
493
|
+
"emptyState": {
|
|
494
|
+
"default": {
|
|
495
|
+
"empty": {
|
|
496
|
+
"title": "Missing items",
|
|
497
|
+
"text": "No elements available yet"
|
|
498
|
+
},
|
|
499
|
+
"filtered": {
|
|
500
|
+
"title": "Nothing fits",
|
|
501
|
+
"text": "There are no items matching the search terms"
|
|
502
|
+
}
|
|
503
|
+
},
|
|
504
|
+
"orders": {
|
|
505
|
+
"empty": {
|
|
506
|
+
"title": "No orders",
|
|
507
|
+
"text": "No orders yet"
|
|
508
|
+
},
|
|
509
|
+
"filtered": {
|
|
510
|
+
"title": "Nothing fits",
|
|
511
|
+
"text": "There are no orders matching the search terms"
|
|
512
|
+
}
|
|
513
|
+
},
|
|
514
|
+
"facets": {
|
|
515
|
+
"empty": {
|
|
516
|
+
"title": "No value",
|
|
517
|
+
"text": "There are no aspect values yet. Would you like to add them?"
|
|
518
|
+
},
|
|
519
|
+
"filtered": {
|
|
520
|
+
"title": "Nothing fits",
|
|
521
|
+
"text": "There are no orders matching the search terms"
|
|
522
|
+
}
|
|
523
|
+
}
|
|
524
|
+
},
|
|
525
|
+
"maintenance": {
|
|
526
|
+
"title": "Page under construction",
|
|
527
|
+
"text": "We are currently working on making all the features of this site available."
|
|
528
|
+
},
|
|
529
|
+
"next": "next",
|
|
530
|
+
"previous": "previous",
|
|
531
|
+
"perPagePlaceholder": "Elements per page",
|
|
532
|
+
"page": "Page {{current}} with {{total}}",
|
|
533
|
+
"rowsPerPage": "Lines per page",
|
|
534
|
+
"perPage": {
|
|
535
|
+
"10perPage": "10",
|
|
536
|
+
"25perPage": "25",
|
|
537
|
+
"32perPage": "32",
|
|
538
|
+
"48perPage": "48",
|
|
539
|
+
"50perPage": "50",
|
|
540
|
+
"64perPage": "64",
|
|
541
|
+
"100perPage": "100"
|
|
542
|
+
},
|
|
543
|
+
"menuGroups": {
|
|
544
|
+
"shop": "My shop",
|
|
545
|
+
"assortment": "Assortment",
|
|
546
|
+
"settings": "Settings",
|
|
547
|
+
"users": "Users",
|
|
548
|
+
"shipping": "Shipping and payment",
|
|
549
|
+
"promotions": "Promotions"
|
|
550
|
+
},
|
|
551
|
+
"manageEntityFacetsDialog": {
|
|
552
|
+
"title": "Bulk edit aspects in",
|
|
553
|
+
"addFacet": "Add facet to all selected",
|
|
554
|
+
"assignFacet": "Assign to selected",
|
|
555
|
+
"allSelectedFacetValues": "All selected values",
|
|
556
|
+
"facetValues": "facets",
|
|
557
|
+
"products": {
|
|
558
|
+
"in": "products",
|
|
559
|
+
"selected": "products"
|
|
560
|
+
},
|
|
561
|
+
"collections": {
|
|
562
|
+
"in": "collections",
|
|
563
|
+
"selected": "collections"
|
|
564
|
+
}
|
|
565
|
+
},
|
|
566
|
+
"menu": {
|
|
567
|
+
"product": "Product",
|
|
568
|
+
"options": "Options",
|
|
569
|
+
"variants": "Variants",
|
|
570
|
+
"adminUiV2": "Admin UI",
|
|
571
|
+
"extensions": "extensions",
|
|
572
|
+
"dashboard": "desktop",
|
|
573
|
+
"status": "status",
|
|
574
|
+
"products": "products",
|
|
575
|
+
"customers": "customers",
|
|
576
|
+
"customerGroups": "customer groups",
|
|
577
|
+
"productVariants": "product variants",
|
|
578
|
+
"collections": "collections",
|
|
579
|
+
"orders": "orders",
|
|
580
|
+
"facets": "aspects of",
|
|
581
|
+
"channels": "channels",
|
|
582
|
+
"globalSettings": "global settings",
|
|
583
|
+
"roles": "roles",
|
|
584
|
+
"admins": "administrators",
|
|
585
|
+
"stock": "storage locations",
|
|
586
|
+
"sellers": "retailers",
|
|
587
|
+
"assets": "assets",
|
|
588
|
+
"zones": "zones",
|
|
589
|
+
"promotions": "promotions",
|
|
590
|
+
"countries": "countries",
|
|
591
|
+
"paymentMethods": "payment methods",
|
|
592
|
+
"shippingMethods": "shipping methods",
|
|
593
|
+
"stockLocations": "warehouse locations",
|
|
594
|
+
"taxCategories": "tax categories",
|
|
595
|
+
"taxRates": "tax rates",
|
|
596
|
+
"logOut": "logout",
|
|
597
|
+
"systemStatus": "system status"
|
|
598
|
+
},
|
|
599
|
+
"noFilterField": "None",
|
|
600
|
+
"draft": "Project",
|
|
601
|
+
"addingItems": "Adding elements",
|
|
602
|
+
"arrangingPayment": "Organising payments",
|
|
603
|
+
"arrangingAdditionalPayment": "Arranging an additional payment",
|
|
604
|
+
"paymentAuthorized": "Authorised payment",
|
|
605
|
+
"paymentSettled": "Cleared payment",
|
|
606
|
+
"shipped": "Sent",
|
|
607
|
+
"partiallyShipped": "Partially dispatched",
|
|
608
|
+
"partiallyFulfilled": "Partially executed",
|
|
609
|
+
"partiallyDelivered": "Partially executed",
|
|
610
|
+
"delivered": "Delivered",
|
|
611
|
+
"cancelled": "Cancelled",
|
|
612
|
+
"modifying": "Modification",
|
|
613
|
+
"inRealization": "In implementation",
|
|
614
|
+
"logInHeader": "Log in to Deenruv",
|
|
615
|
+
"userName": "User name",
|
|
616
|
+
"password": "Password",
|
|
617
|
+
"rememberMe": "Remember me",
|
|
618
|
+
"login": "Login",
|
|
619
|
+
"welcome": "Hello again. Good to see you again.",
|
|
620
|
+
"photoBy": "Photo by",
|
|
621
|
+
"unsplash": "Unsplash",
|
|
622
|
+
"poweredBy": "Powered by",
|
|
623
|
+
"logDeenruv": "Log in to Deenruv",
|
|
624
|
+
"awesomeMenu": {
|
|
625
|
+
"activeAdministratorsValue": "Active administrators ({{value}})",
|
|
626
|
+
"activeAdministrators": "Active administrators",
|
|
627
|
+
"noActiveAdministrators": "No active administrators",
|
|
628
|
+
"justNow": "just now",
|
|
629
|
+
"oneMinAgo": "1 minute ago",
|
|
630
|
+
"valueMinAgo": "{{diffInMinutes}} minutes ago",
|
|
631
|
+
"above5MinAgo": "more than 5 minutes ago",
|
|
632
|
+
"unknown": "---"
|
|
633
|
+
},
|
|
634
|
+
"setup": {
|
|
635
|
+
"failedCountries": "Failed to load countries",
|
|
636
|
+
"failedServer": "Failed to load server settings",
|
|
637
|
+
"failedAdmin": "Failed to load active administrator",
|
|
638
|
+
"failedPayments": "Payment methods could not be loaded",
|
|
639
|
+
"failedFulfillments": "Failed to load fulfilment service",
|
|
640
|
+
"failed": "Failed to load"
|
|
641
|
+
},
|
|
642
|
+
"language": "Language",
|
|
643
|
+
"logOut": "Logout",
|
|
644
|
+
"logOutConfirmation": "Are you sure you want to log out?",
|
|
645
|
+
"logOutConfirmationDescription": "When you log out, you will be redirected to the login page. Your session will be terminated.",
|
|
646
|
+
"clear": "Clean",
|
|
647
|
+
"clearCache": "Clear cache",
|
|
648
|
+
"themeLight": "Light",
|
|
649
|
+
"themeDark": "Dark",
|
|
650
|
+
"themeSystem": "System",
|
|
651
|
+
"toggleTheme": "Switching theme",
|
|
652
|
+
"notifications": "Notifications",
|
|
653
|
+
"noNewNotifications": "No new notifications",
|
|
654
|
+
"toggleNotifications": "Switch notifications",
|
|
655
|
+
"dashboard": "Dashboard",
|
|
656
|
+
"search": {
|
|
657
|
+
"advanceToggle": "Advanced search",
|
|
658
|
+
"basicToggle": "Basic search",
|
|
659
|
+
"addFilter": "Add filter",
|
|
660
|
+
"filterBy": "Filter by {{value}}:",
|
|
661
|
+
"selectType": "Select type",
|
|
662
|
+
"filterType": "Filter type",
|
|
663
|
+
"value": "Value",
|
|
664
|
+
"apply": "Use",
|
|
665
|
+
"valueFrom": "From value:",
|
|
666
|
+
"valueTo": "To value:",
|
|
667
|
+
"true": "True",
|
|
668
|
+
"false": "False",
|
|
669
|
+
"idIsEqual": "Id equal:",
|
|
670
|
+
"AssetFilterParameter": {
|
|
671
|
+
"placeholder": "Search by name"
|
|
672
|
+
},
|
|
673
|
+
"CollectionFilterParameter": {
|
|
674
|
+
"placeholder": "Search by name"
|
|
675
|
+
},
|
|
676
|
+
"FacetFilterParameter": {
|
|
677
|
+
"placeholder": "Search by name"
|
|
678
|
+
},
|
|
679
|
+
"OrderFilterParameter": {
|
|
680
|
+
"placeholder": "Search by customer name/ID/code/transaction ID"
|
|
681
|
+
},
|
|
682
|
+
"ProductFilterParameter": {
|
|
683
|
+
"placeholder": "Search by name"
|
|
684
|
+
},
|
|
685
|
+
"CountryFilterParameter": {
|
|
686
|
+
"placeholder": "Search by name"
|
|
687
|
+
},
|
|
688
|
+
"AdministratorFilterParameter": {
|
|
689
|
+
"placeholder": "Search by e-mail address"
|
|
690
|
+
},
|
|
691
|
+
"RoleFilterParameter": {
|
|
692
|
+
"placeholder": "Search by name"
|
|
693
|
+
},
|
|
694
|
+
"ChannelFilterParameter": {
|
|
695
|
+
"placeholder": "Search by code"
|
|
696
|
+
},
|
|
697
|
+
"ZoneFilterParameter": {
|
|
698
|
+
"placeholder": "Search by name"
|
|
699
|
+
},
|
|
700
|
+
"TaxCategoryFilterParameter": {
|
|
701
|
+
"placeholder": "Search by name"
|
|
702
|
+
},
|
|
703
|
+
"TaxRateFilterParameter": {
|
|
704
|
+
"placeholder": "Search by name"
|
|
705
|
+
},
|
|
706
|
+
"StockLocationFilterParameter": {
|
|
707
|
+
"placeholder": "Search by name"
|
|
708
|
+
},
|
|
709
|
+
"SellerFilterParameter": {
|
|
710
|
+
"placeholder": "Search by name"
|
|
711
|
+
},
|
|
712
|
+
"PaymentMethodFilterParameter": {
|
|
713
|
+
"placeholder": "Search by name"
|
|
714
|
+
},
|
|
715
|
+
"ShippingMethodFilterParameter": {
|
|
716
|
+
"placeholder": "Search by name"
|
|
717
|
+
},
|
|
718
|
+
"filterLabels": {
|
|
719
|
+
"active": "Active",
|
|
720
|
+
"additionalInformation": "Additional information",
|
|
721
|
+
"code": "Code",
|
|
722
|
+
"createdAt": "Established in",
|
|
723
|
+
"currencyCode": "Currency code",
|
|
724
|
+
"customerLastName": "Customer name",
|
|
725
|
+
"id": "Id",
|
|
726
|
+
"orderPlacedAt": "Order placed at",
|
|
727
|
+
"shipping": "Shipping",
|
|
728
|
+
"shippingWithTax": "Shipping with tax",
|
|
729
|
+
"state": "State",
|
|
730
|
+
"subTotal": "Subtotal",
|
|
731
|
+
"subTotalWithTax": "Sub-total with tax",
|
|
732
|
+
"token": "Token",
|
|
733
|
+
"total": "total",
|
|
734
|
+
"totalQuantity": "Total quantity",
|
|
735
|
+
"totalWithTax": "Total incl. tax",
|
|
736
|
+
"transactionId": "Transaction ID",
|
|
737
|
+
"type": "Type",
|
|
738
|
+
"updatedAt": "Updated by",
|
|
739
|
+
"aggregateOrderId": "Aggregate order identifier",
|
|
740
|
+
"getProforma": "Download proforma",
|
|
741
|
+
"registeredOnCheckout": "Registered at checkout",
|
|
742
|
+
"enabled": "Included",
|
|
743
|
+
"name": "Name",
|
|
744
|
+
"firstName": "Name",
|
|
745
|
+
"phoneNumber": "Telephone number",
|
|
746
|
+
"emailAddress": "E-mail address",
|
|
747
|
+
"slug": "Short name (slug)",
|
|
748
|
+
"description": "Description",
|
|
749
|
+
"isPrivate": "Is private",
|
|
750
|
+
"inheritFilters": "Filter inheritance",
|
|
751
|
+
"position": "Position",
|
|
752
|
+
"parentId": "Parent identifier",
|
|
753
|
+
"usedForProductCreations": "It is used to create products",
|
|
754
|
+
"usedForColors": "It is used for colours",
|
|
755
|
+
"colorsCollection": "Is a collection of colours",
|
|
756
|
+
"zone": "Zone",
|
|
757
|
+
"value": "Rate",
|
|
758
|
+
"customerGroup": "Customer group",
|
|
759
|
+
"category": "Category",
|
|
760
|
+
"modalTitle": "Modal title",
|
|
761
|
+
"_and": "and",
|
|
762
|
+
"_or": "or"
|
|
763
|
+
},
|
|
764
|
+
"operator": {
|
|
765
|
+
"eq": "Equal",
|
|
766
|
+
"notEq": "Is not equal to",
|
|
767
|
+
"contains": "Contains",
|
|
768
|
+
"notContains": "Does not contain",
|
|
769
|
+
"before": "Before",
|
|
770
|
+
"regex": "Matches a regular expression",
|
|
771
|
+
"after": "After",
|
|
772
|
+
"between": "Between",
|
|
773
|
+
"lt": "Lower than",
|
|
774
|
+
"lte": "Lower or equal to",
|
|
775
|
+
"gt": "Greater than",
|
|
776
|
+
"gte": "Greater than or equal to"
|
|
777
|
+
},
|
|
778
|
+
"inOperator": {
|
|
779
|
+
"Created": "Created",
|
|
780
|
+
"Draft": "Project",
|
|
781
|
+
"AddingItems": "Adding elements",
|
|
782
|
+
"ArrangingPayment": "Organising payments",
|
|
783
|
+
"PaymentAuthorized": "Authorised payment",
|
|
784
|
+
"PaymentSettled": "Cleared payment",
|
|
785
|
+
"PartiallyShipped": "Partially dispatched",
|
|
786
|
+
"Shipped": "Sent",
|
|
787
|
+
"PartiallyDelivered": "Partially delivered",
|
|
788
|
+
"Delivered": "Delivered",
|
|
789
|
+
"Modifying": "Modification",
|
|
790
|
+
"ArrangingAdditionalPayment": "Arranging an additional payment",
|
|
791
|
+
"Cancelled": "Cancelled",
|
|
792
|
+
"InRealization": "In implementation",
|
|
793
|
+
"Regular": "Regular",
|
|
794
|
+
"Aggregate": "Aggregate",
|
|
795
|
+
"Seller": "Vendor"
|
|
796
|
+
}
|
|
797
|
+
},
|
|
798
|
+
"languageCodePlaceholder": "Select language",
|
|
799
|
+
"languageCode": {
|
|
800
|
+
"af": "Afrikaans",
|
|
801
|
+
"ak": "Akan",
|
|
802
|
+
"am": "Amharic",
|
|
803
|
+
"ar": "Arabic",
|
|
804
|
+
"as": "Assamese",
|
|
805
|
+
"az": "Azerbaijan",
|
|
806
|
+
"be": "Belarusian",
|
|
807
|
+
"bg": "Bulgarian",
|
|
808
|
+
"bm": "Bambara",
|
|
809
|
+
"bn": "Bengal",
|
|
810
|
+
"bo": "Tibetan",
|
|
811
|
+
"br": "Breton",
|
|
812
|
+
"bs": "Bosnian",
|
|
813
|
+
"ca": "Catalan",
|
|
814
|
+
"ce": "Chechen",
|
|
815
|
+
"co": "Corsican",
|
|
816
|
+
"cs": "Czech",
|
|
817
|
+
"cu": "Orthodox Slavonic language",
|
|
818
|
+
"cy": "Welsh",
|
|
819
|
+
"da": "Danish",
|
|
820
|
+
"de": "German",
|
|
821
|
+
"de_AT": "Austrian German",
|
|
822
|
+
"de_CH": "Swiss German",
|
|
823
|
+
"dz": "Dzongkha",
|
|
824
|
+
"ee": "Ewe",
|
|
825
|
+
"el": "Greek",
|
|
826
|
+
"en": "English",
|
|
827
|
+
"en_AU": "Australian English",
|
|
828
|
+
"en_CA": "Canadian English",
|
|
829
|
+
"en_GB": "British English",
|
|
830
|
+
"en_US": "American English",
|
|
831
|
+
"eo": "Esperanto",
|
|
832
|
+
"es": "Spanish",
|
|
833
|
+
"es_ES": "European Spanish",
|
|
834
|
+
"es_MX": "Mexican Spanish",
|
|
835
|
+
"et": "Estonian",
|
|
836
|
+
"eu": "Basque",
|
|
837
|
+
"fa": "Persian",
|
|
838
|
+
"fa_AF": "Persian Afghanistan",
|
|
839
|
+
"ff": "Fulah",
|
|
840
|
+
"fi": "Finnish",
|
|
841
|
+
"fo": "Sheep",
|
|
842
|
+
"fr": "French",
|
|
843
|
+
"fr_CA": "Canadian French",
|
|
844
|
+
"fr_CH": "Swiss French",
|
|
845
|
+
"fy": "West Frisian",
|
|
846
|
+
"ga": "Irish",
|
|
847
|
+
"gd": "Gaelic, Scottish Gaelic",
|
|
848
|
+
"gl": "Gaelic",
|
|
849
|
+
"gu": "Gujarati",
|
|
850
|
+
"gv": "Manx",
|
|
851
|
+
"ha": "Hausa",
|
|
852
|
+
"he": "Hebrew",
|
|
853
|
+
"hi": "Hindi",
|
|
854
|
+
"hr": "Croatian",
|
|
855
|
+
"ht": "Haitian, Haitian Creole",
|
|
856
|
+
"hu": "Hungarian",
|
|
857
|
+
"hy": "Armenian",
|
|
858
|
+
"ia": "Interlingua",
|
|
859
|
+
"id": "Indonesian",
|
|
860
|
+
"ig": "Igbo",
|
|
861
|
+
"ii": "Sichuan Yi, Nuosu",
|
|
862
|
+
"is": "Icelandic",
|
|
863
|
+
"it": "Italian",
|
|
864
|
+
"ja": "Japanese",
|
|
865
|
+
"jv": "Javanese",
|
|
866
|
+
"ka": "Georgian",
|
|
867
|
+
"ki": "Kikuyu, Gikuyu",
|
|
868
|
+
"kk": "Kazakhstan",
|
|
869
|
+
"kl": "Kalaallisut, Greenlandic",
|
|
870
|
+
"km": "Central Khmer",
|
|
871
|
+
"kn": "Kannada",
|
|
872
|
+
"ko": "Korean",
|
|
873
|
+
"ks": "Kashmiri",
|
|
874
|
+
"ku": "Kurdish",
|
|
875
|
+
"kw": "Cornish",
|
|
876
|
+
"ky": "Kyrgyz, Kyrgyz",
|
|
877
|
+
"la": "Latin",
|
|
878
|
+
"lb": "Luxembourg, Letzeburgesch",
|
|
879
|
+
"lg": "Ganda",
|
|
880
|
+
"ln": "Lingala",
|
|
881
|
+
"lo": "Lao",
|
|
882
|
+
"lt": "Lithuanian",
|
|
883
|
+
"lu": "Luba-Katanga",
|
|
884
|
+
"lv": "Latvia",
|
|
885
|
+
"mg": "Malagasy",
|
|
886
|
+
"mi": "Maori",
|
|
887
|
+
"mk": "Macedonian",
|
|
888
|
+
"ml": "Malayalam",
|
|
889
|
+
"mn": "Mongolian",
|
|
890
|
+
"mr": "Marathi",
|
|
891
|
+
"ms": "Malay",
|
|
892
|
+
"mt": "Maltese",
|
|
893
|
+
"my": "Burmese",
|
|
894
|
+
"nb": "Norwegian Bokmål",
|
|
895
|
+
"nd": "Northern Ndebele",
|
|
896
|
+
"ne": "Nepalese",
|
|
897
|
+
"nl": "Dutch",
|
|
898
|
+
"nl_BE": "Dutch, Belgium",
|
|
899
|
+
"nn": "Norwegian Nynorsk",
|
|
900
|
+
"ny": "Chichewa",
|
|
901
|
+
"om": "Oromo",
|
|
902
|
+
"or": "Orija",
|
|
903
|
+
"os": "Ossetian",
|
|
904
|
+
"pa": "Punjabi",
|
|
905
|
+
"pl": "Polish",
|
|
906
|
+
"ps": "Paszto",
|
|
907
|
+
"pt": "Portuguese",
|
|
908
|
+
"pt_BR": "Brazilian Portuguese",
|
|
909
|
+
"pt_PT": "European Portuguese",
|
|
910
|
+
"qu": "Ketchua",
|
|
911
|
+
"rm": "Romance language",
|
|
912
|
+
"rn": "Rundi",
|
|
913
|
+
"ro": "Romanian",
|
|
914
|
+
"ro_MD": "Moldovan",
|
|
915
|
+
"ru": "Russian",
|
|
916
|
+
"rw": "Kinyarwanda",
|
|
917
|
+
"sa": "Sanskrit",
|
|
918
|
+
"sd": "Sindhi",
|
|
919
|
+
"se": "Northern Sami",
|
|
920
|
+
"sg": "Sango",
|
|
921
|
+
"si": "Sinhala",
|
|
922
|
+
"sk": "Slovak",
|
|
923
|
+
"sl": "Slovenian",
|
|
924
|
+
"sm": "Samoan",
|
|
925
|
+
"sn": "Shona",
|
|
926
|
+
"so": "Somali",
|
|
927
|
+
"sq": "Albanian",
|
|
928
|
+
"sr": "Serbian",
|
|
929
|
+
"st": "South Sotho",
|
|
930
|
+
"su": "Sundanese",
|
|
931
|
+
"sv": "Swedish",
|
|
932
|
+
"sw": "Swahili",
|
|
933
|
+
"sw_CD": "Congo Swahili",
|
|
934
|
+
"ta": "Tamil",
|
|
935
|
+
"te": "Telugu",
|
|
936
|
+
"tg": "Tajik",
|
|
937
|
+
"th": "Thai",
|
|
938
|
+
"ti": "Tigrinya",
|
|
939
|
+
"tk": "Turkmen",
|
|
940
|
+
"to": "Tonga",
|
|
941
|
+
"tr": "Turkish",
|
|
942
|
+
"tt": "Tatar",
|
|
943
|
+
"ug": "Uyghur",
|
|
944
|
+
"uk": "Ukrainian",
|
|
945
|
+
"ur": "Urdu",
|
|
946
|
+
"uz": "Uzbek",
|
|
947
|
+
"vi": "Vietnamese",
|
|
948
|
+
"vo": "Volapük",
|
|
949
|
+
"wo": "Wolof",
|
|
950
|
+
"xh": "Xhosa",
|
|
951
|
+
"yi": "Yiddish",
|
|
952
|
+
"yo": "Yoruba",
|
|
953
|
+
"zh": "Chinese",
|
|
954
|
+
"zh_Hans": "Simplified Chinese",
|
|
955
|
+
"zh_Hant": "Traditional Chinese",
|
|
956
|
+
"zu": "Zulu"
|
|
957
|
+
},
|
|
958
|
+
"asset": {
|
|
959
|
+
"dialogTitle": "Select resource",
|
|
960
|
+
"dialogButton": "Select resource",
|
|
961
|
+
"dialogSearchPlaceholder": "Searching for resources by name",
|
|
962
|
+
"tags": "Filter by tag",
|
|
963
|
+
"perPageValue": "{{value}} per page",
|
|
964
|
+
"confirmButton": "Add resource",
|
|
965
|
+
"cancel": "Cancel",
|
|
966
|
+
"noImages": "No resources for a specific search",
|
|
967
|
+
"description": "Uploading and managing resources that can be used in content"
|
|
968
|
+
},
|
|
969
|
+
"product": {
|
|
970
|
+
"dialogTitle": "Select a product",
|
|
971
|
+
"dialogButton": "Select a product",
|
|
972
|
+
"dialogSearchPlaceholder": "Product search by name",
|
|
973
|
+
"perPageValue": "{{value}} per page",
|
|
974
|
+
"confirmButton": "Add product",
|
|
975
|
+
"cancel": "Cancel"
|
|
976
|
+
},
|
|
977
|
+
"paymentMethods": {
|
|
978
|
+
"3": "Other",
|
|
979
|
+
"4": "Other",
|
|
980
|
+
"przelewy24": "Przelewy24",
|
|
981
|
+
"standard-payment": "Standard payment",
|
|
982
|
+
"przelew-bankowy": "Bank transfer",
|
|
983
|
+
"gotowka-za-pobraniem": "Cash on delivery",
|
|
984
|
+
"undefined": "Other"
|
|
985
|
+
},
|
|
986
|
+
"selectedValue": "{{from}} of {{to}} lines selected",
|
|
987
|
+
"deleteOrCancel": "Delete/Cancel option selected",
|
|
988
|
+
"actionsMenu": {
|
|
989
|
+
"openMenu": "Open menu",
|
|
990
|
+
"copyId": "Copy Id",
|
|
991
|
+
"delete": "Delete",
|
|
992
|
+
"view": "View"
|
|
993
|
+
},
|
|
994
|
+
"toasts": {
|
|
995
|
+
"success": {
|
|
996
|
+
"update": "Successfully updated",
|
|
997
|
+
"upload": "Resource successfully uploaded"
|
|
998
|
+
},
|
|
999
|
+
"error": {
|
|
1000
|
+
"fetch": "Error during data download",
|
|
1001
|
+
"mutation": "Error while updating",
|
|
1002
|
+
"upload": "Error while uploading"
|
|
1003
|
+
}
|
|
1004
|
+
},
|
|
1005
|
+
"custom-fields": {
|
|
1006
|
+
"title": "Non-standard fields",
|
|
1007
|
+
"description": "The fields created by the server plug-ins can be found here",
|
|
1008
|
+
"clear": "Clean",
|
|
1009
|
+
"asset": {
|
|
1010
|
+
"title": "List of assets",
|
|
1011
|
+
"description": "Select assets from the following list",
|
|
1012
|
+
"pick": "Select resource"
|
|
1013
|
+
},
|
|
1014
|
+
"product": {
|
|
1015
|
+
"title": "List of products",
|
|
1016
|
+
"description": "Select products from the following list",
|
|
1017
|
+
"pick": "Select a product"
|
|
1018
|
+
},
|
|
1019
|
+
"productvariant": {
|
|
1020
|
+
"title": "List of product variants",
|
|
1021
|
+
"description": "Select product variants from the following list",
|
|
1022
|
+
"pick": "Select a product variant"
|
|
1023
|
+
}
|
|
1024
|
+
},
|
|
1025
|
+
"history": {
|
|
1026
|
+
"edit": "Edit",
|
|
1027
|
+
"edited": "(edited)",
|
|
1028
|
+
"delete": "Delete",
|
|
1029
|
+
"deleteNoteHeader": "Delete note?",
|
|
1030
|
+
"editNoteHeader": "Edit note",
|
|
1031
|
+
"isPrivate": "The note is private",
|
|
1032
|
+
"isPrivateDescription": "(optional)",
|
|
1033
|
+
"toAdmins": "Only visible for administrators",
|
|
1034
|
+
"toAdminsAndCustomer": "Visible to administrators and customers",
|
|
1035
|
+
"sure": "Are you sure?",
|
|
1036
|
+
"cancel": "Cancel",
|
|
1037
|
+
"addComment": "Add comment",
|
|
1038
|
+
"addCommentButton": "Add comment",
|
|
1039
|
+
"sureDescription": "Unable to restore a deleted note",
|
|
1040
|
+
"showPayment": "Show payment",
|
|
1041
|
+
"paymentId": "Payment ID: {{value}}",
|
|
1042
|
+
"showFulfillment": "Show implementation",
|
|
1043
|
+
"fulfillmentId": "Realisation identifier: {{value}}",
|
|
1044
|
+
"deleteError": "Something went wrong when removing the note from the order: {{value}}",
|
|
1045
|
+
"editError": "Something went wrong when editing a note",
|
|
1046
|
+
"addError": "Something went wrong when adding a note to an order",
|
|
1047
|
+
"from": "From:",
|
|
1048
|
+
"to": "to:",
|
|
1049
|
+
"createdAt": "Created in: {{value}}",
|
|
1050
|
+
"updatedAt": "Updated at: {{value}}",
|
|
1051
|
+
"private": "private",
|
|
1052
|
+
"public": "public",
|
|
1053
|
+
"noteContent": "Content of comment:",
|
|
1054
|
+
"commentPlaceholder": "Enter your note here...",
|
|
1055
|
+
"timeline": "Timeline",
|
|
1056
|
+
"quantityOld": "Old number of pieces",
|
|
1057
|
+
"quantityNew": "New number of pieces",
|
|
1058
|
+
"entryType": {
|
|
1059
|
+
"CUSTOMER_REGISTERED": "Registered customer",
|
|
1060
|
+
"CUSTOMER_VERIFIED": "Verified customer",
|
|
1061
|
+
"CUSTOMER_DETAIL_UPDATED": "Customer details have been updated",
|
|
1062
|
+
"CUSTOMER_ADDED_TO_GROUP": "Customer added to the group",
|
|
1063
|
+
"CUSTOMER_REMOVED_FROM_GROUP": "Client removed from the group",
|
|
1064
|
+
"CUSTOMER_ADDRESS_CREATED": "Customer address created",
|
|
1065
|
+
"CUSTOMER_ADDRESS_UPDATED": "Customer address updated",
|
|
1066
|
+
"CUSTOMER_ADDRESS_DELETED": "Deleted customer address",
|
|
1067
|
+
"CUSTOMER_PASSWORD_UPDATED": "Customer password updated",
|
|
1068
|
+
"CUSTOMER_PASSWORD_RESET_REQUESTED": "Request to reset customer password",
|
|
1069
|
+
"CUSTOMER_PASSWORD_RESET_VERIFIED": "Customer password reset verified",
|
|
1070
|
+
"CUSTOMER_EMAIL_UPDATE_REQUESTED": "Customer's e-mail address was requested to be updated",
|
|
1071
|
+
"CUSTOMER_EMAIL_UPDATE_VERIFIED": "Customer's e-mail address update verified",
|
|
1072
|
+
"CUSTOMER_NOTE": "Customer attention",
|
|
1073
|
+
"ORDER_STATE_TRANSITION": "Move to order status",
|
|
1074
|
+
"ORDER_PAYMENT_TRANSITION": "Passage to order payment",
|
|
1075
|
+
"ORDER_FULFILLMENT": "Order processing",
|
|
1076
|
+
"ORDER_CANCELLATION": "Order cancellation",
|
|
1077
|
+
"ORDER_REFUND_TRANSITION": "Return of order",
|
|
1078
|
+
"ORDER_FULFILLMENT_TRANSITION": "Order processing pass-through",
|
|
1079
|
+
"ORDER_NOTE": "Note to order",
|
|
1080
|
+
"ORDER_COUPON_APPLIED": "Order voucher used",
|
|
1081
|
+
"ORDER_COUPON_REMOVED": "Order voucher deleted",
|
|
1082
|
+
"ORDER_MODIFIED": "Order modified",
|
|
1083
|
+
"ORDER_CUSTOMER_UPDATED": "Order customer has been updated"
|
|
1084
|
+
}
|
|
1085
|
+
},
|
|
1086
|
+
"noImage": "No image for the item",
|
|
1087
|
+
"validation": {
|
|
1088
|
+
"conditionsCode": "At least one condition is required",
|
|
1089
|
+
"conditionsArgs": "Fill in all fields",
|
|
1090
|
+
"actionsCode": "At least one action is required",
|
|
1091
|
+
"actionsArgs": "Fill in all fields",
|
|
1092
|
+
"fieldRequired": "This field is required",
|
|
1093
|
+
"nameRequired": "Name is required",
|
|
1094
|
+
"emailRequired": "Email is required",
|
|
1095
|
+
"emailPattern": "Please enter a valid email address",
|
|
1096
|
+
"configurableCodeRequired": "Option is required",
|
|
1097
|
+
"configurableArgsRequired": "Fill in all fields"
|
|
1098
|
+
},
|
|
1099
|
+
"globalErrors": {
|
|
1100
|
+
"foreignKeyError": "Unable to delete object from table {{parentTable}} because there is a dependency in table {{dependentTable}}. First delete the related records or update their references.",
|
|
1101
|
+
"defaultError": "An unexpected error occurred"
|
|
1102
|
+
},
|
|
1103
|
+
"filters": "Filters",
|
|
1104
|
+
"loading": "Charging ...",
|
|
1105
|
+
"globalSearch": {
|
|
1106
|
+
"placeholder": "Enter command or search",
|
|
1107
|
+
"navigation": "Navigation",
|
|
1108
|
+
"emptyState": "Nothing found",
|
|
1109
|
+
"createNew": "Create new",
|
|
1110
|
+
"viewLists": "Display lists",
|
|
1111
|
+
"plugins": "Plug-ins",
|
|
1112
|
+
"navigate": "Select",
|
|
1113
|
+
"select": "Go to",
|
|
1114
|
+
"close": "Close",
|
|
1115
|
+
"navigateTo": "Skip to",
|
|
1116
|
+
"accessPlugin": "Access plug {{pluginName}}"
|
|
1117
|
+
},
|
|
1118
|
+
"widgets": {
|
|
1119
|
+
"title": "Widgets",
|
|
1120
|
+
"add": "Add widget",
|
|
1121
|
+
"addFirst": "Add your first widget",
|
|
1122
|
+
"emptyState": "No widgets enabled",
|
|
1123
|
+
"emptyStateDescription": "Your desktop is empty. Add widgets to find a wealth of information here.",
|
|
1124
|
+
"emptyStateDescription2": "Widgets help you visualise data and have quick access to key functions. Add the first one to get started."
|
|
1125
|
+
},
|
|
1126
|
+
"goBackToList": "Back to list"
|
|
1127
|
+
}
|