@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,932 @@
|
|
|
1
|
+
{
|
|
2
|
+
"add": "Add your order",
|
|
3
|
+
"selectPaymentMethod": "Select a payment method",
|
|
4
|
+
"enterTransactionId": "Enter transaction id",
|
|
5
|
+
"applyChanges": "Apply changes",
|
|
6
|
+
"reviewChanges": "Review changes",
|
|
7
|
+
"note": "Add note",
|
|
8
|
+
"noChanges": "No change",
|
|
9
|
+
"previous": "Previous",
|
|
10
|
+
"current": "Current",
|
|
11
|
+
"disabledBtnTooltip": "Note to be entered",
|
|
12
|
+
"modifySuccess": "Order has been successfully modified",
|
|
13
|
+
"image": "image",
|
|
14
|
+
"name": "name",
|
|
15
|
+
"slug": "Short name (slug)",
|
|
16
|
+
"variants": "variants",
|
|
17
|
+
"enabled": "on",
|
|
18
|
+
"copied": "Text copied to clipboard",
|
|
19
|
+
"noFilterField": "None",
|
|
20
|
+
"columns": "Columns",
|
|
21
|
+
"deleteOrCancel": "Delete/Cancel option selected",
|
|
22
|
+
"selectedValue": "{{from}} of {{to}} lines selected",
|
|
23
|
+
"discountByValue": "Discount {{value}}",
|
|
24
|
+
"editOptions": "Edit options",
|
|
25
|
+
"total": "Total",
|
|
26
|
+
"totalItems": "Total price of {{value}} products",
|
|
27
|
+
"addPaymentInfo": "Add payment to proceed",
|
|
28
|
+
"markFulfillmentInfo": "Mark completion as delivered or cancel",
|
|
29
|
+
"cancellationLabel": "Give reason for cancellation",
|
|
30
|
+
"cancellationReasons": {
|
|
31
|
+
"clientRequest": "Customer request",
|
|
32
|
+
"notAvailable": "No availability",
|
|
33
|
+
"mistake": "Mistake"
|
|
34
|
+
},
|
|
35
|
+
"deleteDraft": {
|
|
36
|
+
"button": "Delete draft",
|
|
37
|
+
"title": "Are you sure?",
|
|
38
|
+
"descriptionDraft": "The following draft orders will be permanently deleted:",
|
|
39
|
+
"descriptionOrder": "The following orders will be cancelled:",
|
|
40
|
+
"confirm": "Delete draft",
|
|
41
|
+
"cancel": "Cancel"
|
|
42
|
+
},
|
|
43
|
+
"searchProduct": {
|
|
44
|
+
"id": "ID",
|
|
45
|
+
"image": "Image",
|
|
46
|
+
"name": "Name",
|
|
47
|
+
"price": "Price",
|
|
48
|
+
"action": "Operation",
|
|
49
|
+
"placeholder": "Type to search for products..."
|
|
50
|
+
},
|
|
51
|
+
"forms": {
|
|
52
|
+
"create": "Create order",
|
|
53
|
+
"update": "Update order"
|
|
54
|
+
},
|
|
55
|
+
"filterField": {
|
|
56
|
+
"customerLastName": "Customer name",
|
|
57
|
+
"transactionId": "Transaction ID",
|
|
58
|
+
"id": "Order identifier",
|
|
59
|
+
"code": "Order code"
|
|
60
|
+
},
|
|
61
|
+
"table": {
|
|
62
|
+
"id": "ID",
|
|
63
|
+
"firstName": "Name",
|
|
64
|
+
"lastName": "Surname",
|
|
65
|
+
"state": "State",
|
|
66
|
+
"emailAddress": "E-mail address",
|
|
67
|
+
"code": "Code",
|
|
68
|
+
"createdAt": "Created in",
|
|
69
|
+
"placedAt": "Placed in",
|
|
70
|
+
"shipping": "Shipping",
|
|
71
|
+
"updatedAt": "Updated in",
|
|
72
|
+
"openMenu": "Open menu",
|
|
73
|
+
"actions": "Activities",
|
|
74
|
+
"copyId": "Copy order ID",
|
|
75
|
+
"viewCustomer": "Display customer",
|
|
76
|
+
"viewPayment": "Display payment details",
|
|
77
|
+
"viewOrder": "View order",
|
|
78
|
+
"paymentMethod": "Payment type",
|
|
79
|
+
"add": "Add your order",
|
|
80
|
+
"applyChanges": "Apply changes",
|
|
81
|
+
"reviewChanges": "Review changes",
|
|
82
|
+
"note": "Add note",
|
|
83
|
+
"noChanges": "No change",
|
|
84
|
+
"previous": "Previous",
|
|
85
|
+
"current": "Current",
|
|
86
|
+
"disabledBtnTooltip": "Note to be entered",
|
|
87
|
+
"modifySuccess": "Order has been successfully modified",
|
|
88
|
+
"image": "image",
|
|
89
|
+
"name": "name",
|
|
90
|
+
"slug": "Short name (slug)",
|
|
91
|
+
"variants": "variants",
|
|
92
|
+
"enabled": "on",
|
|
93
|
+
"copied": "Text copied to clipboard",
|
|
94
|
+
"noFilterField": "None",
|
|
95
|
+
"columns": "Columns",
|
|
96
|
+
"deleteOrCancel": "Delete/Cancel option selected",
|
|
97
|
+
"selectedValue": "{{from}} of {{to}} lines selected",
|
|
98
|
+
"discountByValue": "Discount {{value}}",
|
|
99
|
+
"editOptions": "Edit options",
|
|
100
|
+
"total": "Total",
|
|
101
|
+
"totalItems": "Total price of {{value}} products",
|
|
102
|
+
"deleteDraft": {
|
|
103
|
+
"button": "Delete draft",
|
|
104
|
+
"title": "Are you sure?",
|
|
105
|
+
"descriptionDraft": "The following draft orders will be permanently deleted:",
|
|
106
|
+
"descriptionOrder": "The following orders will be cancelled:",
|
|
107
|
+
"confirm": "Delete draft",
|
|
108
|
+
"cancel": "Cancel"
|
|
109
|
+
},
|
|
110
|
+
"searchProduct": {
|
|
111
|
+
"id": "ID",
|
|
112
|
+
"image": "Image",
|
|
113
|
+
"name": "Name",
|
|
114
|
+
"price": "Price",
|
|
115
|
+
"action": "Operation",
|
|
116
|
+
"placeholder": "Type to search for products..."
|
|
117
|
+
},
|
|
118
|
+
"forms": {
|
|
119
|
+
"create": "Create order",
|
|
120
|
+
"update": "Update order"
|
|
121
|
+
},
|
|
122
|
+
"filterField": {
|
|
123
|
+
"customerLastName": "Customer name",
|
|
124
|
+
"transactionId": "Transaction ID",
|
|
125
|
+
"id": "Order identifier",
|
|
126
|
+
"code": "Order code"
|
|
127
|
+
},
|
|
128
|
+
"table": {
|
|
129
|
+
"id": "ID",
|
|
130
|
+
"firstName": "Name",
|
|
131
|
+
"lastName": "Surname",
|
|
132
|
+
"state": "State",
|
|
133
|
+
"emailAddress": "E-mail address",
|
|
134
|
+
"code": "Code",
|
|
135
|
+
"createdAt": "Created in",
|
|
136
|
+
"placedAt": "Placed in",
|
|
137
|
+
"shipping": "Shipping",
|
|
138
|
+
"updatedAt": "Updated in",
|
|
139
|
+
"openMenu": "Open menu",
|
|
140
|
+
"actions": "Activities",
|
|
141
|
+
"copyId": "Copy order ID",
|
|
142
|
+
"deleteDraft": "Delete draft order",
|
|
143
|
+
"viewCustomer": "Display customer",
|
|
144
|
+
"viewPayment": "Display payment details",
|
|
145
|
+
"viewOrder": "View order",
|
|
146
|
+
"paymentMethod": "Payment type",
|
|
147
|
+
"phoneNumber": "Telephone number",
|
|
148
|
+
"type": "Type",
|
|
149
|
+
"totalWithTax": "Total incl. tax",
|
|
150
|
+
"realization": "Implementation"
|
|
151
|
+
},
|
|
152
|
+
"filterPlaceholder": "Field for the filter",
|
|
153
|
+
"createOrder": "Create order",
|
|
154
|
+
"create": {
|
|
155
|
+
"addModal": {
|
|
156
|
+
"discount": "Discount to total in {{value}}",
|
|
157
|
+
"discountAmount": "Amount of discount",
|
|
158
|
+
"quantity": "Number",
|
|
159
|
+
"quantityPlaceholder": "Number"
|
|
160
|
+
},
|
|
161
|
+
"perUnit": "Per unit (TAX)",
|
|
162
|
+
"baseInfoCode": "Code: {{value}}",
|
|
163
|
+
"realizationPlan": "Planned implementation: {{value}}",
|
|
164
|
+
"realizationDate": "Completion date: {{value}}",
|
|
165
|
+
"finalAmount": "Final amount: {{value}}",
|
|
166
|
+
"baseInfoUpdated": "Updated: {{value}}",
|
|
167
|
+
"baseInfoCreated": "Created: {{value}}",
|
|
168
|
+
"orderId": "Order #{{value}}",
|
|
169
|
+
"addProduct": "Add product",
|
|
170
|
+
"back": "Return",
|
|
171
|
+
"draftOrder": "Draft order",
|
|
172
|
+
"leaveToastMessage": "Are you sure you want to leave this page?",
|
|
173
|
+
"leaveToastButton": "Leave",
|
|
174
|
+
"discardButton": "Reject",
|
|
175
|
+
"completeOrderButton": "Approve draft order",
|
|
176
|
+
"addTitle": "Add item to draft order",
|
|
177
|
+
"viewTitle": "Items in order",
|
|
178
|
+
"editTitle": "Items in order",
|
|
179
|
+
"viewHeader": "Here you can check the order of the items",
|
|
180
|
+
"editHeader": "Here you can update the items in order",
|
|
181
|
+
"addHeader": "Here you can add items to the draft order",
|
|
182
|
+
"updateAddItemToast": "Item successfully added to the order",
|
|
183
|
+
"updateQuantityItemToast": "Item successfully changed to order quantity",
|
|
184
|
+
"searchHeader": "Product",
|
|
185
|
+
"searchPlaceholder": "Type to search for products...",
|
|
186
|
+
"product": "Product",
|
|
187
|
+
"slug": "Short name (slug)",
|
|
188
|
+
"preview": "Preview",
|
|
189
|
+
"id": "Id",
|
|
190
|
+
"actions": "Activities",
|
|
191
|
+
"noItemsFound": "No items found",
|
|
192
|
+
"cancel": "Cancel",
|
|
193
|
+
"add": "Add item to order",
|
|
194
|
+
"update": "Updating an item in an order",
|
|
195
|
+
"addItem": " Add item",
|
|
196
|
+
"somethingWrong": "Something has gone wrong",
|
|
197
|
+
"sku": "SKU",
|
|
198
|
+
"quantity": "Number",
|
|
199
|
+
"remove": "Remove",
|
|
200
|
+
"edit": "Edit",
|
|
201
|
+
"noItems": "No items in the draft order",
|
|
202
|
+
"price": "Price",
|
|
203
|
+
"priceWithTax": "Price with tax",
|
|
204
|
+
"totalWithTax": "Total incl. tax",
|
|
205
|
+
"customFields": "Non-standard fields",
|
|
206
|
+
"discount": "Discount",
|
|
207
|
+
"orderCancelSuccessfully": "Order successfully cancelled",
|
|
208
|
+
"modifyOrder": "Modify order",
|
|
209
|
+
"cancelOrder": "Cancel order",
|
|
210
|
+
"realizeOrder": "Complete order",
|
|
211
|
+
"areYouSure": "Are you sure?",
|
|
212
|
+
"continue": "Continue",
|
|
213
|
+
"cancelOrderMessage": "After cancelling the order, no action will be allowed",
|
|
214
|
+
"selectCustomer": {
|
|
215
|
+
"noCustomer": "No customer",
|
|
216
|
+
"titleLabel": "Title",
|
|
217
|
+
"firstNameLabel": "Name",
|
|
218
|
+
"lastNameLabel": "Surname",
|
|
219
|
+
"emailLabel": "Email",
|
|
220
|
+
"phoneNumberLabel": "Telephone number",
|
|
221
|
+
"select": "Client",
|
|
222
|
+
"selectButton": "Select a customer",
|
|
223
|
+
"change": "Change customer",
|
|
224
|
+
"create": "Create client",
|
|
225
|
+
"customer": "Client",
|
|
226
|
+
"label": "Customer selection for this order",
|
|
227
|
+
"description": "Select a customer from the following list or create a new one",
|
|
228
|
+
"selectTab": "Select a customer",
|
|
229
|
+
"createTab": "Create new customer",
|
|
230
|
+
"selectedCustomerText": " Selected client:",
|
|
231
|
+
"close": "Close",
|
|
232
|
+
"placeholder": "Type to search for clients...",
|
|
233
|
+
"emptyState": "No customers found",
|
|
234
|
+
"firstName": "Name",
|
|
235
|
+
"lastName": "Surname",
|
|
236
|
+
"email": "Email",
|
|
237
|
+
"phoneNumber": "Telephone number",
|
|
238
|
+
"id": "Id",
|
|
239
|
+
"inputLabel": "To find a specific customer, use the field below and select the desired one from the list below",
|
|
240
|
+
"selectCustomerFailed": "Unsuccessful customer selection",
|
|
241
|
+
"success": "Customer added to order",
|
|
242
|
+
"error": "Failed to add customer to order",
|
|
243
|
+
"noResults": "Customer of specified value not found"
|
|
244
|
+
},
|
|
245
|
+
"notEnoughPayment": "Payment not required",
|
|
246
|
+
"buttonAddPayment": "Add payment to order {{value}}",
|
|
247
|
+
"addPaymentTitle": "Add payment to order",
|
|
248
|
+
"addPaymentDescription": "Select a payment method to complete your order."
|
|
249
|
+
},
|
|
250
|
+
"discounts": {
|
|
251
|
+
"title": "Discounts",
|
|
252
|
+
"description": "Order discounts",
|
|
253
|
+
"emptyState": "No discounts applied"
|
|
254
|
+
},
|
|
255
|
+
"form": {
|
|
256
|
+
"userError": "The user name must consist of at least 5 characters.",
|
|
257
|
+
"emailError": "This is not a valid email address.",
|
|
258
|
+
"requiredError": "This value is required",
|
|
259
|
+
"phoneError": "Incorrect phone number format",
|
|
260
|
+
"phoneRequiredError": "Telephone number is required",
|
|
261
|
+
"firstNameError": "First name is required",
|
|
262
|
+
"lastNameError": "Last name is required"
|
|
263
|
+
},
|
|
264
|
+
"selectAddress": {
|
|
265
|
+
"noShippingAddress": "No shipping address",
|
|
266
|
+
"noBillingAddress": "No billing address",
|
|
267
|
+
"nameRequired": "Full name is required",
|
|
268
|
+
"streetRequired": "Street Line 1 is required",
|
|
269
|
+
"cityRequired": "City name is required",
|
|
270
|
+
"postalCodeRequired": "Postal code is required",
|
|
271
|
+
"countryRequired": "Country is required",
|
|
272
|
+
"phoneNumberRequired": "Telephone number is required",
|
|
273
|
+
"shippingHeader": "Shipping address",
|
|
274
|
+
"billingHeader": "Billing address",
|
|
275
|
+
"shippingDescription": "Here you can set the shipping address",
|
|
276
|
+
"billingDescription": "Here you can set the billing address",
|
|
277
|
+
"changeShippingAddress": "Change shipping address",
|
|
278
|
+
"selectShippingAddress": "Select shipping address",
|
|
279
|
+
"createShippingAddress": "Create shipping address",
|
|
280
|
+
"changeBillingAddress": "Change of billing address",
|
|
281
|
+
"selectBillingAddress": "Select billing address",
|
|
282
|
+
"createBillingAddress": "Create billing address",
|
|
283
|
+
"selectAddress": "Select address",
|
|
284
|
+
"createAddress": "Create address",
|
|
285
|
+
"editAddress": "Edit address",
|
|
286
|
+
"addressSuccessCreateToast": "Address successfully created",
|
|
287
|
+
"addressSuccessSelectToast": "Address successfully selected",
|
|
288
|
+
"addressFailedCreateToast": "Address selection failed",
|
|
289
|
+
"addressFailedSelectToast": "Address creation failed",
|
|
290
|
+
"newAddress": "New address: {{address}} added to user account",
|
|
291
|
+
"addressAddFailed": "Failed to add new address to user account",
|
|
292
|
+
"phoneError": "Incorrect phone number format",
|
|
293
|
+
"close": "Close",
|
|
294
|
+
"setAsDefaultShipping": "Set as default shipping address",
|
|
295
|
+
"setAsDefaultBilling": "Set as default billing address",
|
|
296
|
+
"countrySelectLabel": " Country:",
|
|
297
|
+
"phoneNumberShort": "tel. {{value}}",
|
|
298
|
+
"isDefaultBilling": "Default shipping address",
|
|
299
|
+
"isDefaultShipping": "Default billing address",
|
|
300
|
+
"createForCustomer": "Create for customer",
|
|
301
|
+
"inputNameLabel": "Name",
|
|
302
|
+
"inputNamePlaceholder": "Name",
|
|
303
|
+
"inputCompanyLabel": "Company name",
|
|
304
|
+
"inputCompanyPlaceholder": "Company name",
|
|
305
|
+
"inputPhoneLabel": "Telephone number",
|
|
306
|
+
"inputPhonePlaceholder": "Telephone number",
|
|
307
|
+
"inputPostalLabel": "Postcode",
|
|
308
|
+
"inputPostalPlaceholder": "Postcode",
|
|
309
|
+
"inputProvinceLabel": "Province",
|
|
310
|
+
"inputProvincePlaceholder": "Province",
|
|
311
|
+
"inputCityLabel": "City",
|
|
312
|
+
"inputCityPlaceholder": "City",
|
|
313
|
+
"inputStreetLabel": "Street Line 1",
|
|
314
|
+
"inputStreetPlaceholder": "Street Line 1",
|
|
315
|
+
"inputStreet2Label": "Street Line 2",
|
|
316
|
+
"inputStreet2Placeholder": "Street Line 2",
|
|
317
|
+
"inputTaxLabel": "Company tax ID",
|
|
318
|
+
"inputTaxPlaceholder": "Company tax ID"
|
|
319
|
+
},
|
|
320
|
+
"selectShipmentMethod": {
|
|
321
|
+
"noLines": "At least one item is required",
|
|
322
|
+
"cardTitle": "Shipping method",
|
|
323
|
+
"cardDescription": "Select shipping method",
|
|
324
|
+
"noSelected": "No shipping method selected.",
|
|
325
|
+
"noSelectedTip": "Please add products before selecting a shipping method.",
|
|
326
|
+
"buttonLabel": "Set your shipping method",
|
|
327
|
+
"close": "Close",
|
|
328
|
+
"save": "Save",
|
|
329
|
+
"setMethodTitle": "Set your shipping method",
|
|
330
|
+
"setMethodDescription": "Select shipping method",
|
|
331
|
+
"shippingAdded": "Shipping method has been successfully added",
|
|
332
|
+
"code": "Code:",
|
|
333
|
+
"price": "Price:",
|
|
334
|
+
"method": "Method:",
|
|
335
|
+
"addMethod": "Add a shipping method"
|
|
336
|
+
},
|
|
337
|
+
"inputs": {
|
|
338
|
+
"pickDate": "Select date"
|
|
339
|
+
},
|
|
340
|
+
"fulfillment": {
|
|
341
|
+
"completeOrderButton": "Finalise order",
|
|
342
|
+
"completeDialogTitle": "Finalise order",
|
|
343
|
+
"completeDialogDescription": "Fill in the implementation details",
|
|
344
|
+
"product": "Product",
|
|
345
|
+
"sku": "SKU",
|
|
346
|
+
"fulfilled": "Realised",
|
|
347
|
+
"onStockValue": "in stock {{value}}",
|
|
348
|
+
"emptyState": "No items in the draft order",
|
|
349
|
+
"fulfill": "Finalise",
|
|
350
|
+
"handlers": {
|
|
351
|
+
"manual-fulfillment": {
|
|
352
|
+
"title": "Hand-filling",
|
|
353
|
+
"description": "Manual input of implementation details",
|
|
354
|
+
"method": "Method",
|
|
355
|
+
"trackingCode": "Tracking code"
|
|
356
|
+
}
|
|
357
|
+
}
|
|
358
|
+
},
|
|
359
|
+
"fullName": "Name",
|
|
360
|
+
"company": "Company",
|
|
361
|
+
"street1": "Street Line 1",
|
|
362
|
+
"street2": "Street Line 2",
|
|
363
|
+
"city": "City",
|
|
364
|
+
"postalCode": "Postcode",
|
|
365
|
+
"country": "Country",
|
|
366
|
+
"phoneNumber": "Telephone number",
|
|
367
|
+
"type": "Type",
|
|
368
|
+
"totalWithTax": "Total incl. tax",
|
|
369
|
+
"realization": "Implementation"
|
|
370
|
+
},
|
|
371
|
+
"filterPlaceholder": "Field for the filter",
|
|
372
|
+
"createOrder": "Create order",
|
|
373
|
+
"cancelAndRefund": {
|
|
374
|
+
"trigger": "Cancel and refund",
|
|
375
|
+
"title": "Cancel and refund the order",
|
|
376
|
+
"refund": "Refund",
|
|
377
|
+
"returnToStock": "Return to warehouse",
|
|
378
|
+
"refundShipping": "Return for shipment"
|
|
379
|
+
},
|
|
380
|
+
"create": {
|
|
381
|
+
"addModal": {
|
|
382
|
+
"discount": "Discount to total in {{value}}",
|
|
383
|
+
"discountAmount": "Amount of discount",
|
|
384
|
+
"quantity": "Number",
|
|
385
|
+
"quantityPlaceholder": "Number"
|
|
386
|
+
},
|
|
387
|
+
"perUnit": "Per unit (TAX)",
|
|
388
|
+
"baseInfoCode": "Code: {{value}}",
|
|
389
|
+
"realizationPlan": "Planned implementation: {{value}}",
|
|
390
|
+
"realizationDate": "Completion date: {{value}}",
|
|
391
|
+
"finalAmount": "Final amount: {{value}}",
|
|
392
|
+
"baseInfoUpdated": "Updated: {{value}}",
|
|
393
|
+
"baseInfoCreated": "Created: {{value}}",
|
|
394
|
+
"orderId": "Order #{{value}}",
|
|
395
|
+
"addProduct": "Add product",
|
|
396
|
+
"back": "Return",
|
|
397
|
+
"draftOrder": "Draft order",
|
|
398
|
+
"leaveToastMessage": "Are you sure you want to leave this page?",
|
|
399
|
+
"leaveToastButton": "Leave",
|
|
400
|
+
"discardButton": "Reject",
|
|
401
|
+
"completeOrderButton": "Approve draft order",
|
|
402
|
+
"addTitle": "Add item to draft order",
|
|
403
|
+
"viewTitle": "Items in order",
|
|
404
|
+
"editTitle": "Items in order",
|
|
405
|
+
"viewHeader": "Here you can check the order of the items",
|
|
406
|
+
"editHeader": "Here you can update the items in order",
|
|
407
|
+
"addHeader": "Here you can add items to the draft order",
|
|
408
|
+
"updateAddItemToast": "Item successfully added to the order",
|
|
409
|
+
"updateQuantityItemToast": "Item successfully changed to order quantity",
|
|
410
|
+
"searchHeader": "Product",
|
|
411
|
+
"searchPlaceholder": "Type to search for products...",
|
|
412
|
+
"product": "Product",
|
|
413
|
+
"slug": "Short name (slug)",
|
|
414
|
+
"preview": "Preview",
|
|
415
|
+
"id": "Id",
|
|
416
|
+
"actions": "Activities",
|
|
417
|
+
"noItemsFound": "No items found",
|
|
418
|
+
"cancel": "Cancel",
|
|
419
|
+
"add": "Add item to order",
|
|
420
|
+
"update": "Updating an item in an order",
|
|
421
|
+
"addItem": " Add item",
|
|
422
|
+
"somethingWrong": "Something has gone wrong",
|
|
423
|
+
"sku": "SKU",
|
|
424
|
+
"quantity": "Number",
|
|
425
|
+
"remove": "Remove",
|
|
426
|
+
"edit": "Edit",
|
|
427
|
+
"noItems": "No items in the draft order",
|
|
428
|
+
"price": "Price",
|
|
429
|
+
"priceWithTax": "Price with tax",
|
|
430
|
+
"totalWithTax": "Total incl. tax",
|
|
431
|
+
"customFields": "Non-standard fields",
|
|
432
|
+
"discount": "Discount",
|
|
433
|
+
"orderCancelSuccessfully": "Order successfully cancelled",
|
|
434
|
+
"modifyOrder": "Modify order",
|
|
435
|
+
"cancelOrder": "Cancel order",
|
|
436
|
+
"realizeOrder": "Complete order",
|
|
437
|
+
"areYouSure": "Are you sure?",
|
|
438
|
+
"continue": "Continue",
|
|
439
|
+
"cancelOrderMessage": "After cancelling the order, no action will be allowed",
|
|
440
|
+
"selectCustomer": {
|
|
441
|
+
"noCustomer": "No customer",
|
|
442
|
+
"titleLabel": "Title",
|
|
443
|
+
"firstNameLabel": "Name",
|
|
444
|
+
"lastNameLabel": "Surname",
|
|
445
|
+
"emailLabel": "Email",
|
|
446
|
+
"phoneNumberLabel": "Telephone number",
|
|
447
|
+
"select": "Client",
|
|
448
|
+
"selectButton": "Select a customer",
|
|
449
|
+
"change": "Change customer",
|
|
450
|
+
"create": "Create client",
|
|
451
|
+
"customer": "Client",
|
|
452
|
+
"label": "Customer selection for this order",
|
|
453
|
+
"description": "Select a customer from the following list or create a new one",
|
|
454
|
+
"selectTab": "Select a customer",
|
|
455
|
+
"createTab": "Create new customer",
|
|
456
|
+
"selectedCustomerText": " Selected client:",
|
|
457
|
+
"close": "Close",
|
|
458
|
+
"placeholder": "Type to search for clients...",
|
|
459
|
+
"emptyState": "No customers found",
|
|
460
|
+
"firstName": "Name",
|
|
461
|
+
"lastName": "Surname",
|
|
462
|
+
"email": "Email",
|
|
463
|
+
"phoneNumber": "Telephone number",
|
|
464
|
+
"id": "Id",
|
|
465
|
+
"inputLabel": "To find a specific customer, use the field below and select the desired one from the list below",
|
|
466
|
+
"selectCustomerFailed": "Unsuccessful customer selection",
|
|
467
|
+
"success": "Customer added to order",
|
|
468
|
+
"error": "Failed to add customer to order",
|
|
469
|
+
"noResults": "Customer of specified value not found"
|
|
470
|
+
},
|
|
471
|
+
"notEnoughPayment": "Payment not required",
|
|
472
|
+
"buttonAddPayment": "Add payment to order {{value}}",
|
|
473
|
+
"addPaymentTitle": "Add payment to order",
|
|
474
|
+
"addPaymentDescription": "Select a payment method to complete your order."
|
|
475
|
+
},
|
|
476
|
+
"discounts": {
|
|
477
|
+
"title": "Discounts",
|
|
478
|
+
"description": "Order discounts",
|
|
479
|
+
"emptyState": "No discounts applied"
|
|
480
|
+
},
|
|
481
|
+
"form": {
|
|
482
|
+
"userError": "The user name must consist of at least 5 characters.",
|
|
483
|
+
"emailError": "This is not a valid email address.",
|
|
484
|
+
"requiredError": "This value is required",
|
|
485
|
+
"phoneError": "Incorrect phone number format",
|
|
486
|
+
"phoneRequiredError": "Telephone number is required",
|
|
487
|
+
"firstNameError": "First name is required",
|
|
488
|
+
"lastNameError": "Last name is required"
|
|
489
|
+
},
|
|
490
|
+
"selectAddress": {
|
|
491
|
+
"noShippingAddress": "No shipping address",
|
|
492
|
+
"noBillingAddress": "No billing address",
|
|
493
|
+
"nameRequired": "Full name is required",
|
|
494
|
+
"streetRequired": "Street Line 1 is required",
|
|
495
|
+
"cityRequired": "City name is required",
|
|
496
|
+
"postalCodeRequired": "Postal code is required",
|
|
497
|
+
"countryRequired": "Country is required",
|
|
498
|
+
"phoneNumberRequired": "Telephone number is required",
|
|
499
|
+
"shippingHeader": "Shipping address",
|
|
500
|
+
"billingHeader": "Billing address",
|
|
501
|
+
"shippingDescription": "Here you can set the shipping address",
|
|
502
|
+
"billingDescription": "Here you can set the billing address",
|
|
503
|
+
"changeShippingAddress": "Change shipping address",
|
|
504
|
+
"selectShippingAddress": "Select shipping address",
|
|
505
|
+
"createShippingAddress": "Create shipping address",
|
|
506
|
+
"changeBillingAddress": "Change of billing address",
|
|
507
|
+
"selectBillingAddress": "Select billing address",
|
|
508
|
+
"createBillingAddress": "Create billing address",
|
|
509
|
+
"selectAddress": "Select address",
|
|
510
|
+
"createAddress": "Create address",
|
|
511
|
+
"editAddress": "Edit address",
|
|
512
|
+
"addressSuccessCreateToast": "Address successfully created",
|
|
513
|
+
"addressSuccessSelectToast": "Address successfully selected",
|
|
514
|
+
"addressFailedCreateToast": "Address selection failed",
|
|
515
|
+
"addressFailedSelectToast": "Address creation failed",
|
|
516
|
+
"newAddress": "New address: {{address}} added to user account",
|
|
517
|
+
"addressAddFailed": "Failed to add new address to user account",
|
|
518
|
+
"phoneError": "Incorrect phone number format",
|
|
519
|
+
"close": "Close",
|
|
520
|
+
"setAsDefaultShipping": "Set as default shipping address",
|
|
521
|
+
"setAsDefaultBilling": "Set as default billing address",
|
|
522
|
+
"countrySelectLabel": " Country:",
|
|
523
|
+
"phoneNumberShort": "tel. {{value}}",
|
|
524
|
+
"isDefaultBilling": "Default customer shipping address",
|
|
525
|
+
"isDefaultShipping": "Default billing address of the customer",
|
|
526
|
+
"createForCustomer": "Create for customer",
|
|
527
|
+
"inputNameLabel": "Name",
|
|
528
|
+
"inputNamePlaceholder": "Name",
|
|
529
|
+
"inputCompanyLabel": "Company name",
|
|
530
|
+
"inputCompanyPlaceholder": "Company name",
|
|
531
|
+
"inputPhoneLabel": "Telephone number",
|
|
532
|
+
"inputPhonePlaceholder": "Telephone number",
|
|
533
|
+
"inputPostalLabel": "Postcode",
|
|
534
|
+
"inputPostalPlaceholder": "Postcode",
|
|
535
|
+
"inputProvinceLabel": "Province",
|
|
536
|
+
"inputProvincePlaceholder": "Province",
|
|
537
|
+
"inputCityLabel": "City",
|
|
538
|
+
"inputCityPlaceholder": "City",
|
|
539
|
+
"inputStreetLabel": "Street Line 1",
|
|
540
|
+
"inputStreetPlaceholder": "Street Line 1",
|
|
541
|
+
"inputStreet2Label": "Street Line 2",
|
|
542
|
+
"inputStreet2Placeholder": "Street Line 2",
|
|
543
|
+
"inputTaxLabel": "Company tax ID",
|
|
544
|
+
"inputTaxPlaceholder": "Company tax ID"
|
|
545
|
+
},
|
|
546
|
+
"selectShipmentMethod": {
|
|
547
|
+
"noLines": "At least one item is required",
|
|
548
|
+
"cardTitle": "Shipping method",
|
|
549
|
+
"cardDescription": "Select shipping method",
|
|
550
|
+
"noSelected": "No shipping method selected.",
|
|
551
|
+
"noSelectedTip": "Please add products before selecting a shipping method.",
|
|
552
|
+
"buttonLabel": "Set your shipping method",
|
|
553
|
+
"close": "Close",
|
|
554
|
+
"save": "Save",
|
|
555
|
+
"setMethodTitle": "Set your shipping method",
|
|
556
|
+
"setMethodDescription": "Select shipping method",
|
|
557
|
+
"shippingAdded": "Shipping method has been successfully added",
|
|
558
|
+
"code": "Code:",
|
|
559
|
+
"price": "Price:",
|
|
560
|
+
"method": "Method:",
|
|
561
|
+
"addMethod": "Add a shipping method"
|
|
562
|
+
},
|
|
563
|
+
"inputs": {
|
|
564
|
+
"pickDate": "Select date"
|
|
565
|
+
},
|
|
566
|
+
"fulfillment": {
|
|
567
|
+
"completeOrderButton": "Finalise order",
|
|
568
|
+
"completeDialogTitle": "Finalise order",
|
|
569
|
+
"completeDialogDescription": "Fill in the implementation details",
|
|
570
|
+
"itemsToFulfill": "Products to be realised",
|
|
571
|
+
"inStock": "Much",
|
|
572
|
+
"lowStock": "Little",
|
|
573
|
+
"product": "Product",
|
|
574
|
+
"sku": "SKU",
|
|
575
|
+
"shippingMethod": "Shipping method",
|
|
576
|
+
"fulfillmentOptions": "Fulfilment options",
|
|
577
|
+
"fulfilled": "Realised",
|
|
578
|
+
"onStockValue": "in stock: {{value}}",
|
|
579
|
+
"emptyState": "No items in the draft order",
|
|
580
|
+
"fulfill": "Finalise",
|
|
581
|
+
"shippingAddress": "Shipping address",
|
|
582
|
+
"handlers": {
|
|
583
|
+
"manual-fulfillment": {
|
|
584
|
+
"title": "Hand-filling",
|
|
585
|
+
"description": "Manual input of implementation details",
|
|
586
|
+
"method": "Method",
|
|
587
|
+
"trackingCode": "Tracking code"
|
|
588
|
+
}
|
|
589
|
+
}
|
|
590
|
+
},
|
|
591
|
+
"fullName": "Name",
|
|
592
|
+
"company": "Company",
|
|
593
|
+
"street1": "Address (1 line)",
|
|
594
|
+
"street2": "Address (2nd line)",
|
|
595
|
+
"city": "City",
|
|
596
|
+
"postalCode": "Postcode",
|
|
597
|
+
"country": "Country",
|
|
598
|
+
"phoneNumber": "Telephone number",
|
|
599
|
+
"province": "Province",
|
|
600
|
+
"toasts": {
|
|
601
|
+
"insufficientStockError": "There is no product variant with the identifier {{value}} in the current stock",
|
|
602
|
+
"orderLoadingError": "Failed to load order with ID {{value}}",
|
|
603
|
+
"orderHistoryLoadingError": "Failed to load order history with identifier {{value}}",
|
|
604
|
+
"orderLoadingDraftShippingError": "Failed to load eligible shipment for order with ID {{value}}",
|
|
605
|
+
"productVariantLoadingError": "Failed to load product variant data"
|
|
606
|
+
},
|
|
607
|
+
"orderStates": {
|
|
608
|
+
"button": "Order states",
|
|
609
|
+
"title": "Order states",
|
|
610
|
+
"description": " All possible order states and the current order status can be displayed here.",
|
|
611
|
+
"currentState": "Current status",
|
|
612
|
+
"possibleNextStates": "Possible subsequent states",
|
|
613
|
+
"canTransitionTo": "Can be changed to",
|
|
614
|
+
"current": "Current",
|
|
615
|
+
"possible": "Possible",
|
|
616
|
+
"finalState": "Latest state"
|
|
617
|
+
},
|
|
618
|
+
"fulfillments": {
|
|
619
|
+
"title": "Implementation",
|
|
620
|
+
"description": "Track and manage the delivery status of your order",
|
|
621
|
+
"method": "Method",
|
|
622
|
+
"state": "State",
|
|
623
|
+
"trackingCode": "Tracking code",
|
|
624
|
+
"actions": "Activities",
|
|
625
|
+
"markAsDelivered": " Mark as delivered",
|
|
626
|
+
"markAllAsDelivered": "Mark all as delivered",
|
|
627
|
+
"allDelivered": "All shipments delivered",
|
|
628
|
+
"cancel": "Cancel",
|
|
629
|
+
"states": {
|
|
630
|
+
"shipped": "Sent",
|
|
631
|
+
"created": "Created",
|
|
632
|
+
"delivered": "Delivered",
|
|
633
|
+
"cancelled": "Cancelled"
|
|
634
|
+
}
|
|
635
|
+
},
|
|
636
|
+
"taxSummary": {
|
|
637
|
+
"title": "Fiscal summary",
|
|
638
|
+
"subTitle": "Tax summary of the order",
|
|
639
|
+
"description": "Description",
|
|
640
|
+
"taxRate": "Tax rate",
|
|
641
|
+
"taxBase": "Tax base",
|
|
642
|
+
"taxTotal": "Total tax",
|
|
643
|
+
"noTaxSummary": "No tax summary"
|
|
644
|
+
},
|
|
645
|
+
"payments": {
|
|
646
|
+
"title": "Payments",
|
|
647
|
+
"subTitle": "Payments related to this order",
|
|
648
|
+
"id": "id",
|
|
649
|
+
"status": "Status",
|
|
650
|
+
"method": "Method",
|
|
651
|
+
"created": "Created",
|
|
652
|
+
"cancel": "Cancel payment",
|
|
653
|
+
"add": "Add payment",
|
|
654
|
+
"amount": "Amount",
|
|
655
|
+
"extra": "Additional",
|
|
656
|
+
"actions": "Activities",
|
|
657
|
+
"settle": {
|
|
658
|
+
"settle": "Settlement",
|
|
659
|
+
"title": "Settle payment",
|
|
660
|
+
"description": "Are you sure you want to settle this payment?",
|
|
661
|
+
"confirm": "Confirm",
|
|
662
|
+
"cancel": "Cancel"
|
|
663
|
+
},
|
|
664
|
+
"notFound": "No payment found for this order",
|
|
665
|
+
"addPaymentHint": "Click on the button above to add your first payment",
|
|
666
|
+
"summary": "Payment summary",
|
|
667
|
+
"total": "Total",
|
|
668
|
+
"alreadyPaid": "Paid",
|
|
669
|
+
"toPay": "To be paid"
|
|
670
|
+
},
|
|
671
|
+
"topActions": {
|
|
672
|
+
"manualChangeStatus": "Change status manually",
|
|
673
|
+
"fillAll": "Fill in all required fields",
|
|
674
|
+
"errMsg": "Something has gone wrong",
|
|
675
|
+
"fulfillmentAdded": "Implementation has been successfully added",
|
|
676
|
+
"orderCanceledSuccessfully": "Order successfully cancelled",
|
|
677
|
+
"orderRefundedSuccessfully": "Order successfully refunded",
|
|
678
|
+
"draftDeletedSuccessfully": "Draft order successfully deleted",
|
|
679
|
+
"orderCancelError": "Something went wrong when cancelling the order: {{value}}",
|
|
680
|
+
"orderRefundError": "Something went wrong when refunding the order.",
|
|
681
|
+
"draftDeleteError": "Something went wrong when deleting draft order: {{value}}"
|
|
682
|
+
},
|
|
683
|
+
"history": {
|
|
684
|
+
"deleteNoteHeader": "Delete note?",
|
|
685
|
+
"editNoteHeader": "Edit note",
|
|
686
|
+
"title": "History",
|
|
687
|
+
"description": "Order history",
|
|
688
|
+
"addCommentButton": "Add comment",
|
|
689
|
+
"isPrivate": "The note is private",
|
|
690
|
+
"isPrivateDescription": "(optional)",
|
|
691
|
+
"cancel": "Cancel",
|
|
692
|
+
"addComment": "Add comment",
|
|
693
|
+
"toAdmins": "Only visible for administrators",
|
|
694
|
+
"toAdminsAndCustomer": "Visible to administrators and customers",
|
|
695
|
+
"sure": "Are you sure?",
|
|
696
|
+
"sureDescription": "Unable to restore a deleted note",
|
|
697
|
+
"delete": "Delete",
|
|
698
|
+
"edit": "Edit",
|
|
699
|
+
"showPayment": "Show payment",
|
|
700
|
+
"paymentId": "Payment ID: {{value}}",
|
|
701
|
+
"showFulfillment": "Show implementation",
|
|
702
|
+
"fulfillmentId": "Realisation identifier: {{value}}",
|
|
703
|
+
"deleteError": "Something went wrong when removing the note from the order: {{value}}",
|
|
704
|
+
"editError": "Something went wrong when editing a note",
|
|
705
|
+
"addError": "Something went wrong when adding a note to an order",
|
|
706
|
+
"from": "From:",
|
|
707
|
+
"to": "to:",
|
|
708
|
+
"createdAt": "Created in: {{value}}",
|
|
709
|
+
"updatedAt": "Updated at: {{value}}",
|
|
710
|
+
"private": "private",
|
|
711
|
+
"public": "public",
|
|
712
|
+
"noteContent": "Content of comment:",
|
|
713
|
+
"entryType": {
|
|
714
|
+
"CUSTOMER_REGISTERED": "Registered customer",
|
|
715
|
+
"CUSTOMER_VERIFIED": "Verified customer",
|
|
716
|
+
"CUSTOMER_DETAIL_UPDATED": "Customer details have been updated",
|
|
717
|
+
"CUSTOMER_ADDED_TO_GROUP": "Customer added to the group",
|
|
718
|
+
"CUSTOMER_REMOVED_FROM_GROUP": "Client removed from the group",
|
|
719
|
+
"CUSTOMER_ADDRESS_CREATED": "Customer address created",
|
|
720
|
+
"CUSTOMER_ADDRESS_UPDATED": "Customer address updated",
|
|
721
|
+
"CUSTOMER_ADDRESS_DELETED": "Deleted customer address",
|
|
722
|
+
"CUSTOMER_PASSWORD_UPDATED": "Customer password updated",
|
|
723
|
+
"CUSTOMER_PASSWORD_RESET_REQUESTED": "Request to reset customer password",
|
|
724
|
+
"CUSTOMER_PASSWORD_RESET_VERIFIED": "Customer password reset verified",
|
|
725
|
+
"CUSTOMER_EMAIL_UPDATE_REQUESTED": "Customer's e-mail address was requested to be updated",
|
|
726
|
+
"CUSTOMER_EMAIL_UPDATE_VERIFIED": "Customer's e-mail address update verified",
|
|
727
|
+
"CUSTOMER_NOTE": "Customer attention",
|
|
728
|
+
"ORDER_STATE_TRANSITION": "Move to order status",
|
|
729
|
+
"ORDER_PAYMENT_TRANSITION": "Passage to order payment",
|
|
730
|
+
"ORDER_FULFILLMENT": "Order processing",
|
|
731
|
+
"ORDER_CANCELLATION": "Order cancellation",
|
|
732
|
+
"ORDER_REFUND_TRANSITION": "Return of order",
|
|
733
|
+
"ORDER_FULFILLMENT_TRANSITION": "Order processing pass-through",
|
|
734
|
+
"ORDER_NOTE": "Note to order",
|
|
735
|
+
"ORDER_COUPON_APPLIED": "Order voucher used",
|
|
736
|
+
"ORDER_COUPON_REMOVED": "Order voucher deleted",
|
|
737
|
+
"ORDER_MODIFIED": "Order modified",
|
|
738
|
+
"ORDER_CUSTOMER_UPDATED": "Order customer has been updated"
|
|
739
|
+
}
|
|
740
|
+
},
|
|
741
|
+
"createCopy": "Create a copy of the order",
|
|
742
|
+
"createCopyNote": "This order was created as a copy of an order with ID = {{value}}",
|
|
743
|
+
"createCopyCustomerFail": "Failed to add customer: {{value}}",
|
|
744
|
+
"createCopyLineFail": "Failed to add product: {{value}}",
|
|
745
|
+
"createCopyShippingFail": "Failed to add shipping method: {{value}}",
|
|
746
|
+
"modifyInfo": "Modification number",
|
|
747
|
+
"modify": {
|
|
748
|
+
"title": "Modification of order with Id:{{value}}",
|
|
749
|
+
"disclaimer": "Editing the line price is possible after saving the order with the newly added line",
|
|
750
|
+
"priceDifference": "Price difference:",
|
|
751
|
+
"productTable": {
|
|
752
|
+
"headImage": "Image",
|
|
753
|
+
"headName": "Product name",
|
|
754
|
+
"headSku": "SKU",
|
|
755
|
+
"headUnitPrice": "Unit price",
|
|
756
|
+
"headQuantity": "Number",
|
|
757
|
+
"headTotal": "Total"
|
|
758
|
+
},
|
|
759
|
+
"addItemTitle": "Add product",
|
|
760
|
+
"quantity": "Number"
|
|
761
|
+
},
|
|
762
|
+
"custom": {
|
|
763
|
+
"selectAttributes": "Select attributes",
|
|
764
|
+
"selectedAttributes": "Selected attributes:",
|
|
765
|
+
"selectAttributesDescription": "Select the colours/options to be assigned to the attributes of the product variant",
|
|
766
|
+
"selectedAttributesValue": "{{value}} selected attributes",
|
|
767
|
+
"close": "Close",
|
|
768
|
+
"noSelectedAttributes": "No attributes selected",
|
|
769
|
+
"customLabel": "Non-standard value",
|
|
770
|
+
"customPlaceholder": "Value",
|
|
771
|
+
"addCustomKey": "Add a custom attribute",
|
|
772
|
+
"customKey": "Key",
|
|
773
|
+
"customValue": "Value",
|
|
774
|
+
"hint": "All custom keys and values must be defined",
|
|
775
|
+
"customAdditional": "Additional custom attributes: {{value}}"
|
|
776
|
+
},
|
|
777
|
+
"couponCodes": {
|
|
778
|
+
"title": "Codes",
|
|
779
|
+
"description": "Setting up voucher codes",
|
|
780
|
+
"placeholder": "Enter to search",
|
|
781
|
+
"addToastSuccess": "Voucher has been successfully applied",
|
|
782
|
+
"removeToastSuccess": "Voucher has been successfully deleted",
|
|
783
|
+
"noCoupons": "No active coupons",
|
|
784
|
+
"searchToAdd": "Search above to apply coupon code"
|
|
785
|
+
},
|
|
786
|
+
"invoice": {
|
|
787
|
+
"createProformaSuccess": "Proforma has been generated",
|
|
788
|
+
"createProformaError": "An error occurred while generating the proforma",
|
|
789
|
+
"createReceiptSuccess": "Confirmation has been generated",
|
|
790
|
+
"createReceiptError": "Error generating a receipt",
|
|
791
|
+
"createProformaButton": "Create proforma",
|
|
792
|
+
"createReceiptButton": "Create receipt"
|
|
793
|
+
},
|
|
794
|
+
"realization": {
|
|
795
|
+
"createRealization": "Create execution"
|
|
796
|
+
},
|
|
797
|
+
"changeStatus": {
|
|
798
|
+
"header": "Change order status from",
|
|
799
|
+
"description": "Select the new order status you wish to set for the order.",
|
|
800
|
+
"button": "Confirm",
|
|
801
|
+
"planned": "Date of planned delivery",
|
|
802
|
+
"deadline": "Date of implementation",
|
|
803
|
+
"color": "Select colour",
|
|
804
|
+
"info": "Additional information",
|
|
805
|
+
"plannedError": "Date of planned implementation required",
|
|
806
|
+
"deadlineError": "Required completion date",
|
|
807
|
+
"colorError": "Colour is required",
|
|
808
|
+
"charLeft": "Maximum {{value}} characters remaining {{value}} characters",
|
|
809
|
+
"datePlaceholder": "Select date",
|
|
810
|
+
"changeStatusFailed": "Status change failed",
|
|
811
|
+
"changeStatusFailedMsg": "Change of status failed {{value}}",
|
|
812
|
+
"selectImages": "Images for the card"
|
|
813
|
+
},
|
|
814
|
+
"orderLineActionModal": {
|
|
815
|
+
"actionType": {
|
|
816
|
+
"quantity-price": "Quantity/Price",
|
|
817
|
+
"attributes": "Attributes",
|
|
818
|
+
"undefined": ""
|
|
819
|
+
},
|
|
820
|
+
"title": {
|
|
821
|
+
"quantity-price": "Change in quantity and price",
|
|
822
|
+
"attributes": "Change attributes",
|
|
823
|
+
"undefined": ""
|
|
824
|
+
},
|
|
825
|
+
"subTitle": {
|
|
826
|
+
"quantity-price": "Changing the price will change the unit price of the product",
|
|
827
|
+
"attributes": "",
|
|
828
|
+
"undefined": ""
|
|
829
|
+
},
|
|
830
|
+
"cancel": "Cancel",
|
|
831
|
+
"save": "Save",
|
|
832
|
+
"change": "Change",
|
|
833
|
+
"quantityChange": "New quantity",
|
|
834
|
+
"actualQuantity": "Actual quantity",
|
|
835
|
+
"quantityAfter": "Quantity after revision",
|
|
836
|
+
"newPrice": "New price",
|
|
837
|
+
"resetPrice": "Set initial price",
|
|
838
|
+
"actualPrice": "Actual price",
|
|
839
|
+
"priceAfter": "Price after amendment",
|
|
840
|
+
"changePrice": "Enter new price...",
|
|
841
|
+
"changeQuantity": "Enter new quantity"
|
|
842
|
+
},
|
|
843
|
+
"surcharge": {
|
|
844
|
+
"title": "Add surcharge",
|
|
845
|
+
"description": "Here you can add an extra line to your order",
|
|
846
|
+
"labels": {
|
|
847
|
+
"description": "Description",
|
|
848
|
+
"sku": "SKU",
|
|
849
|
+
"price": "Price",
|
|
850
|
+
"includesTax": "Includes tax of {{value}}%",
|
|
851
|
+
"taxRate": "Tax rate",
|
|
852
|
+
"taxDescription": "Description of tax"
|
|
853
|
+
},
|
|
854
|
+
"addButton": "Add surcharge",
|
|
855
|
+
"placeholders": {
|
|
856
|
+
"description": "Enter description of surcharge",
|
|
857
|
+
"sku": "Enter SKU code",
|
|
858
|
+
"price": "Enter surcharge value",
|
|
859
|
+
"taxIncluded": "Tax included in the price",
|
|
860
|
+
"taxDescription": "Enter description of tax"
|
|
861
|
+
}
|
|
862
|
+
},
|
|
863
|
+
"promotions": {
|
|
864
|
+
"description": "Active order promotions",
|
|
865
|
+
"noPromotions": "No active promotions"
|
|
866
|
+
},
|
|
867
|
+
"changes": {
|
|
868
|
+
"cancel": "Cancel",
|
|
869
|
+
"save": "Save",
|
|
870
|
+
"addNewAttribute": "Add new attribute",
|
|
871
|
+
"mainChanges": "Main changes",
|
|
872
|
+
"attributesChanges": "Changes to attributes",
|
|
873
|
+
"newAddedLines": "New order lines added",
|
|
874
|
+
"surcharges": "Surcharges",
|
|
875
|
+
"billingAddress": "Billing address",
|
|
876
|
+
"shippingAddress": "Shipping address",
|
|
877
|
+
"shippingMethod": "Shipping method",
|
|
878
|
+
"rest": "Rest",
|
|
879
|
+
"change": "Change",
|
|
880
|
+
"key": "Key",
|
|
881
|
+
"value": "Value",
|
|
882
|
+
"variant": "Variant",
|
|
883
|
+
"loading": {
|
|
884
|
+
"title": "Checking for changes",
|
|
885
|
+
"description": "Changes to the order are being checked. This may take a while..."
|
|
886
|
+
},
|
|
887
|
+
"emptyState": {
|
|
888
|
+
"title": "No changes",
|
|
889
|
+
"description": "No changes have been made to this order."
|
|
890
|
+
},
|
|
891
|
+
"keys": {
|
|
892
|
+
"quantity": "Number",
|
|
893
|
+
"price": "Price",
|
|
894
|
+
"priceWithTax": "Price with tax",
|
|
895
|
+
"overallPriceWithTax": "Total incl. tax",
|
|
896
|
+
"sku": "SKU",
|
|
897
|
+
"attributes": "Attributes",
|
|
898
|
+
"taxRate": "Tax rate",
|
|
899
|
+
"attributeAdded": "Attribute added",
|
|
900
|
+
"attributeRemoved": "Attribute deleted",
|
|
901
|
+
"discountedLinePrice": "Final line price (net)",
|
|
902
|
+
"discountedLinePriceWithTax": "Final line price (gross)",
|
|
903
|
+
"shippingLines.discountedPrice": "Shipping price (net)",
|
|
904
|
+
"shippingLines.discountedPriceWithTax": "Shipping price (gross)",
|
|
905
|
+
"shippingLines.shippingMethod.name": "Method name",
|
|
906
|
+
"fullName": "Name",
|
|
907
|
+
"company": "Company",
|
|
908
|
+
"streetLine1": "Street Line 1",
|
|
909
|
+
"streetLine2": "Street Line 2",
|
|
910
|
+
"city": "City",
|
|
911
|
+
"postalCode": "Postcode",
|
|
912
|
+
"country": "Country",
|
|
913
|
+
"phoneNumber": "Telephone number",
|
|
914
|
+
"province": "Province",
|
|
915
|
+
"shippingLines": {
|
|
916
|
+
"discountedPrice": "Shipping price (net)",
|
|
917
|
+
"discountedPriceWithTax": "Shipping price (gross)",
|
|
918
|
+
"shippingMethod": {
|
|
919
|
+
"name": "Method name"
|
|
920
|
+
}
|
|
921
|
+
}
|
|
922
|
+
}
|
|
923
|
+
},
|
|
924
|
+
"refund": {
|
|
925
|
+
"details": "Return details",
|
|
926
|
+
"note": "Note on the return",
|
|
927
|
+
"method": "Payment method",
|
|
928
|
+
"id": "Transaction ID",
|
|
929
|
+
"amount": "Payment amount",
|
|
930
|
+
"refund": "Amount of reimbursement"
|
|
931
|
+
}
|
|
932
|
+
}
|