@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.
Files changed (292) hide show
  1. package/LICENSE +23 -0
  2. package/README.md +30 -0
  3. package/dist/@types/resources.js +51 -0
  4. package/dist/DeenruvAdminPanel.js +118 -0
  5. package/dist/DeenruvDeveloperIndicator.js +57 -0
  6. package/dist/components/Aexol.js +4 -0
  7. package/dist/components/BrandLogo.js +22 -0
  8. package/dist/components/CanLeaveRouteDialog.js +8 -0
  9. package/dist/components/DataTable.js +13 -0
  10. package/dist/components/DeleteDialog.js +6 -0
  11. package/dist/components/DuplicateEntry.js +46 -0
  12. package/dist/components/GlobalSearch.js +134 -0
  13. package/dist/components/History/AddEntryForm.js +29 -0
  14. package/dist/components/History/DeleteEntryDialog.js +25 -0
  15. package/dist/components/History/EditEntryDialog.js +32 -0
  16. package/dist/components/History/History.js +13 -0
  17. package/dist/components/History/ModifyHistoryInfo.js +6 -0
  18. package/dist/components/History/Timeline.js +53 -0
  19. package/dist/components/History/index.js +5 -0
  20. package/dist/components/Menu/ActiveAdmins.js +24 -0
  21. package/dist/components/Menu/ChannelSwitcher.js +20 -0
  22. package/dist/components/Menu/LanguagesDropdown.js +26 -0
  23. package/dist/components/Menu/Navigation.js +270 -0
  24. package/dist/components/Menu/NavigationFooter.js +12 -0
  25. package/dist/components/Menu/Notifications.js +90 -0
  26. package/dist/components/Menu/index.js +67 -0
  27. package/dist/components/index.js +6 -0
  28. package/dist/graphql/base.js +95 -0
  29. package/dist/graphql/collections.js +94 -0
  30. package/dist/graphql/draft_order.js +307 -0
  31. package/dist/graphql/orders.js +157 -0
  32. package/dist/graphql/products.js +230 -0
  33. package/dist/graphql/scalars.js +22 -0
  34. package/dist/i18.js +13 -0
  35. package/dist/index.css +161 -0
  36. package/dist/index.d.ts +11 -0
  37. package/dist/index.js +1 -0
  38. package/dist/locales/en/admins.json +57 -0
  39. package/dist/locales/en/assets.json +69 -0
  40. package/dist/locales/en/channels.json +66 -0
  41. package/dist/locales/en/collections.json +145 -0
  42. package/dist/locales/en/common.json +1127 -0
  43. package/dist/locales/en/countries.json +50 -0
  44. package/dist/locales/en/customerGroups.json +6 -0
  45. package/dist/locales/en/customers.json +109 -0
  46. package/dist/locales/en/dashboard.json +34 -0
  47. package/dist/locales/en/facets.json +78 -0
  48. package/dist/locales/en/globalSettings.json +15 -0
  49. package/dist/locales/en/index.js +52 -0
  50. package/dist/locales/en/orders.json +932 -0
  51. package/dist/locales/en/paymentMethods.json +59 -0
  52. package/dist/locales/en/permissions.json +94 -0
  53. package/dist/locales/en/products.json +194 -0
  54. package/dist/locales/en/promotions.json +65 -0
  55. package/dist/locales/en/roles.json +59 -0
  56. package/dist/locales/en/sellers.json +41 -0
  57. package/dist/locales/en/shippingMethods.json +84 -0
  58. package/dist/locales/en/stockLocations.json +40 -0
  59. package/dist/locales/en/system.json +41 -0
  60. package/dist/locales/en/table.json +201 -0
  61. package/dist/locales/en/taxCategories.json +47 -0
  62. package/dist/locales/en/taxRates.json +56 -0
  63. package/dist/locales/en/zones.json +47 -0
  64. package/dist/locales/index.js +2 -0
  65. package/dist/locales/pl/admins.json +57 -0
  66. package/dist/locales/pl/assets.json +69 -0
  67. package/dist/locales/pl/channels.json +66 -0
  68. package/dist/locales/pl/collections.json +145 -0
  69. package/dist/locales/pl/common.json +1128 -0
  70. package/dist/locales/pl/countries.json +50 -0
  71. package/dist/locales/pl/customerGroups.json +6 -0
  72. package/dist/locales/pl/customers.json +109 -0
  73. package/dist/locales/pl/dashboard.json +34 -0
  74. package/dist/locales/pl/facets.json +78 -0
  75. package/dist/locales/pl/globalSettings.json +15 -0
  76. package/dist/locales/pl/index.js +52 -0
  77. package/dist/locales/pl/orders.json +932 -0
  78. package/dist/locales/pl/paymentMethods.json +59 -0
  79. package/dist/locales/pl/permissions.json +94 -0
  80. package/dist/locales/pl/products.json +194 -0
  81. package/dist/locales/pl/promotions.json +65 -0
  82. package/dist/locales/pl/roles.json +59 -0
  83. package/dist/locales/pl/sellers.json +41 -0
  84. package/dist/locales/pl/shippingMethods.json +84 -0
  85. package/dist/locales/pl/stockLocations.json +40 -0
  86. package/dist/locales/pl/system.json +41 -0
  87. package/dist/locales/pl/table.json +201 -0
  88. package/dist/locales/pl/taxCategories.json +47 -0
  89. package/dist/locales/pl/taxRates.json +56 -0
  90. package/dist/locales/pl/zones.json +47 -0
  91. package/dist/notifications/OrderStatusNotification.js +47 -0
  92. package/dist/notifications/SystemStatusNotification.js +19 -0
  93. package/dist/pages/Custom404.js +5 -0
  94. package/dist/pages/LoginScreen.js +37 -0
  95. package/dist/pages/Root.js +252 -0
  96. package/dist/pages/admins/Detail.js +72 -0
  97. package/dist/pages/admins/List.js +56 -0
  98. package/dist/pages/admins/_components/AdminDetailView.js +34 -0
  99. package/dist/pages/admins/_components/RolesCard.js +31 -0
  100. package/dist/pages/admins/index.js +2 -0
  101. package/dist/pages/assets/List.js +82 -0
  102. package/dist/pages/assets/_components/Asset.js +114 -0
  103. package/dist/pages/assets/_components/AssetListView.js +29 -0
  104. package/dist/pages/assets/_components/EditAssetDialog.js +85 -0
  105. package/dist/pages/assets/_components/UploadAssetDialog.js +133 -0
  106. package/dist/pages/assets/_components/UploadProgress.js +20 -0
  107. package/dist/pages/assets/index.js +1 -0
  108. package/dist/pages/channels/Detail.js +149 -0
  109. package/dist/pages/channels/List.js +46 -0
  110. package/dist/pages/channels/_components/ChannelDetailView.js +51 -0
  111. package/dist/pages/channels/_components/DefaultsCard.js +25 -0
  112. package/dist/pages/channels/index.js +2 -0
  113. package/dist/pages/collections/Detail.js +61 -0
  114. package/dist/pages/collections/List.js +135 -0
  115. package/dist/pages/collections/_components/CollectionDetailView.js +52 -0
  116. package/dist/pages/collections/_components/CollectionProductVariantsDrawer.js +28 -0
  117. package/dist/pages/collections/_components/CombinationMode.js +6 -0
  118. package/dist/pages/collections/_components/ContentsCard.js +43 -0
  119. package/dist/pages/collections/_components/ContentsTable.js +102 -0
  120. package/dist/pages/collections/_components/DeleteCollectionsFromChannel.js +36 -0
  121. package/dist/pages/collections/_components/FacetsSelector.js +30 -0
  122. package/dist/pages/collections/_components/FiltersCard.js +101 -0
  123. package/dist/pages/collections/_components/MoveCollectionsToCollections.js +107 -0
  124. package/dist/pages/collections/_components/MoveEntityToChannels.js +115 -0
  125. package/dist/pages/collections/_components/PageHeader.js +11 -0
  126. package/dist/pages/collections/_components/SelectedCollectionsModal.js +22 -0
  127. package/dist/pages/collections/_components/VariantsSelector.js +43 -0
  128. package/dist/pages/collections/consts.js +7 -0
  129. package/dist/pages/collections/index.js +2 -0
  130. package/dist/pages/countries/Detail.js +57 -0
  131. package/dist/pages/countries/List.js +47 -0
  132. package/dist/pages/countries/_components/CountryDetailView.js +28 -0
  133. package/dist/pages/countries/index.js +2 -0
  134. package/dist/pages/customer-groups/Detail.js +76 -0
  135. package/dist/pages/customer-groups/List.js +41 -0
  136. package/dist/pages/customer-groups/_components/CustomerGroupsDetailView.js +21 -0
  137. package/dist/pages/customer-groups/index.js +2 -0
  138. package/dist/pages/customers/Detail.js +75 -0
  139. package/dist/pages/customers/List.js +60 -0
  140. package/dist/pages/customers/_components/Address.js +59 -0
  141. package/dist/pages/customers/_components/AddressDialog.js +56 -0
  142. package/dist/pages/customers/_components/AddressForm.js +77 -0
  143. package/dist/pages/customers/_components/AddressesCard.js +9 -0
  144. package/dist/pages/customers/_components/CustomerDetailSidebar.js +9 -0
  145. package/dist/pages/customers/_components/CustomerDetailView.js +41 -0
  146. package/dist/pages/customers/_components/CustomerGroupsCard.js +46 -0
  147. package/dist/pages/customers/_components/HistoryTab.js +65 -0
  148. package/dist/pages/customers/_components/OrdersTab.js +46 -0
  149. package/dist/pages/customers/_components/PersonalDataCard.js +6 -0
  150. package/dist/pages/customers/_components/VerifiedCard.js +6 -0
  151. package/dist/pages/customers/index.js +2 -0
  152. package/dist/pages/dashboard/Dashboard.js +10 -0
  153. package/dist/pages/dashboard/index.js +1 -0
  154. package/dist/pages/extensions/Extensions.js +74 -0
  155. package/dist/pages/extensions/index.js +1 -0
  156. package/dist/pages/facets/Detail.js +56 -0
  157. package/dist/pages/facets/List.js +48 -0
  158. package/dist/pages/facets/_components/AddFacetValueDialog.js +105 -0
  159. package/dist/pages/facets/_components/ColorSample.js +18 -0
  160. package/dist/pages/facets/_components/FacetDetailView.js +98 -0
  161. package/dist/pages/facets/index.js +2 -0
  162. package/dist/pages/global-settings/GlobalSettingsComponent.js +30 -0
  163. package/dist/pages/global-settings/index.js +71 -0
  164. package/dist/pages/index.js +25 -0
  165. package/dist/pages/orders/Detail.js +21 -0
  166. package/dist/pages/orders/List.js +132 -0
  167. package/dist/pages/orders/_components/AddPaymentDialog.js +50 -0
  168. package/dist/pages/orders/_components/AddressCard.js +260 -0
  169. package/dist/pages/orders/_components/CancelAndRefundDialog.js +29 -0
  170. package/dist/pages/orders/_components/ChangesRegister.js +68 -0
  171. package/dist/pages/orders/_components/ChangesRegisterTable.js +18 -0
  172. package/dist/pages/orders/_components/CouponCodesCard.js +85 -0
  173. package/dist/pages/orders/_components/CustomComponent.js +21 -0
  174. package/dist/pages/orders/_components/CustomerSelectCard.js +117 -0
  175. package/dist/pages/orders/_components/EditNoteButton.js +10 -0
  176. package/dist/pages/orders/_components/FulfillmentModal.js +85 -0
  177. package/dist/pages/orders/_components/LineItem.js +7 -0
  178. package/dist/pages/orders/_components/ManualOrderChangeModal.js +47 -0
  179. package/dist/pages/orders/_components/ModifyAcceptModal.js +22 -0
  180. package/dist/pages/orders/_components/ModifyingCard.js +77 -0
  181. package/dist/pages/orders/_components/OrderHistory.js +59 -0
  182. package/dist/pages/orders/_components/OrderLineActionModal/ActionQuantityPrice.js +58 -0
  183. package/dist/pages/orders/_components/OrderLineActionModal/index.js +7 -0
  184. package/dist/pages/orders/_components/OrderLineActionModal/types.js +1 -0
  185. package/dist/pages/orders/_components/OrderLineCustomFields.js +26 -0
  186. package/dist/pages/orders/_components/OrderSummary.js +10 -0
  187. package/dist/pages/orders/_components/PaymentMetadata.js +6 -0
  188. package/dist/pages/orders/_components/Payments.js +113 -0
  189. package/dist/pages/orders/_components/PossibleOrderStates.js +54 -0
  190. package/dist/pages/orders/_components/PriceChangedInfo.js +16 -0
  191. package/dist/pages/orders/_components/ProductsCard.js +308 -0
  192. package/dist/pages/orders/_components/ProductsTable.js +29 -0
  193. package/dist/pages/orders/_components/PromotionsList.js +73 -0
  194. package/dist/pages/orders/_components/RealizationCard.js +98 -0
  195. package/dist/pages/orders/_components/RefundCard.js +11 -0
  196. package/dist/pages/orders/_components/RefundPaymentCard.js +13 -0
  197. package/dist/pages/orders/_components/ShippingMethod.js +112 -0
  198. package/dist/pages/orders/_components/SpecialLineItem.js +7 -0
  199. package/dist/pages/orders/_components/SurchargeCard.js +99 -0
  200. package/dist/pages/orders/_components/SurchargeTable.js +8 -0
  201. package/dist/pages/orders/_components/TaxSummary.js +11 -0
  202. package/dist/pages/orders/_components/ToRealizationForm.js +64 -0
  203. package/dist/pages/orders/_components/TopActions.js +219 -0
  204. package/dist/pages/orders/_components/index.js +25 -0
  205. package/dist/pages/orders/index.js +2 -0
  206. package/dist/pages/payment-methods/Detail.js +67 -0
  207. package/dist/pages/payment-methods/List.js +41 -0
  208. package/dist/pages/payment-methods/_components/OptionsCard.js +60 -0
  209. package/dist/pages/payment-methods/_components/PaymentMethodDetailView.js +53 -0
  210. package/dist/pages/payment-methods/index.js +2 -0
  211. package/dist/pages/product-variants/Detail.js +4 -0
  212. package/dist/pages/product-variants/List.js +76 -0
  213. package/dist/pages/product-variants/index.js +2 -0
  214. package/dist/pages/products/Detail.js +75 -0
  215. package/dist/pages/products/List.js +79 -0
  216. package/dist/pages/products/_components/AddOptionGroupDialog.js +65 -0
  217. package/dist/pages/products/_components/AssetsCard.js +35 -0
  218. package/dist/pages/products/_components/BasicFieldsCard.js +6 -0
  219. package/dist/pages/products/_components/ChannelsCard.js +6 -0
  220. package/dist/pages/products/_components/CollectionsCard.js +6 -0
  221. package/dist/pages/products/_components/Container.js +4 -0
  222. package/dist/pages/products/_components/DiscountRatingCard.js +6 -0
  223. package/dist/pages/products/_components/FacetValuesCard.js +6 -0
  224. package/dist/pages/products/_components/ImagesCard.js +6 -0
  225. package/dist/pages/products/_components/OptionGroup.js +93 -0
  226. package/dist/pages/products/_components/OptionValueCard.js +59 -0
  227. package/dist/pages/products/_components/OptionsCard.js +38 -0
  228. package/dist/pages/products/_components/OptionsTab.js +40 -0
  229. package/dist/pages/products/_components/PriceCard.js +27 -0
  230. package/dist/pages/products/_components/ProductDetailSidebar.js +30 -0
  231. package/dist/pages/products/_components/ProductDetailView.js +54 -0
  232. package/dist/pages/products/_components/SettingsCard.js +6 -0
  233. package/dist/pages/products/_components/StockCard.js +40 -0
  234. package/dist/pages/products/_components/Variant.js +149 -0
  235. package/dist/pages/products/_components/VariantsTab.js +46 -0
  236. package/dist/pages/products/index.js +2 -0
  237. package/dist/pages/promotions/Detail.js +80 -0
  238. package/dist/pages/promotions/List.js +38 -0
  239. package/dist/pages/promotions/_components/ActionsCard.js +67 -0
  240. package/dist/pages/promotions/_components/BasicFieldsCard.js +6 -0
  241. package/dist/pages/promotions/_components/ConditionsCard.js +70 -0
  242. package/dist/pages/promotions/_components/CustomerGroupsSelector.js +25 -0
  243. package/dist/pages/promotions/_components/EnabledCard.js +6 -0
  244. package/dist/pages/promotions/_components/OptionsCard.js +6 -0
  245. package/dist/pages/promotions/_components/PromotionDetailSidebar.js +15 -0
  246. package/dist/pages/promotions/_components/PromotionDetailView.js +66 -0
  247. package/dist/pages/promotions/_components/PromotionFieldRender.js +4 -0
  248. package/dist/pages/promotions/index.js +2 -0
  249. package/dist/pages/roles/Detail.js +72 -0
  250. package/dist/pages/roles/List.js +70 -0
  251. package/dist/pages/roles/_components/PermissionsCard.js +7 -0
  252. package/dist/pages/roles/_components/PermissionsTable.js +42 -0
  253. package/dist/pages/roles/_components/RoleDetailView.js +49 -0
  254. package/dist/pages/roles/index.js +2 -0
  255. package/dist/pages/sellers/Detail.js +48 -0
  256. package/dist/pages/sellers/List.js +37 -0
  257. package/dist/pages/sellers/_components/SellerDetailView.js +20 -0
  258. package/dist/pages/sellers/index.js +2 -0
  259. package/dist/pages/shipping-methods/Detail.js +105 -0
  260. package/dist/pages/shipping-methods/List.js +40 -0
  261. package/dist/pages/shipping-methods/_components/CalculatorCard.js +79 -0
  262. package/dist/pages/shipping-methods/_components/CheckerCard.js +76 -0
  263. package/dist/pages/shipping-methods/_components/Lines.js +20 -0
  264. package/dist/pages/shipping-methods/_components/ShippingMethodDetailView.js +67 -0
  265. package/dist/pages/shipping-methods/_components/TestCard.js +62 -0
  266. package/dist/pages/shipping-methods/index.js +2 -0
  267. package/dist/pages/status/Status.js +6 -0
  268. package/dist/pages/status/_components/FilterToolbar.js +29 -0
  269. package/dist/pages/status/_components/Health.js +21 -0
  270. package/dist/pages/status/_components/JobResultPopover.js +8 -0
  271. package/dist/pages/status/_components/Jobs.js +199 -0
  272. package/dist/pages/status/_components/JsonExplorer.js +44 -0
  273. package/dist/pages/status/_components/JsonPopup.js +8 -0
  274. package/dist/pages/status/index.js +1 -0
  275. package/dist/pages/stock-locations/Detail.js +77 -0
  276. package/dist/pages/stock-locations/List.js +38 -0
  277. package/dist/pages/stock-locations/_components/StockLocationDetailView.js +22 -0
  278. package/dist/pages/stock-locations/index.js +2 -0
  279. package/dist/pages/tax-categories/Detail.js +85 -0
  280. package/dist/pages/tax-categories/List.js +46 -0
  281. package/dist/pages/tax-categories/_components/TaxCategoryDetailView.js +24 -0
  282. package/dist/pages/tax-categories/index.js +2 -0
  283. package/dist/pages/tax-rates/Detail.js +62 -0
  284. package/dist/pages/tax-rates/List.js +64 -0
  285. package/dist/pages/tax-rates/_components/TaxRateDetailView.js +64 -0
  286. package/dist/pages/tax-rates/index.js +2 -0
  287. package/dist/pages/zones/Detail.js +86 -0
  288. package/dist/pages/zones/List.js +52 -0
  289. package/dist/pages/zones/_components/ZoneDetailView.js +49 -0
  290. package/dist/pages/zones/index.js +2 -0
  291. package/dist/version.js +1 -0
  292. package/package.json +122 -0
@@ -0,0 +1,50 @@
1
+ {
2
+ "create": "Utwórz kraj",
3
+ "edit": "Edytuj kraj",
4
+ "baseInfoCode": "Kod: {{value}}",
5
+ "baseInfoId": "Id: {{value}}",
6
+ "baseInfoCreated": "Utworzono: {{value}}",
7
+ "baseInfoUpdated": "Zaktualizowano: {{value}}",
8
+ "defaultCountry": "Kraj domyślny",
9
+ "buttonDisabledTooltip": "Wypełnij wszystkie wymagane pola",
10
+ "noChangesTooltip": "Nie wprowadzono żadnych zmian",
11
+ "table": {
12
+ "id": "Id",
13
+ "code": "Kod",
14
+ "name": "Nazwa",
15
+ "enabled": "Włączone",
16
+ "createdAt": "Utworzona w",
17
+ "updatedAt": "Zaktualizowano o",
18
+ "openMenu": "Otwórz menu",
19
+ "copyId": "Kopiuj identyfikator",
20
+ "viewCountry": "Wyświetl kraj",
21
+ "columns": "Kolumny"
22
+ },
23
+ "details": {
24
+ "basic": {
25
+ "title": "Podstawowe informacje",
26
+ "code": "Kod",
27
+ "name": "Nazwa",
28
+ "enabled": "Włączone"
29
+ }
30
+ },
31
+ "validation": {
32
+ "required": "Kod jest wymagany"
33
+ },
34
+ "toasts": {
35
+ "countryLoadingError": "Nie udało się załadować kraju o identyfikatorze {{value}}",
36
+ "countryUpdateSuccess": "Kraj został pomyślnie zaktualizowany",
37
+ "countryUpdateError": "Wystąpił błąd:",
38
+ "countryCreatedSuccess": "Kraj został pomyślnie utworzony",
39
+ "countryCreatedError": "Nie udało się utworzyć kraju",
40
+ "countryDeleteSuccess": "Pomyślnie usunięto kraj",
41
+ "countryDeleteError": "Nie udało się usunąć kraju"
42
+ },
43
+ "deleteCountry": {
44
+ "title": "Usuń kraj",
45
+ "description": "Czy na pewno chcesz usunąć ten kraj?",
46
+ "successMessage": "Kraj został usunięty.",
47
+ "deleteOrCancel": "Wybrano opcję Usuń/Anuluj"
48
+ },
49
+ "selectedValue": "wybrano {{from}} z {{to}} wierszy"
50
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "basic": {
3
+ "header": "Dane",
4
+ "name": "Nazwa"
5
+ }
6
+ }
@@ -0,0 +1,109 @@
1
+ {
2
+ "customer": "Klient",
3
+ "personalData": {
4
+ "header": "Dane osobowe",
5
+ "title": "Tytuł",
6
+ "firstName": "Imię",
7
+ "lastName": "Nazwisko",
8
+ "emailAddress": "Adres e-mail",
9
+ "phoneNumber": "Numer telefonu"
10
+ },
11
+ "verified": {
12
+ "header": "Role klientów",
13
+ "true": "Zweryfikowany",
14
+ "false": "Gość"
15
+ },
16
+ "customerGroups": {
17
+ "header": "Grupy klientów",
18
+ "placeholder": "Dodawanie grup",
19
+ "toastAdded": "Użytkownik został dodany do grupy",
20
+ "toastRemoved": "Użytkownik został usunięty z grupy",
21
+ "createCustomerFirst": "Po utworzeniu klienta będziesz mógł dodać go do różnych grup klientów tutaj"
22
+ },
23
+ "addresses": {
24
+ "header": "Adresy",
25
+ "empty": "Wygląda na to, że nie ma jeszcze adresów.",
26
+ "createCustomerFirst": "Po utworzeniu klienta będziesz mógł dodać jego pierwszy adres tutaj.",
27
+ "addBtn": "Dodaj adres",
28
+ "phoneNumberShort": "tel.{{value}}",
29
+ "edit": "Edytuj",
30
+ "save": "Zapisz",
31
+ "cancel": "Anuluj"
32
+ },
33
+ "orders": {
34
+ "header": "Zamówienia"
35
+ },
36
+ "history": {
37
+ "header": "Historia",
38
+ "toastError": "Wystąpił błąd",
39
+ "toastSuccess": "Akcja zakończona pomyślnie"
40
+ },
41
+ "selectAddress": {
42
+ "nameRequired": "Pełna nazwa jest wymagana",
43
+ "streetRequired": "Ulica Linia 1 jest wymagana",
44
+ "cityRequired": "Nazwa miasta jest wymagana",
45
+ "postalCodeRequired": "Kod pocztowy jest wymagany",
46
+ "countryRequired": "Kraj jest wymagany",
47
+ "phoneNumberRequired": "Numer telefonu jest wymagany",
48
+ "shippingHeader": "Adres wysyłki",
49
+ "billingHeader": "Adres rozliczeniowy",
50
+ "shippingDescription": "Tutaj można ustawić adres wysyłki",
51
+ "billingDescription": "Tutaj można ustawić adres rozliczeniowy",
52
+ "changeShippingAddress": "Zmień adres wysyłki",
53
+ "selectShippingAddress": "Wybierz adres wysyłki",
54
+ "createShippingAddress": "Utwórz adres wysyłki",
55
+ "changeBillingAddress": "Zmiana adresu rozliczeniowego",
56
+ "selectBillingAddress": "Wybierz adres rozliczeniowy",
57
+ "createBillingAddress": "Utwórz adres rozliczeniowy",
58
+ "selectAddress": "Wybierz adres",
59
+ "createAddress": "Utwórz adres",
60
+ "editAddress": "Edytuj adres",
61
+ "deleteAddress": "Usuń adres",
62
+ "more": "Więcej",
63
+ "addressSuccessUpdateToast": "Adres został pomyślnie zaktualizowany",
64
+ "addressSuccessCreateToast": "Adres utworzony pomyślnie",
65
+ "addressSuccessDeleteToast": "Adres został pomyślnie usunięty",
66
+ "addressSuccessSetAsDefaultBillingToast": "Pomyślnie ustawiono adres jako domyślny adres rozliczeniowy",
67
+ "addressSuccessSetAsDefaultShippingToast": "Pomyślne ustawienie adresu jako domyślnego adresu wysyłki",
68
+ "addressFailedCreateToast": "Wybór adresu nie powiódł się",
69
+ "addressFailedUpdateToast": "Tworzenie adresu nie powiodło się",
70
+ "addressFailedDeleteToast": "Usunięcie adresu nie powiodło się",
71
+ "addressFailedSetAsDefaultToast": "Ustawienie adresu jako domyślnego nie powiodło się",
72
+ "newAddress": "Nowy adres: {{address}} dodany do konta użytkownika",
73
+ "addressAddFailed": "Nie udało się dodać nowego adresu do konta użytkownika",
74
+ "phoneError": "Nieprawidłowy format numeru telefonu",
75
+ "close": "Zamknij",
76
+ "setAsDefaultShipping": "Ustaw jako domyślny adres wysyłki",
77
+ "setAsDefaultBilling": "Ustaw jako domyślny adres rozliczeniowy",
78
+ "countrySelectLabel": " Kraj:",
79
+ "phoneNumberShort": "tel.{{value}}",
80
+ "defaultBilling": "Domyślny adres rozliczeniowy",
81
+ "defaultShipping": "Domyślny adres wysyłki",
82
+ "isDefaultBilling": "Domyślny adres wysyłki",
83
+ "isDefaultShipping": "Domyślny adres rozliczeniowy",
84
+ "createForCustomer": "Utwórz dla klienta",
85
+ "inputNameLabel": "Imię i nazwisko",
86
+ "inputNamePlaceholder": "Imię i nazwisko",
87
+ "inputCompanyLabel": "Nazwa firmy",
88
+ "inputCompanyPlaceholder": "Nazwa firmy",
89
+ "inputPhoneLabel": "Numer telefonu",
90
+ "inputPhonePlaceholder": "Numer telefonu",
91
+ "inputPostalLabel": "Kod pocztowy",
92
+ "inputPostalPlaceholder": "Kod pocztowy",
93
+ "inputProvinceLabel": "Prowincja",
94
+ "inputProvincePlaceholder": "Prowincja",
95
+ "inputCityLabel": "Miasto",
96
+ "inputCityPlaceholder": "Miasto",
97
+ "inputStreetLabel": "Street Line 1",
98
+ "inputStreetPlaceholder": "Street Line 1",
99
+ "inputStreet2Label": "Street Line 2",
100
+ "inputStreet2Placeholder": "Street Line 2",
101
+ "inputTaxLabel": "Identyfikator podatkowy firmy",
102
+ "inputTaxPlaceholder": "Identyfikator podatkowy firmy"
103
+ },
104
+ "validation": {
105
+ "firstNameRequired": "Imię jest wymagane",
106
+ "lastNameRequired": "Nazwisko jest wymagane",
107
+ "emailRequired": "Adres e-mail jest wymagany"
108
+ }
109
+ }
@@ -0,0 +1,34 @@
1
+ {
2
+ "metrics": "Metryki",
3
+ "averageOrderValue": "Średnia wartość zamówienia",
4
+ "showAll": "Pokaż wszystko",
5
+ "orderCount": "Liczba zamówień",
6
+ "orderTotal": "Suma zamówień",
7
+ "dataTypes": "Typy danych",
8
+ "intervalTypes": "Typy interwałowe",
9
+ "selectDataType": "Wybierz typ danych",
10
+ "selectIntervalType": "Wybierz typ interwału",
11
+ "latestOrders": "Ostatnie zamówienia",
12
+ "ordersSummary": "Podsumowanie zamówień",
13
+ "payment": "Płatność",
14
+ "totalOrdersCount": "Łączna liczba zamówień",
15
+ "totalOrdersValue": "Łączna wartość zamówień",
16
+ "today": "Dzisiaj",
17
+ "yesterday": "Wczoraj",
18
+ "thisWeek": "W tym tygodniu",
19
+ "thisMonth": "W tym miesiącu",
20
+ "thisYear": "W tym roku",
21
+ "gross": "Brutto",
22
+ "net": "Netto",
23
+ "thisWeekInterval": "W tym tygodniu",
24
+ "weeklyInterval": "Tygodnik",
25
+ "lastWeekInterval": "Ostatni tydzień",
26
+ "thisMonthInterval": "W tym miesiącu",
27
+ "mothlyInterval": "Miesięcznie",
28
+ "lastMonthInterval": "Ostatni miesiąc",
29
+ "yearlyInterval": "Rocznie",
30
+ "customInterval": "Niestandardowe",
31
+ "chooseStartDate": "Wybierz datę rozpoczęcia",
32
+ "chooseEndDate": "Wybierz datę zakończenia",
33
+ "orderTotalProductsCount": "Całkowita liczba produktów"
34
+ }
@@ -0,0 +1,78 @@
1
+ {
2
+ "createFacet": "Utwórz aspekt",
3
+ "baseInfoCode": "Kod: {{value}}",
4
+ "baseInfoId": "Id: {{value}}",
5
+ "baseInfoCreated": "Utworzono: {{value}}",
6
+ "baseInfoUpdated": "Zaktualizowano: {{value}}",
7
+ "requiredError": "Ta wartość jest wymagana",
8
+ "buttonDisabledTooltip": "Wypełnij wszystkie wymagane pola",
9
+ "noChangesTooltip": "Nie wprowadzono żadnych zmian",
10
+ "table": {
11
+ "id": "Id",
12
+ "name": "Nazwa",
13
+ "createdAt": "Utworzona w",
14
+ "updatedAt": "Zaktualizowano o",
15
+ "code": "Kod",
16
+ "isPrivate": "Prywatny",
17
+ "public": "Publiczny",
18
+ "languageCode": "Kod języka",
19
+ "usedForColors": "Używany dla kolorów",
20
+ "colorsCollection": "Kolekcja kolorów",
21
+ "usedForProductCreations": "Używany do tworzenia produktów",
22
+ "values": "Wartości",
23
+ "openMenu": "Otwórz menu",
24
+ "copyId": "Kopiuj identyfikator",
25
+ "viewFacet": "Aspekt widoku",
26
+ "columns": "Kolumny",
27
+ "color": "Kolor",
28
+ "new": "Nowość",
29
+ "image": "Obraz"
30
+ },
31
+ "toasts": {
32
+ "facetLoadingError": "Nie udało się załadować aspektu o id {{value}}",
33
+ "facetUpdateSuccess": "Facet został pomyślnie zaktualizowany",
34
+ "facetUpdateError": "Wystąpił błąd:",
35
+ "facetCreatedSuccess": "Facet został utworzony pomyślnie"
36
+ },
37
+ "visibility": {
38
+ "public": "Publiczny",
39
+ "private": "Prywatny"
40
+ },
41
+ "deleteFacet": {
42
+ "title": "Usuń aspekt",
43
+ "description": "Czy na pewno chcesz usunąć ten aspekt?",
44
+ "successMessage": "Aspekt został usunięty.",
45
+ "deleteOrCancel": "Wybrano opcję Usuń/Anuluj"
46
+ },
47
+ "selectedValue": "wybrano {{from}} z {{to}} wierszy",
48
+ "details": {
49
+ "basicInfo": "Dane podstawowe",
50
+ "customFields": "Pola niestandardowe",
51
+ "facetValues": "Wartość aspektu",
52
+ "usedForColorsDesc": "Użyj tego atrybutu dla facetów, którzy są kolorami",
53
+ "colorsCollectionDesc": "Użyj tego dla ścieżek produktu w KOLORZE (BLAT/CORPUS)",
54
+ "usedForProductCreationsDesc": "Użyj tego atrybutu podczas tworzenia kolekcji kolorów",
55
+ "valueDeleteSuccess": "Wartość zasobu została pomyślnie usunięta",
56
+ "valueDeleteFail": "Wystąpił błąd:"
57
+ },
58
+ "addValueModal": {
59
+ "button": "Dodaj wartość",
60
+ "editButton": "Aktualizacja wartości",
61
+ "title": "Dodaj wartość aspektu",
62
+ "editTitle": "Edytuj wartość aspektu",
63
+ "nameLabel": "Nazwa wartości aspektu",
64
+ "codeLabel": "Kod wartości aspektu",
65
+ "isNew": "Nowość",
66
+ "hidden": "Ukryty",
67
+ "color": "Kolor",
68
+ "success": "Wartość dodana aspektu z powodzeniem",
69
+ "editSuccess": "Pomyślnie zaktualizowano wartość aspektu",
70
+ "error": "Wystąpił błąd",
71
+ "options": "Opcje",
72
+ "image": "Obraz"
73
+ },
74
+ "buttons": {
75
+ "deleteValue": "Usuń wartość",
76
+ "editValue": "Edytuj wartość"
77
+ }
78
+ }
@@ -0,0 +1,15 @@
1
+ {
2
+ "available-languages": {
3
+ "label": "Dostępne języki",
4
+ "description": "Ustawia języki dostępne dla wszystkich kanałów. Poszczególne kanały mogą następnie obsługiwać podzbiór tych języków.",
5
+ "placeholder": "wybierz języki"
6
+ },
7
+ "stock-threshold": {
8
+ "label": "Globalny próg wyczerpania zapasów",
9
+ "description": "Ustawia poziom zapasów, przy którym dany wariant jest uznawany za niedostępny. Użycie wartości ujemnej umożliwia obsługę zamówień zaległych. Może zostać zastąpione przez warianty produktu."
10
+ },
11
+ "track-inventory": {
12
+ "label": "Domyślne śledzenie zapasów",
13
+ "description": "W przypadku śledzenia, poziomy zapasów wariantów produktów będą automatycznie dostosowywane po sprzedaży"
14
+ }
15
+ }
@@ -0,0 +1,52 @@
1
+ import admins from './admins.json';
2
+ import assets from './assets.json';
3
+ import channels from './channels.json';
4
+ import collections from './collections.json';
5
+ import common from './common.json';
6
+ import countries from './countries.json';
7
+ import dashboard from './dashboard.json';
8
+ import facets from './facets.json';
9
+ import orders from './orders.json';
10
+ import paymentMethods from './paymentMethods.json';
11
+ import permissions from './permissions.json';
12
+ import products from './products.json';
13
+ import roles from './roles.json';
14
+ import sellers from './sellers.json';
15
+ import shippingMethods from './shippingMethods.json';
16
+ import stockLocations from './stockLocations.json';
17
+ import taxCategories from './taxCategories.json';
18
+ import taxRates from './taxRates.json';
19
+ import zones from './zones.json';
20
+ import table from './table.json';
21
+ import customerGroups from './customerGroups.json';
22
+ import customers from './customers.json';
23
+ import globalSettings from './globalSettings.json';
24
+ import promotions from './promotions.json';
25
+ import system from './system.json';
26
+ export default {
27
+ admins,
28
+ assets,
29
+ channels,
30
+ collections,
31
+ common,
32
+ dashboard,
33
+ facets,
34
+ orders,
35
+ paymentMethods,
36
+ permissions,
37
+ products,
38
+ roles,
39
+ sellers,
40
+ shippingMethods,
41
+ stockLocations,
42
+ taxCategories,
43
+ taxRates,
44
+ zones,
45
+ table,
46
+ globalSettings,
47
+ customers,
48
+ countries,
49
+ customerGroups,
50
+ promotions,
51
+ system,
52
+ };